diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d558495651..aa52a78b2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,11 @@ jobs: steps: # Checkout should always be before setup-go to ensure caching is working - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 1 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Verify go.mod is tidy @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 1 - name: Build image in Docker diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index cf6c90af63..37dfe69e5f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3b84394c6f..fa2015cef9 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -13,18 +13,18 @@ jobs: runs-on: ubuntu-latest steps: # Checkout should always be before setup-go to ensure caching is working - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 2 - - uses: actions/setup-go@v6 + - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Run coverage run: go tool gotestsum --format github-actions --junitfile junit.xml -- -coverprofile=coverage.out -covermode=count ./... - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/test-results-action@v1 + uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 2db91672fd..8e35dd66a7 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -12,7 +12,7 @@ jobs: environment: actions steps: - name: Check out the release tag - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: ref: ${{ github.event.release.tag_name }} - name: Verify release commit diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 48803adf7f..401a9ba48b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest steps: # Checkout should always be before setup-go to ensure caching is working - - uses: actions/checkout@v6 - - uses: actions/setup-go@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Generate code @@ -26,8 +26,8 @@ jobs: markdown-link-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - uses: gaurav-nelson/github-action-markdown-link-check@1.0.16 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: gaurav-nelson/github-action-markdown-link-check@3c3b66f1f7d0900e37b71eca45b63ea9eedfce31 # 1.0.17 with: use-quiet-mode: 'yes' use-verbose-mode: 'yes' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 15747397f7..a6f8174a2a 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -10,8 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Labeler - uses: actions/labeler@v6 + uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1 with: sync-labels: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a6a00507b7..429353c383 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: name: Github Actions lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Check workflow files uses: docker://rhysd/actionlint:latest with: @@ -22,7 +22,7 @@ jobs: name: dockerfile-lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: dockerfile-lint run: docker build --check . @@ -30,12 +30,12 @@ jobs: name: golangci-lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: golangci-lint - uses: golangci/golangci-lint-action@v9 + uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: latest + version: v2.9.0 args: --timeout 10m spelling: @@ -43,8 +43,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Actions Repository - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Spell Check Repo - uses: crate-ci/typos@v1.40.0 + uses: crate-ci/typos@9066e9940a8a05b98fb4733c62a726f83c9e57f8 # v1.43.3 env: CLICOLOR: 1 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1f0e1c06d3..5d6696e951 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -54,9 +54,9 @@ jobs: steps: # Checkout should always be before setup-go to ensure caching is working - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Run Acceptance Tests @@ -96,9 +96,9 @@ jobs: steps: # Checkout should always be before setup-go to ensure caching is working - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Run Sweepers diff --git a/.github/workflows/purge.yml b/.github/workflows/purge.yml index 7aec9eceb5..5d2d335309 100644 --- a/.github/workflows/purge.yml +++ b/.github/workflows/purge.yml @@ -12,9 +12,9 @@ jobs: steps: # Checkout should always be before setup-go to ensure caching is working - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Run Sweepers diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb8cb00002..e199866444 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,15 +12,18 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 - name: Login to DockerHub Registry run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 + - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable @@ -30,9 +33,9 @@ jobs: git diff --exit-code - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 + uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0 with: - version: latest + version: "~> v2" args: release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -43,15 +46,15 @@ jobs: - goreleaser steps: - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 with: version: 6.0.2 - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 1 - name: Build diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ecd92bfd58..d4bc77d1ff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,11 +60,11 @@ jobs: git config --global core.eol lf # Checkout should always be before setup-go to ensure caching is working - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 1 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Run tests @@ -75,11 +75,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 1 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Run tests outside of products namespaces diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index fec067e66f..fe81e43318 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -13,15 +13,15 @@ jobs: steps: # Checkout should always be before setup-go to ensure caching is working - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 1 - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version: stable - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 with: version: 6.0.2 - name: Build diff --git a/.golangci.yml b/.golangci.yml index 89060e3df5..6bda5b8514 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -53,6 +53,7 @@ linters: - makezero # Finds slice declarations with non-zero initial length [fast: false, auto-fix: false] - mirror # reports wrong mirror patterns of bytes/strings usage [fast: false, auto-fix: false] - misspell # Finds commonly misspelled English words in comments [fast: true, auto-fix: true] + - modernize # A suite of analyzers that suggest simplifications to Go code, using modern language and library features. - musttag # enforce field tags in (un)marshaled structs [fast: false, auto-fix: false] - nakedret # Finds naked returns in functions greater than a specified function length [fast: true, auto-fix: false] - nilerr # Finds the code that returns nil even if it checks that the error is not nil. [fast: false, auto-fix: false] @@ -92,6 +93,9 @@ linters: rules: - name: exported disabled: true + modernize: + disable: + - reflecttypefor exclusions: paths: diff --git a/.goreleaser.yml b/.goreleaser.yml index 1af14ee0d3..5d5f2dd437 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -44,12 +44,14 @@ changelog: - '^docs:' - '^test:' -dockers: - - image_templates: - - "scaleway/cli:latest" - - "scaleway/cli:{{ .Tag }}" - - "scaleway/cli:{{ .Major }}" - - "scaleway/cli:{{ .Major }}.{{ .Minor }}" +dockers_v2: + - images: + - "scaleway/cli" + tags: + - "latest" + - "{{ .Tag }}" + - "{{ .Major }}" + - "{{ .Major }}.{{ .Minor }}" extra_files: - go.mod - go.sum @@ -59,8 +61,12 @@ dockers: - commands - internal - .git - build_flag_templates: - - "--build-arg=VERSION={{ .Version }}" + platforms: + - linux/amd64 + - linux/arm64 + sbom: true + build_args: + VERSION: "{{ .Version }}" release: github: diff --git a/Dockerfile b/Dockerfile index 62a7db5a10..60dd309639 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25-alpine3.21 AS builder +FROM golang:1.26-alpine3.23 AS builder ENV BUILD_IN_DOCKER=true ARG VERSION @@ -23,8 +23,9 @@ COPY .git/ .git/ RUN ./scripts/build.sh -FROM alpine:3.22 +FROM alpine:3.23 WORKDIR / RUN apk update && apk add --no-cache bash ca-certificates openssh-client && update-ca-certificates COPY --from=builder /go/src/github.com/scaleway/scaleway-cli/scw . +RUN ln -s /scw /usr/local/bin/scw ENTRYPOINT ["/scw"] diff --git a/Makefile b/Makefile index 79662834df..e696e9855d 100644 --- a/Makefile +++ b/Makefile @@ -9,3 +9,7 @@ test: fmt: golangci-lint run --fix ./... + +bump-sdk: + GOPROXY=direct go get -u github.com/scaleway/scaleway-sdk-go@master + go mod tidy diff --git a/cmd/scw-sweeper/main.go b/cmd/scw-sweeper/main.go index f44ea6e916..773193bae1 100644 --- a/cmd/scw-sweeper/main.go +++ b/cmd/scw-sweeper/main.go @@ -68,43 +68,43 @@ func mainNoExit() int { var errors []string - err = accountSweeper.SweepAll(client) + err = accountSweeper.SweepAll(client, true) if err != nil { log.Printf("Error sweeping account: %s", err) errors = append(errors, fmt.Sprintf("account: %s", err)) } - err = applesiliconSweeper.SweepAllLocalities(client) + err = applesiliconSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping applesilicon: %s", err) errors = append(errors, fmt.Sprintf("applesilicon: %s", err)) } - err = baremetalSweeper.SweepAllLocalities(client) + err = baremetalSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping baremetal: %s", err) errors = append(errors, fmt.Sprintf("baremetal: %s", err)) } - err = cockpitSweeper.SweepAllLocalities(client) + err = cockpitSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping cockpit: %s", err) errors = append(errors, fmt.Sprintf("cockpit: %s", err)) } - err = containerSweeper.SweepAllLocalities(client) + err = containerSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping container: %s", err) errors = append(errors, fmt.Sprintf("container: %s", err)) } - err = flexibleipSweeper.SweepAllLocalities(client) + err = flexibleipSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping flexibleip: %s", err) errors = append(errors, fmt.Sprintf("flexibleip: %s", err)) } - err = functionSweeper.SweepAllLocalities(client) + err = functionSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping function: %s", err) errors = append(errors, fmt.Sprintf("function: %s", err)) @@ -116,13 +116,13 @@ func mainNoExit() int { errors = append(errors, fmt.Sprintf("iam: %s", err)) } - err = inferenceSweeper.SweepAllLocalities(client) + err = inferenceSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping inference: %s", err) errors = append(errors, fmt.Sprintf("inference: %s", err)) } - err = instanceSweeper.SweepAllLocalities(client) + err = instanceSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping instance: %s", err) errors = append(errors, fmt.Sprintf("instance: %s", err)) @@ -130,91 +130,91 @@ func mainNoExit() int { // Instance servers need to be swept before volumes and snapshots can be swept // because volumes and snapshots are attached to servers. - err = blockSweeper.SweepAllLocalities(client) + err = blockSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping block: %s", err) errors = append(errors, fmt.Sprintf("block: %s", err)) } - err = iotSweeper.SweepAllLocalities(client) + err = iotSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping iot: %s", err) errors = append(errors, fmt.Sprintf("iot: %s", err)) } - err = jobsSweeper.SweepAllLocalities(client) + err = jobsSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping jobs: %s", err) errors = append(errors, fmt.Sprintf("jobs: %s", err)) } - err = k8sSweeper.SweepAllLocalities(client) + err = k8sSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping k8s: %s", err) errors = append(errors, fmt.Sprintf("k8s: %s", err)) } - err = lbSweeper.SweepAllLocalities(client) + err = lbSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping lb: %s", err) errors = append(errors, fmt.Sprintf("lb: %s", err)) } - err = mongodbSweeper.SweepAllLocalities(client) + err = mongodbSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping mongodb: %s", err) errors = append(errors, fmt.Sprintf("mongodb: %s", err)) } - err = mnqSweeper.SweepAllLocalities(client) + err = mnqSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping mnq: %s", err) errors = append(errors, fmt.Sprintf("mnq: %s", err)) } - err = rdbSweeper.SweepAllLocalities(client) + err = rdbSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping rdb: %s", err) errors = append(errors, fmt.Sprintf("rdb: %s", err)) } - err = redisSweeper.SweepAllLocalities(client) + err = redisSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping redis: %s", err) errors = append(errors, fmt.Sprintf("redis: %s", err)) } - err = registrySweeper.SweepAllLocalities(client) + err = registrySweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping registry: %s", err) errors = append(errors, fmt.Sprintf("registry: %s", err)) } - err = secretSweeper.SweepAllLocalities(client) + err = secretSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping secret: %s", err) errors = append(errors, fmt.Sprintf("secret: %s", err)) } - err = sdbSweeper.SweepAllLocalities(client) + err = sdbSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping sdb: %s", err) errors = append(errors, fmt.Sprintf("sdb: %s", err)) } - err = vpcSweeper.SweepAllLocalities(client) + err = vpcSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping vpc: %s", err) errors = append(errors, fmt.Sprintf("vpc: %s", err)) } - err = vpcgwSweeper.SweepAllLocalities(client) + err = vpcgwSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping vpcgw: %s", err) errors = append(errors, fmt.Sprintf("vpcgw: %s", err)) } - err = webhostingSweeper.SweepAllLocalities(client) + err = webhostingSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping webhosting: %s", err) errors = append(errors, fmt.Sprintf("webhosting: %s", err)) @@ -222,7 +222,7 @@ func mainNoExit() int { // IPAM IPs need to be swept in the end because we need to be sure // that every resource with an attached ip is destroyed before executing it. - err = ipamSweeper.SweepAllLocalities(client) + err = ipamSweeper.SweepAllLocalities(client, true) if err != nil { log.Printf("Error sweeping ipam: %s", err) errors = append(errors, fmt.Sprintf("ipam: %s", err)) diff --git a/cmd/scw-wasm-tester/human.go b/cmd/scw-wasm-tester/human.go index 65e2aef843..174a230f53 100644 --- a/cmd/scw-wasm-tester/human.go +++ b/cmd/scw-wasm-tester/human.go @@ -3,10 +3,11 @@ package main import ( + "syscall/js" + "github.com/hashicorp/go-version" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" - "syscall/js" ) func wasmTestMarshalBuildInfo(_ js.Value, _ []js.Value) any { diff --git a/cmd/scw-wasm-tester/main.go b/cmd/scw-wasm-tester/main.go index ae2ce25869..977b1b5f11 100644 --- a/cmd/scw-wasm-tester/main.go +++ b/cmd/scw-wasm-tester/main.go @@ -3,8 +3,9 @@ package main import ( - "github.com/scaleway/scaleway-cli/v2/internal/jshelpers" "syscall/js" + + "github.com/scaleway/scaleway-cli/v2/internal/jshelpers" ) type jsFunction func(js.Value, []js.Value) any diff --git a/cmd/scw-wasm-tester/slices.go b/cmd/scw-wasm-tester/slices.go index 0913f21eb7..cc81265559 100644 --- a/cmd/scw-wasm-tester/slices.go +++ b/cmd/scw-wasm-tester/slices.go @@ -3,8 +3,9 @@ package main import ( - "github.com/scaleway/scaleway-cli/v2/internal/jshelpers" "syscall/js" + + "github.com/scaleway/scaleway-cli/v2/internal/jshelpers" ) func wasmTestFromSlice(_ js.Value, _ []js.Value) any { diff --git a/cmd/scw-wasm/main.go b/cmd/scw-wasm/main.go index 08dcaf92a8..a2a215d876 100644 --- a/cmd/scw-wasm/main.go +++ b/cmd/scw-wasm/main.go @@ -5,12 +5,12 @@ package main import ( "runtime" "runtime/debug" + "syscall/js" "github.com/hashicorp/go-version" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/internal/jshelpers" "github.com/scaleway/scaleway-cli/v2/internal/wasm" - "syscall/js" ) var ( diff --git a/cmd/scw-wasm/run.go b/cmd/scw-wasm/run.go index 9e0ca513fd..88bc39a698 100644 --- a/cmd/scw-wasm/run.go +++ b/cmd/scw-wasm/run.go @@ -4,11 +4,11 @@ package main import ( "fmt" + "syscall/js" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/internal/jshelpers" "github.com/scaleway/scaleway-cli/v2/internal/wasm" - "syscall/js" ) func wasmRun(this js.Value, args []js.Value) (any, error) { diff --git a/cmd/scw/testdata/test-all-usage-account-project-create-usage.golden b/cmd/scw/testdata/test-all-usage-account-project-create-usage.golden index c2dd2ce21d..5c4eab7420 100644 --- a/cmd/scw/testdata/test-all-usage-account-project-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-project-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-account-project-delete-usage.golden b/cmd/scw/testdata/test-all-usage-account-project-delete-usage.golden index 60ba230c6d..cc4e7e6235 100644 --- a/cmd/scw/testdata/test-all-usage-account-project-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-project-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-account-project-get-usage.golden b/cmd/scw/testdata/test-all-usage-account-project-get-usage.golden index e32a50be2a..b448c98215 100644 --- a/cmd/scw/testdata/test-all-usage-account-project-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-project-get-usage.golden @@ -9,7 +9,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-account-project-list-usage.golden b/cmd/scw/testdata/test-all-usage-account-project-list-usage.golden index 174825a0d9..261664f3bb 100644 --- a/cmd/scw/testdata/test-all-usage-account-project-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-project-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-account-project-update-usage.golden b/cmd/scw/testdata/test-all-usage-account-project-update-usage.golden index c3a6acdd0a..41be66551f 100644 --- a/cmd/scw/testdata/test-all-usage-account-project-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-project-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [description] Description of the Project FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-account-project-usage.golden b/cmd/scw/testdata/test-all-usage-account-project-usage.golden index fb5cde849a..d20c577c03 100644 --- a/cmd/scw/testdata/test-all-usage-account-project-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-project-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update Project FLAGS: - -h, --help help for project + -h, --help help for project + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-account-usage.golden b/cmd/scw/testdata/test-all-usage-account-usage.golden index 6bb45161be..7a3ea44a20 100644 --- a/cmd/scw/testdata/test-all-usage-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-account-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: project Project management commands FLAGS: - -h, --help help for account + -h, --help help for account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-alias-create-usage.golden b/cmd/scw/testdata/test-all-usage-alias-create-usage.golden index 96fdf2564e..c5fe6149e5 100644 --- a/cmd/scw/testdata/test-all-usage-alias-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-alias-create-usage.golden @@ -18,7 +18,8 @@ ARGS: [command] Command to create an alias for FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-alias-delete-usage.golden b/cmd/scw/testdata/test-all-usage-alias-delete-usage.golden index 43003737f1..2278141065 100644 --- a/cmd/scw/testdata/test-all-usage-alias-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-alias-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: alias alias name FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-alias-list-usage.golden b/cmd/scw/testdata/test-all-usage-alias-list-usage.golden index 26d3cf9ed9..e40eb94abf 100644 --- a/cmd/scw/testdata/test-all-usage-alias-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-alias-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [alias] filter alias FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-alias-usage.golden b/cmd/scw/testdata/test-all-usage-alias-usage.golden index 35a2228cf9..c82087e2bf 100644 --- a/cmd/scw/testdata/test-all-usage-alias-usage.golden +++ b/cmd/scw/testdata/test-all-usage-alias-usage.golden @@ -30,7 +30,8 @@ AVAILABLE COMMANDS: list List aliases and their commands FLAGS: - -h, --help help for alias + -h, --help help for alias + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-os-get-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-os-get-usage.golden index 070b906ef3..3db9744ff4 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-os-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-os-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden index 455991e6d8..6f1cfe01ca 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden index 2f4a09b855..7c8b79b63d 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List all Operating Systems (OS) FLAGS: - -h, --help help for os + -h, --help help for os + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-add-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-add-usage.golden index 1827c5d7b6..ec8ffa8a71 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-add-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-3) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-delete-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-delete-usage.golden index 4b64ad72d0..e065e87223 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-list-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-list-usage.golden index 4b05dc671e..2f1f8145ec 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-set-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-set-usage.golden index d6387f1e35..12c26095f3 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-set-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-usage.golden index 97231e3cc1..0ea4e21b74 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-private-network-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: set Set multiple Private Networks on a server FLAGS: - -h, --help help for private-network + -h, --help help for private-network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-create-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-create-usage.golden index acb072bf38..60a41dfe0f 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-create-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-delete-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-delete-usage.golden index 96de93bb0f..de9938237c 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-get-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-get-usage.golden index c9bc48b050..ca0fb21bcf 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-list-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-list-usage.golden index 42448f365d..256566691d 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-update-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-update-usage.golden index 672222730e..2d8115f09b 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-update-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-usage.golden index 4f1e3d3ab7..b5a27126f9 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-runner-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-runner-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Create a new runner configuration FLAGS: - -h, --help help for runner + -h, --help help for runner + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-create-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-create-usage.golden index b523f7f2e0..51a5a67690 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-create-usage.golden @@ -18,11 +18,13 @@ ARGS: [runner-configuration.token] [runner-configuration.provider] (unknown_provider | github | gitlab) [applied-runner-configurations.runner-configuration-ids.{index}] + [enable-kext] Enable kernel extensions [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for create - -w, --wait wait until the server is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-delete-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-delete-usage.golden index 3fc28af370..e9e41a8f77 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-delete-usage.golden @@ -10,8 +10,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for delete - -w, --wait wait until the server is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-get-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-get-usage.golden index bc8866dfa5..5ecae0930f 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-list-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-list-usage.golden index fcbf0fccd7..d1423b643c 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-reboot-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-reboot-usage.golden index eb2a99bec0..a28577c7b8 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-reboot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-reboot-usage.golden @@ -10,8 +10,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for reboot - -w, --wait wait until the server is ready + -h, --help help for reboot + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-reinstall-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-reinstall-usage.golden index 2b88d3309a..23be73707b 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-reinstall-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-reinstall-usage.golden @@ -8,10 +8,12 @@ USAGE: ARGS: server-id UUID of the server you want to reinstall [os-id] Reinstall the server with the OS corresponding to the os_id + [enable-kext] Enable kernel extensions [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for reinstall + -h, --help help for reinstall + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-ssh-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-ssh-usage.golden index cb381deb1c..1099305cf8 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-ssh-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-ssh-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config FLAGS: - -h, --help help for ssh + -h, --help help for ssh + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden index bb83d559c0..1ed1c051e2 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-list-usage.golden index 37fbe942a2..3cc129bf5c 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-usage.golden index c90744dbd1..8e00c94c34 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List server types FLAGS: - -h, --help help for server-type + -h, --help help for server-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-update-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-update-usage.golden index 01014aa968..99f1b31680 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-usage.golden index 514a995096..d03ac92a09 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-usage.golden @@ -21,7 +21,8 @@ WORKFLOW COMMANDS: wait Wait for a server to reach a stable state FLAGS: - -h, --help help for server + -h, --help help for server + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-wait-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-wait-usage.golden index 00e47500fb..25dc76e954 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=1h0m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-usage.golden index 73bcebcef7..196c19f350 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: server-type Server-Types management commands FLAGS: - -h, --help help for apple-silicon + -h, --help help for apple-silicon + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-audit-trail-event-list-usage.golden b/cmd/scw/testdata/test-all-usage-audit-trail-event-list-usage.golden index 0bfd390c38..65eca85e93 100644 --- a/cmd/scw/testdata/test-all-usage-audit-trail-event-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-audit-trail-event-list-usage.golden @@ -7,7 +7,7 @@ USAGE: ARGS: [project-id] (Optional) ID of the Project containing the Audit Trail events - [resource-type] (Optional) Type of the Scaleway resource (unknown_type | secm_secret | secm_secret_version | kube_cluster | kube_pool | kube_node | kube_acl | keym_key | iam_user | iam_application | iam_group | iam_policy | iam_api_key | iam_ssh_key | iam_rule | iam_saml | iam_saml_certificate | iam_scim | iam_scim_token | secret_manager_secret | secret_manager_version | key_manager_key | account_user | account_organization | account_project | account_contract_signature | instance_server | instance_placement_group | instance_security_group | instance_volume | instance_snapshot | instance_image | instance_template | apple_silicon_server | baremetal_server | baremetal_setting | ipam_ip | sbs_volume | sbs_snapshot | load_balancer_lb | load_balancer_ip | load_balancer_frontend | load_balancer_backend | load_balancer_route | load_balancer_acl | load_balancer_certificate | sfs_filesystem | vpc_private_network | edge_services_plan | edge_services_pipeline | edge_services_dns_stage | edge_services_tls_stage | edge_services_cache_stage | edge_services_route_stage | edge_services_route_rules | edge_services_waf_stage | edge_services_backend_stage | s2s_vpn_gateway | s2s_customer_gateway | s2s_routing_policy | s2s_connection) + [resource-type] (Optional) Type of the Scaleway resource (unknown_type | secm_secret | secm_secret_version | kube_cluster | kube_pool | kube_node | kube_acl | keym_key | iam_user | iam_application | iam_group | iam_policy | iam_api_key | iam_ssh_key | iam_rule | iam_saml | iam_saml_certificate | iam_scim | iam_scim_token | secret_manager_secret | secret_manager_version | key_manager_key | account_user | account_organization | account_project | account_contract_signature | instance_server | instance_placement_group | instance_security_group | instance_volume | instance_snapshot | instance_image | instance_template | apple_silicon_server | baremetal_server | baremetal_setting | ipam_ip | sbs_volume | sbs_snapshot | load_balancer_lb | load_balancer_ip | load_balancer_frontend | load_balancer_backend | load_balancer_route | load_balancer_acl | load_balancer_certificate | sfs_filesystem | vpc_private_network | vpc_vpc | vpc_subnet | vpc_route | vpc_acl | edge_services_plan | edge_services_pipeline | edge_services_dns_stage | edge_services_tls_stage | edge_services_cache_stage | edge_services_route_stage | edge_services_route_rules | edge_services_waf_stage | edge_services_backend_stage | s2s_vpn_gateway | s2s_customer_gateway | s2s_routing_policy | s2s_connection | vpc_gw_gateway | vpc_gw_gateway_network | vpc_gw_dhcp | vpc_gw_dhcp_entry | vpc_gw_pat_rule | vpc_gw_ip | audit_trail_export_job | rdb_instance | rdb_instance_backup | rdb_instance_endpoint | rdb_instance_logs | rdb_instance_read_replica | rdb_instance_snapshot) [method-name] (Optional) Name of the method of the API call performed [status] (Optional) HTTP status code of the request. Returns either `200` if the request was successful or `403` if the permission was denied [recorded-after] (Optional) The `recorded_after` parameter defines the earliest timestamp from which Audit Trail events are retrieved. Returns `one hour ago` by default @@ -24,7 +24,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-audit-trail-event-usage.golden b/cmd/scw/testdata/test-all-usage-audit-trail-event-usage.golden index 66498c4aed..43e8f0f2ab 100644 --- a/cmd/scw/testdata/test-all-usage-audit-trail-event-usage.golden +++ b/cmd/scw/testdata/test-all-usage-audit-trail-event-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List events FLAGS: - -h, --help help for event + -h, --help help for event + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-audit-trail-product-list-usage.golden b/cmd/scw/testdata/test-all-usage-audit-trail-product-list-usage.golden index 5993c54813..48c6e7202c 100644 --- a/cmd/scw/testdata/test-all-usage-audit-trail-product-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-audit-trail-product-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-audit-trail-product-usage.golden b/cmd/scw/testdata/test-all-usage-audit-trail-product-usage.golden index 15a830e048..a61477ae77 100644 --- a/cmd/scw/testdata/test-all-usage-audit-trail-product-usage.golden +++ b/cmd/scw/testdata/test-all-usage-audit-trail-product-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list Retrieve the list of Scaleway resources for which you have Audit Trail events FLAGS: - -h, --help help for product + -h, --help help for product + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-audit-trail-usage.golden b/cmd/scw/testdata/test-all-usage-audit-trail-usage.golden index 15391bfd04..404a2693c6 100644 --- a/cmd/scw/testdata/test-all-usage-audit-trail-usage.golden +++ b/cmd/scw/testdata/test-all-usage-audit-trail-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: product Product integrated with Audit Trail FLAGS: - -h, --help help for audit-trail + -h, --help help for audit-trail + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-autocomplete-install-usage.golden b/cmd/scw/testdata/test-all-usage-autocomplete-install-usage.golden index 288ec45577..b4f0dc3302 100644 --- a/cmd/scw/testdata/test-all-usage-autocomplete-install-usage.golden +++ b/cmd/scw/testdata/test-all-usage-autocomplete-install-usage.golden @@ -10,7 +10,8 @@ ARGS: [basename=scw] FLAGS: - -h, --help help for install + -h, --help help for install + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-autocomplete-usage.golden b/cmd/scw/testdata/test-all-usage-autocomplete-usage.golden index b0b8014642..5baa830894 100644 --- a/cmd/scw/testdata/test-all-usage-autocomplete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-autocomplete-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: script Show autocomplete script for current shell FLAGS: - -h, --help help for autocomplete + -h, --help help for autocomplete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-bmc-get-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-bmc-get-usage.golden index 6810fee559..fca6b02c82 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-bmc-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-bmc-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-bmc-start-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-bmc-start-usage.golden index 7e300db9e3..b69f9a04a4 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-bmc-start-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-bmc-start-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for start + -h, --help help for start + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-bmc-stop-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-bmc-stop-usage.golden index 3bdb15d55b..ee17134801 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-bmc-stop-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-bmc-stop-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for stop + -h, --help help for stop + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-bmc-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-bmc-usage.golden index 0cfd22824d..b1b53b5de7 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-bmc-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-bmc-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: stop Stop BMC access FLAGS: - -h, --help help for bmc + -h, --help help for bmc + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-offer-get-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-offer-get-usage.golden index d1e6b81a1e..67f79d139c 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-offer-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-offer-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-offer-list-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-offer-list-usage.golden index cfdbfc5866..7d79fe18d1 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-offer-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-offer-list-usage.golden @@ -18,7 +18,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-offer-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-offer-usage.golden index 91cda9b120..1127b29d5a 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-offer-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-offer-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List offers FLAGS: - -h, --help help for offer + -h, --help help for offer + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-options-add-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-options-add-usage.golden index 3c9f2d305f..898dedc358 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-options-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-options-add-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-options-delete-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-options-delete-usage.golden index 306eb83e0d..be73daf0b7 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-options-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-options-delete-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-options-get-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-options-get-usage.golden index eeee94c361..405e05bd02 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-options-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-options-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-options-list-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-options-list-usage.golden index 4b0c975ad9..54cde3e44e 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-options-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-options-list-usage.golden @@ -18,7 +18,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-options-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-options-usage.golden index 994c2aacbb..06f5c54384 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-options-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-options-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List options FLAGS: - -h, --help help for options + -h, --help help for options + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-os-get-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-os-get-usage.golden index 884dcb9d2e..26aed147f3 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-os-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-os-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-os-list-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-os-list-usage.golden index 1c6dfe4f1a..0889b4e77c 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-os-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-os-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-os-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-os-usage.golden index be0dce0a86..730c8fabeb 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-os-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-os-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List available OSes FLAGS: - -h, --help help for os + -h, --help help for os + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-partitioning-schemas-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-partitioning-schemas-usage.golden index 4197d9afff..82b1a52486 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-partitioning-schemas-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-partitioning-schemas-usage.golden @@ -6,7 +6,8 @@ USAGE: scw baremetal partitioning-schemas FLAGS: - -h, --help help for partitioning-schemas + -h, --help help for partitioning-schemas + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-private-network-add-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-private-network-add-usage.golden index 0353a418f4..17b31538f7 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-private-network-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-private-network-add-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-private-network-delete-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-private-network-delete-usage.golden index 60b5e46ed6..adfbeb0d8f 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-private-network-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-private-network-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-private-network-list-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-private-network-list-usage.golden index 5a2f4d5f11..472dc54bfa 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-private-network-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-private-network-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-private-network-set-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-private-network-set-usage.golden index c0c9a59ebd..9e2df970ad 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-private-network-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-private-network-set-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-private-network-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-private-network-usage.golden index 0e340c4316..991b9d43e1 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-private-network-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-private-network-usage.golden @@ -19,7 +19,8 @@ AVAILABLE COMMANDS: set Set multiple Private Networks on a server FLAGS: - -h, --help help for private-network + -h, --help help for private-network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-add-flexible-ip-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-add-flexible-ip-usage.golden index cd60950f34..9303865893 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-add-flexible-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-add-flexible-ip-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1) FLAGS: - -h, --help help for add-flexible-ip + -h, --help help for add-flexible-ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-create-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-create-usage.golden index fcb6448f90..fe51065939 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-create-usage.golden @@ -45,8 +45,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the server is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-delete-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-delete-usage.golden index 31f0ccaa96..36c7bea73b 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-delete-usage.golden @@ -14,8 +14,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete - -w, --wait wait until the server is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-get-metrics-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-get-metrics-usage.golden index 0a1ec1f177..86f3ddd237 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-get-metrics-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-get-metrics-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get-metrics + -h, --help help for get-metrics + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-get-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-get-usage.golden index 69e9417d93..9786187e07 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.golden index 35923372bc..27250b2922 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.golden @@ -44,8 +44,9 @@ DEPRECATED ARGS: [user-data.content] FLAGS: - -h, --help help for install - -w, --wait wait until the server is ready + -h, --help help for install + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-list-events-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-list-events-usage.golden index c30de69dd5..979d3c155d 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-list-events-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-list-events-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list-events + -h, --help help for list-events + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-list-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-list-usage.golden index be448c6a15..0722396d2d 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-list-usage.golden @@ -20,7 +20,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-reboot-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-reboot-usage.golden index 5fa49a0b29..48549e5f9b 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-reboot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-reboot-usage.golden @@ -19,8 +19,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for reboot - -w, --wait wait until the server is ready + -h, --help help for reboot + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-start-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-start-usage.golden index ef2bb90d15..a2967864c0 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-start-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-start-usage.golden @@ -19,8 +19,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for start - -w, --wait wait until the server is ready + -h, --help help for start + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-stop-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-stop-usage.golden index 3bfdff3ebf..944b9bbf96 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-stop-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-stop-usage.golden @@ -14,8 +14,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for stop - -w, --wait wait until the server is ready + -h, --help help for stop + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-update-ip-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-update-ip-usage.golden index 3a5d3a9c86..b2d0bd67e5 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-update-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-update-ip-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update-ip + -h, --help help for update-ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-update-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-update-usage.golden index 6e58020557..4e8d99dfd2 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-usage.golden index 964fc2655d..448cce9a6b 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-usage.golden @@ -26,7 +26,8 @@ WORKFLOW COMMANDS: wait Wait for a server to reach a stable state (delivery and installation) FLAGS: - -h, --help help for server + -h, --help help for server + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-wait-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-wait-usage.golden index c9177657dd..89bdf3a926 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=20m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-settings-list-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-settings-list-usage.golden index e82bddaa6c..299d8184de 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-settings-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-settings-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-settings-update-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-settings-update-usage.golden index 8574067f08..93b167b6ae 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-settings-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-settings-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-settings-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-settings-usage.golden index dd50124c81..55eaded17f 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-settings-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-settings-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: update Update setting FLAGS: - -h, --help help for settings + -h, --help help for settings + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-usage#01.golden b/cmd/scw/testdata/test-all-usage-baremetal-usage#01.golden index e2b94ee94e..d7e8c07c3d 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-usage#01.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: settings Settings management commands FLAGS: - -h, --help help for baremetal + -h, --help help for baremetal + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-baremetal-usage.golden b/cmd/scw/testdata/test-all-usage-baremetal-usage.golden index e2b94ee94e..d7e8c07c3d 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-usage.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: settings Settings management commands FLAGS: - -h, --help help for baremetal + -h, --help help for baremetal + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-consumption-list-taxes-usage.golden b/cmd/scw/testdata/test-all-usage-billing-consumption-list-taxes-usage.golden index 2e8d3da36a..62a9639184 100644 --- a/cmd/scw/testdata/test-all-usage-billing-consumption-list-taxes-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-consumption-list-taxes-usage.golden @@ -11,7 +11,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list-taxes + -h, --help help for list-taxes + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-consumption-list-usage.golden b/cmd/scw/testdata/test-all-usage-billing-consumption-list-usage.golden index 01ecccf0ca..5c2d92acac 100644 --- a/cmd/scw/testdata/test-all-usage-billing-consumption-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-consumption-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-consumption-usage.golden b/cmd/scw/testdata/test-all-usage-billing-consumption-usage.golden index 6a0d8702a5..f2d01e4c0e 100644 --- a/cmd/scw/testdata/test-all-usage-billing-consumption-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-consumption-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list-taxes Get monthly consumption taxes FLAGS: - -h, --help help for consumption + -h, --help help for consumption + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-discount-list-usage.golden b/cmd/scw/testdata/test-all-usage-billing-discount-list-usage.golden index 9b9518b889..3985136f59 100644 --- a/cmd/scw/testdata/test-all-usage-billing-discount-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-discount-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [organization-id] ID of the organization FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-discount-usage.golden b/cmd/scw/testdata/test-all-usage-billing-discount-usage.golden index 654ff695f9..a2dcd1ac6f 100644 --- a/cmd/scw/testdata/test-all-usage-billing-discount-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-discount-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List discounts FLAGS: - -h, --help help for discount + -h, --help help for discount + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-invoice-download-usage.golden b/cmd/scw/testdata/test-all-usage-billing-invoice-download-usage.golden index dcb2b6756e..1a54491634 100644 --- a/cmd/scw/testdata/test-all-usage-billing-invoice-download-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-invoice-download-usage.golden @@ -12,7 +12,8 @@ ARGS: [force-replace=false] Force file replacement FLAGS: - -h, --help help for download + -h, --help help for download + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-invoice-export-usage.golden b/cmd/scw/testdata/test-all-usage-billing-invoice-export-usage.golden index 985bdd5ae5..3b60469b81 100644 --- a/cmd/scw/testdata/test-all-usage-billing-invoice-export-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-invoice-export-usage.golden @@ -15,7 +15,8 @@ ARGS: [force-replace=false] Force file replacement FLAGS: - -h, --help help for export + -h, --help help for export + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-invoice-get-usage.golden b/cmd/scw/testdata/test-all-usage-billing-invoice-get-usage.golden index 610a2dad73..a05fe98e12 100644 --- a/cmd/scw/testdata/test-all-usage-billing-invoice-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-invoice-get-usage.golden @@ -9,7 +9,8 @@ ARGS: invoice-id Invoice ID FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-invoice-list-usage.golden b/cmd/scw/testdata/test-all-usage-billing-invoice-list-usage.golden index cc3c02e2a5..095c828270 100644 --- a/cmd/scw/testdata/test-all-usage-billing-invoice-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-invoice-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [organization-id] Organization ID. If specified, only invoices from this Organization will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-invoice-usage.golden b/cmd/scw/testdata/test-all-usage-billing-invoice-usage.golden index 4f7d7843ac..fdf7b8027a 100644 --- a/cmd/scw/testdata/test-all-usage-billing-invoice-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-invoice-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List invoices FLAGS: - -h, --help help for invoice + -h, --help help for invoice + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-billing-usage.golden b/cmd/scw/testdata/test-all-usage-billing-usage.golden index e804f045b3..f08b1dab4e 100644 --- a/cmd/scw/testdata/test-all-usage-billing-usage.golden +++ b/cmd/scw/testdata/test-all-usage-billing-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: invoice Invoice management commands FLAGS: - -h, --help help for billing + -h, --help help for billing + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-create-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-create-usage.golden index 5480c0d434..5b83d98f14 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-create-usage.golden @@ -14,8 +14,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the snapshot is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the snapshot is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-delete-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-delete-usage.golden index 5cbfc147f5..6638ab18c9 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-export-to-object-storage-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-export-to-object-storage-usage.golden index 20ea8b32b6..8b103a845a 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-export-to-object-storage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-export-to-object-storage-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for export-to-object-storage + -h, --help help for export-to-object-storage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-get-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-get-usage.golden index 96e8d4f6fd..926ef00aef 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-import-from-object-storage-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-import-from-object-storage-usage.golden index 165f8afe0f..a1fcd09daa 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-import-from-object-storage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-import-from-object-storage-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for import-from-object-storage + -h, --help help for import-from-object-storage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-list-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-list-usage.golden index 0110fc8f62..0693208806 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-update-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-update-usage.golden index 3f68b8b6e4..41c1d0ec1a 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-usage.golden index f9e1530a0e..bed6219fd7 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-usage.golden @@ -18,7 +18,8 @@ WORKFLOW COMMANDS: wait Wait for snapshot to reach a stable state FLAGS: - -h, --help help for snapshot + -h, --help help for snapshot + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-snapshot-wait-usage.golden b/cmd/scw/testdata/test-all-usage-block-snapshot-wait-usage.golden index 49cf4dbd49..cd8f67a53c 100644 --- a/cmd/scw/testdata/test-all-usage-block-snapshot-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-snapshot-wait-usage.golden @@ -13,10 +13,11 @@ ARGS: [timeout=5m0s] Timeout of the wait snapshot-id ID of the snapshot affected by the action. [terminal-status] Expected terminal status, will wait until this status is reached. (unknown_status | creating | available | error | deleting | deleted | in_use | locked | exporting) - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-usage.golden b/cmd/scw/testdata/test-all-usage-block-usage.golden index fbd1bb21dc..7e3af6c5f3 100644 --- a/cmd/scw/testdata/test-all-usage-block-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: volume-type Block Storage volume types are determined by their storage class and their IOPS. There are two storage classes available: `bssd` and `sbs`. The IOPS can be chosen for volumes of the `sbs` storage class FLAGS: - -h, --help help for block + -h, --help help for block + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-create-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-create-usage.golden index 9a0b85793d..b4c045b265 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-create-usage.golden @@ -17,8 +17,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the volume is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the volume is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-delete-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-delete-usage.golden index 4c00878deb..a3819cfdfb 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-get-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-get-usage.golden index 654b5fd31f..e1c7a975b5 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-list-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-list-usage.golden index c0d9779b4e..d003a9d651 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-type-list-usage.golden index 29907dc31a..1ea704519b 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-type-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-type-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-type-usage.golden index 57ceba03df..2afd45537d 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-type-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List volume types FLAGS: - -h, --help help for volume-type + -h, --help help for volume-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-update-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-update-usage.golden index 83d8e2a1be..3c502a5ef2 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-usage.golden index 5c5871b78f..93a4c662c7 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-usage.golden @@ -16,7 +16,8 @@ WORKFLOW COMMANDS: wait Wait for volume to reach a stable state FLAGS: - -h, --help help for volume + -h, --help help for volume + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-block-volume-wait-usage.golden b/cmd/scw/testdata/test-all-usage-block-volume-wait-usage.golden index e5ad7f367d..88961e2eda 100644 --- a/cmd/scw/testdata/test-all-usage-block-volume-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-block-volume-wait-usage.golden @@ -13,10 +13,11 @@ ARGS: [timeout=5m0s] Timeout of the wait volume-id ID of the volume affected by the action. [terminal-status] Expected terminal status, will wait until this status is reached. (unknown_status | creating | available | in_use | deleting | deleted | resizing | error | snapshotting | locked | updating) - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-disable-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-disable-usage.golden index 79f0131119..9c7ef2a230 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-disable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-disable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for disable + -h, --help help for disable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-enable-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-enable-usage.golden index e6c4e7a0d5..c6dfc95c12 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-enable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-enable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for enable + -h, --help help for enable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-get-usage.golden index 9bb48568a8..dcef6f4bab 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-usage.golden index 050117b4e4..492fd629d3 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-alert-manager-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: get Get the Alert manager FLAGS: - -h, --help help for alert-manager + -h, --help help for alert-manager + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-create-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-create-usage.golden index e6c4fb0db4..e50c7802a9 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-delete-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-delete-usage.golden index a6cae6ba50..adff75f96d 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-list-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-list-usage.golden index 5cfff060d2..36e35ba436 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-usage.golden index 125bc76691..c914a15794 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-contact-point-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-contact-point-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List contact points FLAGS: - -h, --help help for contact-point + -h, --help help for contact-point + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-data-source-create-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-data-source-create-usage.golden index 13c8c4d6e0..c3d587869e 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-data-source-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-data-source-create-usage.golden @@ -8,13 +8,14 @@ USAGE: ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used - [name] Data source name - [type] Data source type (unknown_type | metrics | logs | traces) + name Data source name + type Data source type (unknown_type | metrics | logs | traces) [retention-days] Duration for which the data will be retained in the data source [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-data-source-delete-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-data-source-delete-usage.golden index 834a0b80b5..24ec0ef7a1 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-data-source-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-data-source-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-data-source-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-data-source-get-usage.golden index a6bd247a21..1e168c9441 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-data-source-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-data-source-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-data-source-list-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-data-source-list-usage.golden index a9a0c116f0..336bbb2d3d 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-data-source-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-data-source-list-usage.golden @@ -6,14 +6,15 @@ USAGE: scw cockpit data-source list [arg=value ...] ARGS: - [order-by] Sort order for data sources in the response (created_at_asc | created_at_desc | name_asc | name_desc | type_asc | type_desc) [project-id] Project ID to use. If none is passed the default project ID will be used [origin] Origin to filter for, only data sources with matching origin will be returned. If omitted, all types will be returned (unknown_origin | scaleway | external | custom) [types.{index}] Types to filter for (metrics, logs, traces), only data sources with matching types will be returned. If omitted, all types will be returned (unknown_type | metrics | logs | traces) + [order-by] Sort order for data sources in the response (created_at_asc | created_at_desc | name_asc | name_desc | type_asc | type_desc) [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-data-source-update-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-data-source-update-usage.golden index 3129869388..0b8ab0e679 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-data-source-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-data-source-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-data-source-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-data-source-usage.golden index 356bf1ede4..ce30112595 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-data-source-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-data-source-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a data source FLAGS: - -h, --help help for data-source + -h, --help help for data-source + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-get-usage.golden index 886fb489c4..4458c055c1 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-sync-data-sources-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-sync-data-sources-usage.golden index 2bce8a995b..d9b8cb5f81 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-sync-data-sources-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-sync-data-sources-usage.golden @@ -9,7 +9,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for sync-data-sources + -h, --help help for sync-data-sources + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-usage.golden index 5d9c46a7f0..de18a97543 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: sync-data-sources Synchronize Grafana data sources FLAGS: - -h, --help help for grafana + -h, --help help for grafana + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-create-usage.golden index fc4517bca5..f41fa7c8db 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [role] Role assigned to the Grafana user (unknown_role | editor | viewer) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-delete-usage.golden index c009b97f99..79e339c8ec 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: grafana-user-id ID of the Grafana user FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-list-usage.golden index ded8d34cdf..3dac5cf1b7 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-reset-password-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-reset-password-usage.golden index 97c06cf29b..98c980dc2a 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-reset-password-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-reset-password-usage.golden @@ -12,7 +12,8 @@ ARGS: grafana-user-id ID of the Grafana user FLAGS: - -h, --help help for reset-password + -h, --help help for reset-password + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-usage.golden index 05c688cced..ca57380120 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-grafana-user-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: reset-password (Deprecated) EOL 2026-01-20 FLAGS: - -h, --help help for grafana-user + -h, --help help for grafana-user + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-managed-alerts-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-managed-alerts-usage.golden index ea4e8697fa..b90f02a9ca 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-managed-alerts-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-managed-alerts-usage.golden @@ -6,7 +6,8 @@ USAGE: scw cockpit managed-alerts FLAGS: - -h, --help help for managed-alerts + -h, --help help for managed-alerts + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-plan-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-plan-get-usage.golden index 345fa8770b..c532324fa3 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-plan-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-plan-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-plan-list-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-plan-list-usage.golden index c0396e48e3..751d0093f9 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-plan-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-plan-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [order-by] (name_asc | name_desc) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-plan-select-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-plan-select-usage.golden index 97cb672db3..6080da7e93 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-plan-select-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-plan-select-usage.golden @@ -11,7 +11,8 @@ ARGS: [plan-name] Name of the pricing plan (unknown_name | free | premium | custom) FLAGS: - -h, --help help for select + -h, --help help for select + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-plan-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-plan-usage.golden index fe7f7747c1..0ced6df224 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-plan-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-plan-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: select Apply a pricing plan FLAGS: - -h, --help help for plan + -h, --help help for plan + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-get-usage.golden index 25afdb2988..22fd24ba74 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-get-usage.golden @@ -10,7 +10,8 @@ ARGS: dashboard-name Name of the dashboard FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-list-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-list-usage.golden index 377d2cc18e..10dedffc0f 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [tags.{index}] Tags to filter for FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-usage.golden index 4fe0bb1f34..8321a6ac9f 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-product-dashboards-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List Scaleway resources dashboards FLAGS: - -h, --help help for product-dashboards + -h, --help help for product-dashboards + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-test-alert-trigger-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-test-alert-trigger-usage.golden index eaccbc5025..dcfd90670b 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-test-alert-trigger-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-test-alert-trigger-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for trigger + -h, --help help for trigger + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-test-alert-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-test-alert-usage.golden index 82f3033551..97a622c2de 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-test-alert-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-test-alert-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: trigger Trigger a test alert FLAGS: - -h, --help help for test-alert + -h, --help help for test-alert + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-token-create-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-token-create-usage.golden index f1f69888b3..51e7ff689e 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-token-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-token-create-usage.golden @@ -8,12 +8,13 @@ USAGE: ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used - [name] Name of the token + name Name of the token [token-scopes.{index}] Token permission scopes (unknown_scope | read_only_metrics | write_only_metrics | full_access_metrics_rules | read_only_logs | write_only_logs | full_access_logs_rules | full_access_alert_manager | read_only_traces | write_only_traces) [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-token-delete-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-token-delete-usage.golden index 4b9032b026..0e47f42d5b 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-token-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-token-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-token-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-token-get-usage.golden index 5933216d20..428f5a15f2 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-token-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-token-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-token-list-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-token-list-usage.golden index d5ab488ecd..3ea00e2398 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-token-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-token-list-usage.golden @@ -7,13 +7,14 @@ USAGE: scw cockpit token list [arg=value ...] ARGS: - [order-by] Order in which to return results (created_at_asc | created_at_desc | name_asc | name_desc) [project-id] Project ID to use. If none is passed the default project ID will be used [token-scopes.{index}] Token scopes to filter for (unknown_scope | read_only_metrics | write_only_metrics | full_access_metrics_rules | read_only_logs | write_only_logs | full_access_logs_rules | full_access_alert_manager | read_only_traces | write_only_traces) + [order-by] Order in which to return results (created_at_asc | created_at_desc | name_asc | name_desc) [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-token-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-token-usage.golden index 52e548bc0a..658b785cb0 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-token-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-token-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List tokens FLAGS: - -h, --help help for token + -h, --help help for token + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-get-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-get-usage.golden index 2003510df1..d5c1695b30 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-usage.golden index 7aa8c659f3..6fc5b982ee 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-usage-overview-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: get Get data source usage overview FLAGS: - -h, --help help for usage-overview + -h, --help help for usage-overview + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-cockpit-usage.golden b/cmd/scw/testdata/test-all-usage-cockpit-usage.golden index ce61a2c4d7..761381ab6d 100644 --- a/cmd/scw/testdata/test-all-usage-cockpit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-cockpit-usage.golden @@ -19,7 +19,8 @@ AVAILABLE COMMANDS: usage-overview Usage overview management commands FLAGS: - -h, --help help for cockpit + -h, --help help for cockpit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-destroy-usage.golden b/cmd/scw/testdata/test-all-usage-config-destroy-usage.golden index 6d087750f5..327190890f 100644 --- a/cmd/scw/testdata/test-all-usage-config-destroy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-destroy-usage.golden @@ -6,7 +6,8 @@ USAGE: scw config destroy FLAGS: - -h, --help help for destroy + -h, --help help for destroy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-dump-usage.golden b/cmd/scw/testdata/test-all-usage-config-dump-usage.golden index 3aba982c15..fe1c2a4c71 100644 --- a/cmd/scw/testdata/test-all-usage-config-dump-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-dump-usage.golden @@ -6,7 +6,8 @@ USAGE: scw config dump FLAGS: - -h, --help help for dump + -h, --help help for dump + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-edit-usage.golden b/cmd/scw/testdata/test-all-usage-config-edit-usage.golden index bed864128c..361f3925cb 100644 --- a/cmd/scw/testdata/test-all-usage-config-edit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-edit-usage.golden @@ -6,7 +6,8 @@ USAGE: scw config edit FLAGS: - -h, --help help for edit + -h, --help help for edit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-get-usage.golden b/cmd/scw/testdata/test-all-usage-config-get-usage.golden index 183804c2f4..cc8ee3c9e4 100644 --- a/cmd/scw/testdata/test-all-usage-config-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-get-usage.golden @@ -16,7 +16,8 @@ ARGS: key the key to get from the config (access-key | secret-key | api-url | insecure | default-organization-id | default-project-id | default-region | default-zone | send-telemetry) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-import-usage.golden b/cmd/scw/testdata/test-all-usage-config-import-usage.golden index 577c19beca..9e05b25e51 100644 --- a/cmd/scw/testdata/test-all-usage-config-import-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-import-usage.golden @@ -9,7 +9,8 @@ ARGS: file Path to the configuration file to import FLAGS: - -h, --help help for import + -h, --help help for import + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-info-usage.golden b/cmd/scw/testdata/test-all-usage-config-info-usage.golden index 5a05a899d4..a6c5095111 100644 --- a/cmd/scw/testdata/test-all-usage-config-info-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-info-usage.golden @@ -13,7 +13,8 @@ EXAMPLES: scw -p prod config info FLAGS: - -h, --help help for info + -h, --help help for info + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-profile-activate-usage.golden b/cmd/scw/testdata/test-all-usage-config-profile-activate-usage.golden index 7fc39c865c..16e14f8103 100644 --- a/cmd/scw/testdata/test-all-usage-config-profile-activate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-profile-activate-usage.golden @@ -9,7 +9,8 @@ ARGS: profile-name FLAGS: - -h, --help help for activate + -h, --help help for activate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-profile-delete-usage.golden b/cmd/scw/testdata/test-all-usage-config-profile-delete-usage.golden index 7858eaf04b..482c6dfa4b 100644 --- a/cmd/scw/testdata/test-all-usage-config-profile-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-profile-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: name FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-profile-list-usage.golden b/cmd/scw/testdata/test-all-usage-config-profile-list-usage.golden index a6fcc879cb..815737ac7a 100644 --- a/cmd/scw/testdata/test-all-usage-config-profile-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-profile-list-usage.golden @@ -6,7 +6,8 @@ USAGE: scw config profile list FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-profile-usage.golden b/cmd/scw/testdata/test-all-usage-config-profile-usage.golden index ed5f26b879..abce3ef6ca 100644 --- a/cmd/scw/testdata/test-all-usage-config-profile-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-profile-usage.golden @@ -11,7 +11,8 @@ CONFIGURATION COMMANDS: list List all profiles in the config file FLAGS: - -h, --help help for profile + -h, --help help for profile + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-reset-usage.golden b/cmd/scw/testdata/test-all-usage-config-reset-usage.golden index 5e65596ea3..feefb6daa8 100644 --- a/cmd/scw/testdata/test-all-usage-config-reset-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-reset-usage.golden @@ -6,7 +6,8 @@ USAGE: scw config reset FLAGS: - -h, --help help for reset + -h, --help help for reset + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-set-usage.golden b/cmd/scw/testdata/test-all-usage-config-set-usage.golden index 4b6373df2b..14b74c6cad 100644 --- a/cmd/scw/testdata/test-all-usage-config-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-set-usage.golden @@ -20,12 +20,13 @@ ARGS: [insecure] Set to true to allow insecure HTTPS connections [default-organization-id] A default Scaleway organization id [default-project-id] A default Scaleway project id - [default-region] A default Scaleway region (fr-par | nl-ams | pl-waw) - [default-zone] A default Scaleway zone (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [default-region] A default Scaleway region (fr-par | nl-ams | pl-waw | it-mil) + [default-zone] A default Scaleway zone (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) [send-telemetry] Set to false to disable telemetry FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-unset-usage.golden b/cmd/scw/testdata/test-all-usage-config-unset-usage.golden index b3b397c4be..3d8558cbc4 100644 --- a/cmd/scw/testdata/test-all-usage-config-unset-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-unset-usage.golden @@ -9,7 +9,8 @@ ARGS: key the config config key name to unset (access-key | secret-key | api-url | insecure | default-organization-id | default-project-id | default-region | default-zone | send-telemetry) FLAGS: - -h, --help help for unset + -h, --help help for unset + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-config-validate-usage.golden b/cmd/scw/testdata/test-all-usage-config-validate-usage.golden index 970905adaa..82dd1fc65b 100644 --- a/cmd/scw/testdata/test-all-usage-config-validate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-config-validate-usage.golden @@ -14,7 +14,8 @@ USAGE: scw config validate FLAGS: - -h, --help help for validate + -h, --help help for validate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden index 5b3c05b404..e63520aa6d 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden @@ -41,8 +41,9 @@ DEPRECATED ARGS: [max-concurrency] Number of maximum concurrent executions of the container FLAGS: - -h, --help help for create - -w, --wait wait until the container is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the container is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden index 47a3847760..5b8da8c7e4 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-deploy-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-deploy-usage.golden index eedeaab571..a09be53882 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-deploy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-deploy-usage.golden @@ -10,8 +10,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for deploy - -w, --wait wait until the container is ready + -h, --help help for deploy + --list-sub-commands List all subcommands + -w, --wait wait until the container is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden index bc74a09959..70fe95663e 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden index 25c14d0e88..f0dbf13565 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden index 3fdf272516..96bceaa002 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden @@ -16,7 +16,6 @@ ARGS: [memory-limit] Memory limit of the container in MB [cpu-limit] CPU limit of the container in mvCPU [timeout] Processing time limit for the container - [redeploy] Defines whether to redeploy failed containers [privacy] Privacy settings of the container (unknown_privacy | public | private) [description] Description of the container [registry-image] Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag"). @@ -40,11 +39,13 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) DEPRECATED ARGS: + [redeploy] Defines whether to redeploy failed containers [max-concurrency] Number of maximum concurrent executions of the container FLAGS: - -h, --help help for update - -w, --wait wait until the container is ready + -h, --help help for update + --list-sub-commands List all subcommands + -w, --wait wait until the container is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-container-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-usage.golden index aea18c6bde..dbe417e104 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update an existing container FLAGS: - -h, --help help for container + -h, --help help for container + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-cron-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-cron-create-usage.golden index b89686a001..82fe1f1f68 100644 --- a/cmd/scw/testdata/test-all-usage-container-cron-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-cron-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-cron-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-cron-delete-usage.golden index fb3c060481..63c2bbe6b3 100644 --- a/cmd/scw/testdata/test-all-usage-container-cron-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-cron-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-cron-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-cron-get-usage.golden index b6e6935a31..aee1584625 100644 --- a/cmd/scw/testdata/test-all-usage-container-cron-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-cron-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-cron-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-cron-list-usage.golden index f1bfdd970a..18416f8f2a 100644 --- a/cmd/scw/testdata/test-all-usage-container-cron-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-cron-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-cron-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-cron-update-usage.golden index 4d3104c4e4..94c6413ec1 100644 --- a/cmd/scw/testdata/test-all-usage-container-cron-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-cron-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-cron-usage.golden b/cmd/scw/testdata/test-all-usage-container-cron-usage.golden index a872a0f6e2..2546e80af1 100644 --- a/cmd/scw/testdata/test-all-usage-container-cron-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-cron-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an existing cron FLAGS: - -h, --help help for cron + -h, --help help for cron + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-deploy-usage.golden b/cmd/scw/testdata/test-all-usage-container-deploy-usage.golden index 84c57cb94d..d048619f1d 100644 --- a/cmd/scw/testdata/test-all-usage-container-deploy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-deploy-usage.golden @@ -8,6 +8,7 @@ USAGE: ARGS: [name] Name of the application (defaults to build-source's directory name) [builder=paketobuildpacks/builder-jammy-base:latest] Builder image to use + [run-image=paketobuildpacks/run-jammy-base:latest] Run image to use [dockerfile=Dockerfile] Path to the Dockerfile [force-builder=false] Force the use of the builder image (even if a Dockerfile is present) [build-source=.] Path to the build context @@ -18,7 +19,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for deploy + -h, --help help for deploy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden index a365a53b6d..e5e5349b0c 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden index fe91e34b1c..5c0c2087e7 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden index 3453833b5d..8a1e736cec 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden index 45fa7f192e..928343c1cb 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-domain-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-usage.golden index 48b14b1e85..1c4adb9863 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List all custom domains FLAGS: - -h, --help help for domain + -h, --help help for domain + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden index 1df5ad7396..daa881e97e 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden @@ -19,8 +19,9 @@ DEPRECATED ARGS: [activate-vpc-integration] [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC. FLAGS: - -h, --help help for create - -w, --wait wait until the namespace is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the namespace is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden index 4b8bddfe7e..fd2370904d 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden @@ -10,8 +10,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete - -w, --wait wait until the namespace is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the namespace is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden index a7ed706eea..61dff302c3 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden index 5b50853008..ebe9b84b64 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden index bd9b366c45..69c74eab7a 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden @@ -15,8 +15,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update - -w, --wait wait until the namespace is ready + -h, --help help for update + --list-sub-commands List all subcommands + -w, --wait wait until the namespace is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden index f1d0c96e7f..c3bd607e2f 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an existing namespace FLAGS: - -h, --help help for namespace + -h, --help help for namespace + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-token-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-token-create-usage.golden index 7191e35ea5..a4a98b3044 100644 --- a/cmd/scw/testdata/test-all-usage-container-token-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-token-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-token-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-token-delete-usage.golden index b7fb4acc80..14a7863cb9 100644 --- a/cmd/scw/testdata/test-all-usage-container-token-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-token-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-token-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-token-get-usage.golden index 35ea5ab9f6..5b90bf3c3e 100644 --- a/cmd/scw/testdata/test-all-usage-container-token-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-token-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-token-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-token-list-usage.golden index 7e4b809e33..462bb7f2ae 100644 --- a/cmd/scw/testdata/test-all-usage-container-token-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-token-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-token-usage.golden b/cmd/scw/testdata/test-all-usage-container-token-usage.golden index 160357918f..dee236595f 100644 --- a/cmd/scw/testdata/test-all-usage-container-token-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-token-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List all tokens FLAGS: - -h, --help help for token + -h, --help help for token + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden index 69f095a73c..7912d9f2ae 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden @@ -19,7 +19,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden index cb7bf0da34..d3dfcef12f 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden index 850a3e1488..f5ef44631c 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden index 902b8e11b3..40a20e92eb 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden index 77986b1417..e8cae19d23 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden index d29166d722..eb130b7e6e 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a trigger FLAGS: - -h, --help help for trigger + -h, --help help for trigger + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-container-usage.golden b/cmd/scw/testdata/test-all-usage-container-usage.golden index d2d0f0429e..17a501cf82 100644 --- a/cmd/scw/testdata/test-all-usage-container-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-usage.golden @@ -17,7 +17,8 @@ WORKFLOW COMMANDS: deploy Deploy a container FLAGS: - -h, --help help for container + -h, --help help for container + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-datalab-cluster-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-cluster-version-list-usage.golden new file mode 100644 index 0000000000..6c13dc9f06 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-cluster-version-list-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab cluster-version list [arg=value ...] + +ARGS: + [order-by] The order by field. (name_asc | name_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-cluster-version-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-cluster-version-usage.golden new file mode 100644 index 0000000000..7803af6458 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-cluster-version-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Lists the Spark versions available for Data Lab creation. + +USAGE: + scw datalab cluster-version + +AVAILABLE COMMANDS: + list List datalab resources + +FLAGS: + -h, --help help for cluster-version + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab cluster-version [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-cluster-versions-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-cluster-versions-list-usage.golden new file mode 100644 index 0000000000..920829ccba --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-cluster-versions-list-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab cluster-versions list [arg=value ...] + +ARGS: + [order-by] The order by field. (name_asc | name_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-cluster-versions-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-cluster-versions-usage.golden new file mode 100644 index 0000000000..fbb3f76457 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-cluster-versions-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Lists the Spark versions available for Data Lab creation. + +USAGE: + scw datalab cluster-versions + +AVAILABLE COMMANDS: + list List datalab resources + +FLAGS: + -h, --help help for cluster-versions + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab cluster-versions [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-datalab-create-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-datalab-create-usage.golden new file mode 100644 index 0000000000..6fbeaa7308 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-datalab-create-usage.golden @@ -0,0 +1,31 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create datalab resources. + +USAGE: + scw datalab datalab create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + [name] The name of the Data Lab. + [description] The description of the Data Lab. + [tags.{index}] The tags of the Data Lab. + [main.node-type] + [worker.node-type] + [worker.node-count] + [has-notebook] Select this option to include a notebook as part of the Data Lab. + [spark-version] The version of Spark running inside the Data Lab, available options can be viewed at ListClusterVersions. + [total-storage.type] (unknown_type | sbs_5k) + [total-storage.size] + [private-network-id] The unique identifier of the private network the Data Lab will be attached to. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-datalab-delete-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-datalab-delete-usage.golden new file mode 100644 index 0000000000..4d1df3c523 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-datalab-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete datalab resources. + +USAGE: + scw datalab datalab delete [arg=value ...] + +ARGS: + datalab-id The unique identifier of the Data Lab. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-datalab-get-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-datalab-get-usage.golden new file mode 100644 index 0000000000..b4404e1c64 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-datalab-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Get datalab resources. + +USAGE: + scw datalab datalab get [arg=value ...] + +ARGS: + datalab-id The unique identifier of the Data Lab + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-datalab-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-datalab-list-usage.golden new file mode 100644 index 0000000000..866af7cc84 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-datalab-list-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab datalab list [arg=value ...] + +ARGS: + [project-id] The unique identifier of the project whose Data Labs you want to list. + [name] The name of the Data Lab you want to list. + [tags.{index}] The tags associated with the Data Lab you want to list. + [order-by] The order by field, available options are `name_asc`, `name_desc`, `created_at_asc`, `created_at_desc`, `updated_at_asc`, `updated_at_desc`. (name_asc | name_desc | created_at_asc | created_at_desc | updated_at_asc | updated_at_desc) + [organization-id] The unique identifier of the organization whose Data Labs you want to list. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-datalab-update-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-datalab-update-usage.golden new file mode 100644 index 0000000000..42614fe071 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-datalab-update-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update datalab resources. + +USAGE: + scw datalab datalab update [arg=value ...] + +ARGS: + datalab-id The unique identifier of the Data Lab. + [name] The updated name of the Data Lab. + [description] The updated description of the Data Lab. + [tags.{index}] The updated tags of the Data Lab. + [node-count] The updated node count of the Data Lab. Scale up or down the number of worker nodes. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-datalab-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-datalab-usage.golden new file mode 100644 index 0000000000..0865aa969c --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-datalab-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage your Data Labs. + +USAGE: + scw datalab datalab + +AVAILABLE COMMANDS: + create Create datalab resources + delete Delete datalab resources + get Get datalab resources + list List datalab resources + update Update datalab resources + +FLAGS: + -h, --help help for datalab + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab datalab [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-node-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-node-type-list-usage.golden new file mode 100644 index 0000000000..ca243e2d15 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-node-type-list-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab node-type list [arg=value ...] + +ARGS: + [order-by] The order by field. Available fields are `name_asc`, `name_desc`, `vcpus_asc`, `vcpus_desc`, `memory_gigabytes_asc`, `memory_gigabytes_desc`, `vram_bytes_asc`, `vram_bytes_desc`, `gpus_asc`, `gpus_desc`. (name_asc | name_desc | vcpus_asc | vcpus_desc | memory_gigabytes_asc | memory_gigabytes_desc | vram_bytes_asc | vram_bytes_desc | gpus_asc | gpus_desc) + [targets.{index}] Filter based on the target of the nodes. Allows to filter the nodes based on their purpose which can be main or worker node. (unknown_target | notebook | worker) + [resource-type] Filter based on node type ( `cpu`/`gpu`/`all` ). (all | gpu | cpu) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-node-type-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-node-type-usage.golden new file mode 100644 index 0000000000..dca7f03aa9 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-node-type-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available node types. + +USAGE: + scw datalab node-type + +AVAILABLE COMMANDS: + list List datalab resources + +FLAGS: + -h, --help help for node-type + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab node-type [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-node-types-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-node-types-list-usage.golden new file mode 100644 index 0000000000..185c9f4c8e --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-node-types-list-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab node-types list [arg=value ...] + +ARGS: + [order-by] The order by field. Available fields are `name_asc`, `name_desc`, `vcpus_asc`, `vcpus_desc`, `memory_gigabytes_asc`, `memory_gigabytes_desc`, `vram_bytes_asc`, `vram_bytes_desc`, `gpus_asc`, `gpus_desc`. (name_asc | name_desc | vcpus_asc | vcpus_desc | memory_gigabytes_asc | memory_gigabytes_desc | vram_bytes_asc | vram_bytes_desc | gpus_asc | gpus_desc) + [targets.{index}] Filter on the wanted targets, whether it's for main node or worker. (unknown_target | notebook | worker) + [resource-type] Filter based on node type ( `cpu`/`gpu`/`all` ). (all | gpu | cpu) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-node-types-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-node-types-usage.golden new file mode 100644 index 0000000000..251aa31bf9 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-node-types-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available node types. These are the possible compute units that can host the Spark cluster. + +USAGE: + scw datalab node-types + +AVAILABLE COMMANDS: + list List datalab resources + +FLAGS: + -h, --help help for node-types + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab node-types [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-notebook-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-notebook-version-list-usage.golden new file mode 100644 index 0000000000..35a2c59cd7 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-notebook-version-list-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab notebook-version list [arg=value ...] + +ARGS: + [order-by] The order by field. Available options are `name_asc` and `name_desc`. (name_asc | name_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-notebook-version-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-notebook-version-usage.golden new file mode 100644 index 0000000000..ea0188a523 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-notebook-version-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available notebook versions. + +USAGE: + scw datalab notebook-version + +AVAILABLE COMMANDS: + list List datalab resources + +FLAGS: + -h, --help help for notebook-version + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab notebook-version [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-notebook-versions-list-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-notebook-versions-list-usage.golden new file mode 100644 index 0000000000..57cc957ccb --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-notebook-versions-list-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List datalab resources. + +USAGE: + scw datalab notebook-versions list [arg=value ...] + +ARGS: + [order-by] The order by field. Available options are `name_asc` and `name_desc`. (name_asc | name_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datalab-notebook-versions-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-notebook-versions-usage.golden new file mode 100644 index 0000000000..ef6758da0a --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-notebook-versions-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available notebook versions. Currently it includes JupyterLab. + +USAGE: + scw datalab notebook-versions + +AVAILABLE COMMANDS: + list List datalab resources + +FLAGS: + -h, --help help for notebook-versions + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab notebook-versions [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datalab-usage.golden b/cmd/scw/testdata/test-all-usage-datalab-usage.golden new file mode 100644 index 0000000000..beda4e51ec --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datalab-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Data Lab API. + +USAGE: + scw datalab + +AVAILABLE COMMANDS: + cluster-version + datalab + node-type + notebook-version + +FLAGS: + -h, --help help for datalab + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datalab [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-database-create-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-database-create-usage.golden new file mode 100644 index 0000000000..8695aeb9b9 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-database-create-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new database within a deployment. + +USAGE: + scw datawarehouse database create [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + [name] Name of the database + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-database-delete-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-database-delete-usage.golden new file mode 100644 index 0000000000..7644001f33 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-database-delete-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete a database from a deployment. + +USAGE: + scw datawarehouse database delete [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + name Name of the database to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-database-list-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-database-list-usage.golden new file mode 100644 index 0000000000..6e4bd34c07 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-database-list-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List databases within a deployment. + +USAGE: + scw datawarehouse database list [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + [name] Name of the database to filter by + [order-by] Criteria to use when ordering database listings (name_asc | name_desc | size_asc | size_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-database-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-database-usage.golden new file mode 100644 index 0000000000..4d009a3bbb --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-database-usage.golden @@ -0,0 +1,23 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage databases within a deployment. + +USAGE: + scw datawarehouse database + +AVAILABLE COMMANDS: + create Create a new database within a deployment + delete Delete a database from a deployment + list List databases within a deployment + +FLAGS: + -h, --help help for database + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse database [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-create-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-create-usage.golden new file mode 100644 index 0000000000..ba80cb97ad --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-create-usage.golden @@ -0,0 +1,29 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new deployment. + +USAGE: + scw datawarehouse deployment create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + [name] Name of the deployment + [tags.{index}] Tags to apply to the deployment + [version] ClickHouse® version to use for the deployment + [replica-count] Number of replicas for the deployment + [password] Password for the initial user + [cpu-min] Minimum CPU count for the deployment + [cpu-max] Maximum CPU count for the deployment + [endpoints.{index}.private-network.private-network-id] UUID of the Private Network + [ram-per-cpu] RAM per CPU count for the deployment (in GB) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-delete-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-delete-usage.golden new file mode 100644 index 0000000000..b238a93142 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete a given deployment, specified by the `region` and `deployment_id` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, all your data will be lost. + +USAGE: + scw datawarehouse deployment delete [arg=value ...] + +ARGS: + deployment-id UUID of the deployment to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-get-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-get-certificate-usage.golden new file mode 100644 index 0000000000..674c74646e --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-get-certificate-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Retrieve the TLS certificate associated with a deployment. + +USAGE: + scw datawarehouse deployment get-certificate [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for get-certificate + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-get-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-get-usage.golden new file mode 100644 index 0000000000..c63ca60343 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Retrieve information about a given deployment, specified by the `region` and `deployment_id` parameters. Its full details, including name, status are returned in the response object. + +USAGE: + scw datawarehouse deployment get [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-list-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-list-usage.golden new file mode 100644 index 0000000000..066f7a4ffa --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-list-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List all deployments in the specified region, for a given Scaleway Project. By default, the deployments returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. You can define additional parameters for your query, such as `tags` and `name`. For the `name` parameter, the value you provide will be checked against the whole name string to see if it includes the string you put in the parameter. + +USAGE: + scw datawarehouse deployment list [arg=value ...] + +ARGS: + [tags.{index}] List deployments with a given tag + [name] Lists deployments that match a name pattern + [order-by] Criteria to use when ordering deployment listings (created_at_desc | created_at_asc | name_asc | name_desc) + [project-id] Project ID the deployment belongs to + [organization-id] Organization ID the deployment belongs to + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-update-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-update-usage.golden new file mode 100644 index 0000000000..fd0a3ec0ac --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-update-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update the parameters of a deployment. + +USAGE: + scw datawarehouse deployment update [arg=value ...] + +ARGS: + deployment-id UUID of the deployment to update + [name] Name of the deployment + [tags.{index}] Tags of a deployment + [cpu-min] Minimum CPU count for the deployment + [cpu-max] Maximum CPU count for the deployment + [replica-count] Number of replicas for the deployment + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-usage.golden new file mode 100644 index 0000000000..7a7d2c4aa9 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-deployment-usage.golden @@ -0,0 +1,26 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +A deployment is composed of one or multiple replicas. + +USAGE: + scw datawarehouse deployment + +AVAILABLE COMMANDS: + create Create a deployment + delete Delete a deployment + get Get a deployment + get-certificate Get deployment TLS certificate + list List deployments + update Update a deployment + +FLAGS: + -h, --help help for deployment + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse deployment [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-create-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-create-usage.golden new file mode 100644 index 0000000000..f6c61a6951 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-create-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new endpoint for a deployment. + +USAGE: + scw datawarehouse endpoint create [arg=value ...] + +ARGS: + [deployment-id] UUID of the deployment + [endpoint.private-network.private-network-id] UUID of the Private Network + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-delete-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-delete-usage.golden new file mode 100644 index 0000000000..a013e1b6c5 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an endpoint from a deployment. + +USAGE: + scw datawarehouse endpoint delete [arg=value ...] + +ARGS: + endpoint-id UUID of the Endpoint to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-usage.golden new file mode 100644 index 0000000000..93796c7e92 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-endpoint-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage endpoints associated with a deployment. + +USAGE: + scw datawarehouse endpoint + +AVAILABLE COMMANDS: + create Create a new endpoint for a deployment + delete Delete an endpoint from a deployment + +FLAGS: + -h, --help help for endpoint + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse endpoint [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-preset-list-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-preset-list-usage.golden new file mode 100644 index 0000000000..b1c26a39de --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-preset-list-usage.golden @@ -0,0 +1,19 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available presets. + +USAGE: + scw datawarehouse preset list [arg=value ...] + +ARGS: + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-preset-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-preset-usage.golden new file mode 100644 index 0000000000..08d010206e --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-preset-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Data Warehouse preset to help you choose the best configuration. + +USAGE: + scw datawarehouse preset + +AVAILABLE COMMANDS: + list List available presets + +FLAGS: + -h, --help help for preset + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse preset [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-usage.golden new file mode 100644 index 0000000000..1e129ab834 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-usage.golden @@ -0,0 +1,26 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Data Warehouse API. + +USAGE: + scw datawarehouse + +AVAILABLE COMMANDS: + database Database management commands + deployment Deployment management commands + endpoint Endpoint management commands + preset List available presets + user User management commands + version List available Clickhouse® versions + +FLAGS: + -h, --help help for datawarehouse + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-user-create-usage.golden new file mode 100644 index 0000000000..2f7a69aa3c --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-user-create-usage.golden @@ -0,0 +1,23 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new user for a deployment. + +USAGE: + scw datawarehouse user create [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + [name] Name of the user + [password] Password for the user + [is-admin] Indicates if the user is an administrator + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-user-delete-usage.golden new file mode 100644 index 0000000000..2cb3c3ace2 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-user-delete-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete a user from a deployment. + +USAGE: + scw datawarehouse user delete [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + name Name of the user to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-user-list-usage.golden new file mode 100644 index 0000000000..6b220976b7 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-user-list-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List users associated with a deployment. + +USAGE: + scw datawarehouse user list [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + [name] Name of the user to filter by + [order-by] Criteria to use when ordering user listings (name_asc | name_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-user-update-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-user-update-usage.golden new file mode 100644 index 0000000000..b74ec6d0f7 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-user-update-usage.golden @@ -0,0 +1,23 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update an existing user for a deployment. + +USAGE: + scw datawarehouse user update [arg=value ...] + +ARGS: + deployment-id UUID of the deployment + name Name of the user + [password] New password for the user + [is-admin] Updates the user administrator permissions + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-user-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-user-usage.golden new file mode 100644 index 0000000000..f304426e6a --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-user-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage users associated with a deployment. + +USAGE: + scw datawarehouse user + +AVAILABLE COMMANDS: + create Create a new user for a deployment + delete Delete a user from a deployment + list List users associated with a deployment + update Update an existing user for a deployment + +FLAGS: + -h, --help help for user + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse user [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-version-list-usage.golden new file mode 100644 index 0000000000..da5c20c9cb --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-version-list-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available ClickHouse® versions. + +USAGE: + scw datawarehouse version list [arg=value ...] + +ARGS: + [version] + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-datawarehouse-version-usage.golden b/cmd/scw/testdata/test-all-usage-datawarehouse-version-usage.golden new file mode 100644 index 0000000000..4d98e3b4f0 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-datawarehouse-version-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +ClickHouse® versions powering your deployment. + +USAGE: + scw datawarehouse version + +AVAILABLE COMMANDS: + list List available ClickHouse® versions + +FLAGS: + -h, --help help for version + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw datawarehouse version [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-dns-certificate-create-usage.golden b/cmd/scw/testdata/test-all-usage-dns-certificate-create-usage.golden index 3cc6bf3c09..8f198ab254 100644 --- a/cmd/scw/testdata/test-all-usage-dns-certificate-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-certificate-create-usage.golden @@ -10,7 +10,8 @@ ARGS: [alternative-dns-zones.{index}] FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-certificate-delete-usage.golden b/cmd/scw/testdata/test-all-usage-dns-certificate-delete-usage.golden index b04290dcec..abfc6094d2 100644 --- a/cmd/scw/testdata/test-all-usage-dns-certificate-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-certificate-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-certificate-get-usage.golden b/cmd/scw/testdata/test-all-usage-dns-certificate-get-usage.golden index ed98f39260..5bd24e98c1 100644 --- a/cmd/scw/testdata/test-all-usage-dns-certificate-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-certificate-get-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-certificate-list-usage.golden b/cmd/scw/testdata/test-all-usage-dns-certificate-list-usage.golden index 8bfeb612fb..803d9fc8c5 100644 --- a/cmd/scw/testdata/test-all-usage-dns-certificate-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-certificate-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [project-id] FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-dns-certificate-usage.golden index 72269a363d..a4db5bd520 100644 --- a/cmd/scw/testdata/test-all-usage-dns-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-certificate-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List a user's TLS certificates FLAGS: - -h, --help help for certificate + -h, --help help for certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-add-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-add-usage.golden index f4213f0dec..a13dc24e23 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-add-usage.golden @@ -35,7 +35,8 @@ ARGS: [view-config.views.{index}.data] FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-bulk-update-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-bulk-update-usage.golden index af8a3c796a..db9269ba9e 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-bulk-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-bulk-update-usage.golden @@ -70,7 +70,8 @@ ARGS: [serial] Use the provided serial (0) instead of the auto-increment serial FLAGS: - -h, --help help for bulk-update + -h, --help help for bulk-update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-clear-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-clear-usage.golden index 2c118e8808..a938dd029c 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-clear-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-clear-usage.golden @@ -10,7 +10,8 @@ ARGS: dns-zone DNS zone to clear FLAGS: - -h, --help help for clear + -h, --help help for clear + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-delete-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-delete-usage.golden index 5e620ec714..ffeaea81dd 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-delete-usage.golden @@ -20,7 +20,8 @@ ARGS: type (A | AAAA | CNAME | TXT | SRV | TLSA | MX | NS | PTR | CAA | ALIAS | LOC | SSHFP | HINFO | RP | URI | DS | NAPTR) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-list-nameservers-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-list-nameservers-usage.golden index 2f9ac826d1..6ab7641cb2 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-list-nameservers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-list-nameservers-usage.golden @@ -10,7 +10,8 @@ ARGS: dns-zone DNS zone on which to filter the returned DNS zone name servers FLAGS: - -h, --help help for list-nameservers + -h, --help help for list-nameservers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-list-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-list-usage.golden index fa38a249c1..90f7466e5c 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [id] Record ID on which to filter the returned DNS zone records FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-set-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-set-usage.golden index 620b198ea3..b99bc77617 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-set-usage.golden @@ -35,7 +35,8 @@ ARGS: [view-config.views.{index}.data] FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-update-nameservers-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-update-nameservers-usage.golden index 6ff2beddbe..88ef7cbffe 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-update-nameservers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-update-nameservers-usage.golden @@ -11,7 +11,8 @@ ARGS: [ns.{index}.ip.{index}] FLAGS: - -h, --help help for update-nameservers + -h, --help help for update-nameservers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-record-usage.golden b/cmd/scw/testdata/test-all-usage-dns-record-usage.golden index 4fd226171b..8e65d9b68a 100644 --- a/cmd/scw/testdata/test-all-usage-dns-record-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-record-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update-nameservers Update name servers within a DNS zone FLAGS: - -h, --help help for record + -h, --help help for record + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-tsig-key-delete-usage.golden b/cmd/scw/testdata/test-all-usage-dns-tsig-key-delete-usage.golden index 5bceaad429..e8b0c62b27 100644 --- a/cmd/scw/testdata/test-all-usage-dns-tsig-key-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-tsig-key-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-tsig-key-get-usage.golden b/cmd/scw/testdata/test-all-usage-dns-tsig-key-get-usage.golden index 3a33ba1c6b..1591061c8e 100644 --- a/cmd/scw/testdata/test-all-usage-dns-tsig-key-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-tsig-key-get-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-tsig-key-usage.golden b/cmd/scw/testdata/test-all-usage-dns-tsig-key-usage.golden index a237d25fcd..9a55122cbc 100644 --- a/cmd/scw/testdata/test-all-usage-dns-tsig-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-tsig-key-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: get Get the DNS zone's TSIG key FLAGS: - -h, --help help for tsig-key + -h, --help help for tsig-key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-usage.golden b/cmd/scw/testdata/test-all-usage-dns-usage.golden index 78219dfbf0..963d0f064c 100644 --- a/cmd/scw/testdata/test-all-usage-dns-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: zone DNS Zones management FLAGS: - -h, --help help for dns + -h, --help help for dns + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-version-diff-usage.golden b/cmd/scw/testdata/test-all-usage-dns-version-diff-usage.golden index 956d5cc328..3bf054006d 100644 --- a/cmd/scw/testdata/test-all-usage-dns-version-diff-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-version-diff-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone-version-id FLAGS: - -h, --help help for diff + -h, --help help for diff + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-dns-version-list-usage.golden index 7cafafea10..701d882bef 100644 --- a/cmd/scw/testdata/test-all-usage-dns-version-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-version-list-usage.golden @@ -10,7 +10,8 @@ ARGS: dns-zone FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-version-restore-usage.golden b/cmd/scw/testdata/test-all-usage-dns-version-restore-usage.golden index 0a50f750c4..db34f2bec6 100644 --- a/cmd/scw/testdata/test-all-usage-dns-version-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-version-restore-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone-version-id FLAGS: - -h, --help help for restore + -h, --help help for restore + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-version-show-usage.golden b/cmd/scw/testdata/test-all-usage-dns-version-show-usage.golden index e37f6a9e86..c498755830 100644 --- a/cmd/scw/testdata/test-all-usage-dns-version-show-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-version-show-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-zone-version-id FLAGS: - -h, --help help for show + -h, --help help for show + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-version-usage.golden b/cmd/scw/testdata/test-all-usage-dns-version-usage.golden index fabd81296a..24fd9dedd7 100644 --- a/cmd/scw/testdata/test-all-usage-dns-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-version-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: show List records from a given version of a specific DNS zone FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-clone-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-clone-usage.golden index 57c0dc4873..eaadad989c 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-clone-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-clone-usage.golden @@ -12,7 +12,8 @@ ARGS: [project-id] Project ID of the destination DNS zone FLAGS: - -h, --help help for clone + -h, --help help for clone + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-create-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-create-usage.golden index 40dd538d2f..5f6653c9f8 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-delete-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-delete-usage.golden index 441943593e..98cf668ffb 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-export-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-export-usage.golden index eb53a9b141..0bdf37f54d 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-export-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-export-usage.golden @@ -10,7 +10,8 @@ ARGS: [format=bind] DNS zone format (unknown_raw_format | bind) FLAGS: - -h, --help help for export + -h, --help help for export + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-import-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-import-usage.golden index fef2387ee3..a9f670d5d6 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-import-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-import-usage.golden @@ -19,7 +19,8 @@ DEPRECATED ARGS: [format] (unknown_raw_format | bind) FLAGS: - -h, --help help for import + -h, --help help for import + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-list-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-list-usage.golden index 79e646d224..ac2c7a4ef4 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-list-usage.golden @@ -20,7 +20,8 @@ DEPRECATED ARGS: [dns-zone] DNS zone on which to filter the returned DNS zones FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-refresh-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-refresh-usage.golden index cb55cfc556..ed881bb891 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-refresh-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-refresh-usage.golden @@ -12,7 +12,8 @@ ARGS: [recreate-sub-dns-zone] Specifies whether or not to recreate the sub DNS zone FLAGS: - -h, --help help for refresh + -h, --help help for refresh + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-update-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-update-usage.golden index 4a1752120e..3fc9b382f5 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-dns-zone-usage.golden b/cmd/scw/testdata/test-all-usage-dns-zone-usage.golden index 0dd1a1b091..b18ef0372b 100644 --- a/cmd/scw/testdata/test-all-usage-dns-zone-usage.golden +++ b/cmd/scw/testdata/test-all-usage-dns-zone-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update Update a DNS zone FLAGS: - -h, --help help for zone + -h, --help help for zone + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-create-usage.golden index e26e7d9e46..415f40571f 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-create-usage.golden @@ -6,21 +6,20 @@ USAGE: scw edge-services backend-stage create [arg=value ...] ARGS: - [scaleway-s3.bucket-name] Name of the Bucket - [scaleway-s3.bucket-region] Region of the Bucket - [scaleway-s3.is-website] Defines whether the bucket website feature is enabled - [scaleway-lb.lbs.{index}.id] ID of the Load Balancer - [scaleway-lb.lbs.{index}.zone] Zone of the Load Balancer - [scaleway-lb.lbs.{index}.frontend-id] ID of the frontend linked to the Load Balancer - [scaleway-lb.lbs.{index}.is-ssl] Defines whether the Load Balancer's frontend handles SSL connections - [scaleway-lb.lbs.{index}.domain-name] Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer - [scaleway-lb.lbs.{index}.has-websocket] Defines whether to forward websocket requests to the load balancer - pipeline-id Pipeline ID the Backend stage belongs to - [scaleway-serverless-container.region] - [scaleway-serverless-container.container-id] + [scaleway-s3.bucket-name] Name of the Bucket + [scaleway-s3.bucket-region] Region of the Bucket + [scaleway-s3.is-website] Defines whether the bucket website feature is enabled + [scaleway-lb.lbs.{index}.id] ID of the Load Balancer + [scaleway-lb.lbs.{index}.zone] Zone of the Load Balancer + [scaleway-lb.lbs.{index}.frontend-id] ID of the frontend linked to the Load Balancer + [scaleway-lb.lbs.{index}.is-ssl] Defines whether the Load Balancer's frontend handles SSL connections + [scaleway-lb.lbs.{index}.domain-name] Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer + [scaleway-lb.lbs.{index}.has-websocket] Defines whether to forward websocket requests to the load balancer + pipeline-id Pipeline ID the Backend stage belongs to FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-delete-usage.golden index 2f8a81426e..e9a30cc1c2 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: backend-stage-id ID of the backend stage to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-get-usage.golden index c56bce9347..cbcf328cd1 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-get-usage.golden @@ -9,7 +9,8 @@ ARGS: backend-stage-id ID of the requested backend stage FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-list-usage.golden index 59f4a65282..17e00326b6 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [lb-id] Load Balancer ID to filter for. Only backend stages with this Load Balancer will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-update-usage.golden index af84676f11..ba8fa3122b 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-update-usage.golden @@ -6,22 +6,21 @@ USAGE: scw edge-services backend-stage update [arg=value ...] ARGS: - backend-stage-id ID of the backend stage to update - [scaleway-s3.bucket-name] Name of the Bucket - [scaleway-s3.bucket-region] Region of the Bucket - [scaleway-s3.is-website] Defines whether the bucket website feature is enabled - [scaleway-lb.lbs.{index}.id] ID of the Load Balancer - [scaleway-lb.lbs.{index}.zone] Zone of the Load Balancer - [scaleway-lb.lbs.{index}.frontend-id] ID of the frontend linked to the Load Balancer - [scaleway-lb.lbs.{index}.is-ssl] Defines whether the Load Balancer's frontend handles SSL connections - [scaleway-lb.lbs.{index}.domain-name] Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer - [scaleway-lb.lbs.{index}.has-websocket] Defines whether to forward websocket requests to the load balancer - [pipeline-id] Pipeline ID the Backend stage belongs to - [scaleway-serverless-container.region] - [scaleway-serverless-container.container-id] + backend-stage-id ID of the backend stage to update + [scaleway-s3.bucket-name] Name of the Bucket + [scaleway-s3.bucket-region] Region of the Bucket + [scaleway-s3.is-website] Defines whether the bucket website feature is enabled + [scaleway-lb.lbs.{index}.id] ID of the Load Balancer + [scaleway-lb.lbs.{index}.zone] Zone of the Load Balancer + [scaleway-lb.lbs.{index}.frontend-id] ID of the frontend linked to the Load Balancer + [scaleway-lb.lbs.{index}.is-ssl] Defines whether the Load Balancer's frontend handles SSL connections + [scaleway-lb.lbs.{index}.domain-name] Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer + [scaleway-lb.lbs.{index}.has-websocket] Defines whether to forward websocket requests to the load balancer + [pipeline-id] Pipeline ID the Backend stage belongs to FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-usage.golden index 3caa12a3f6..7c2e2b9fd4 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-backend-stage-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update backend stage FLAGS: - -h, --help help for backend-stage + -h, --help help for backend-stage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-create-usage.golden index 3ab177668d..9526c1e931 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [route-stage-id] FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-delete-usage.golden index df9e63cd22..f9a68bdf8f 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: cache-stage-id ID of the cache stage to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-get-usage.golden index 47d7dfa52c..0f62a0a12f 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-get-usage.golden @@ -9,7 +9,8 @@ ARGS: cache-stage-id ID of the requested cache stage FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-list-usage.golden index 8fd72eb01f..26841fe151 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-list-usage.golden @@ -10,7 +10,8 @@ ARGS: pipeline-id Pipeline ID to filter for. Only cache stages from this pipeline will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-update-usage.golden index e108812c88..021ffb912e 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [route-stage-id] FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-usage.golden index 91964263df..2f474efcb1 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-cache-stage-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update cache stage FLAGS: - -h, --help help for cache-stage + -h, --help help for cache-stage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-create-usage.golden index f7a4e471da..ba7ca11d1b 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-create-usage.golden @@ -13,7 +13,8 @@ ARGS: pipeline-id Pipeline ID the DNS stage belongs to FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-delete-usage.golden index d1067eefb2..9934dbfbf5 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-stage-id ID of the DNS stage to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-get-usage.golden index 32f0ba8690..df4114cfd8 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-get-usage.golden @@ -9,7 +9,8 @@ ARGS: dns-stage-id ID of the requested DNS stage FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-list-usage.golden index b2969a94d4..47f80bbf97 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [fqdn] Fully Qualified Domain Name to filter for (in the format subdomain.example.com). Only DNS stages with this FQDN will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-update-usage.golden index 58873f9f54..480facc217 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [backend-stage-id] Backend stage ID the DNS stage will be linked to FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-usage.golden index a8678e7a6d..424f0d9586 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-dns-stage-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update DNS stage FLAGS: - -h, --help help for dns-stage + -h, --help help for dns-stage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-create-usage.golden index cca3b8de86..27df7284c6 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-create-usage.golden @@ -11,7 +11,8 @@ ARGS: description Description of the pipeline FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-delete-usage.golden index 2842ebc6fd..c097928513 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: pipeline-id ID of the pipeline to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-get-usage.golden index fe03d98073..e8d475d1ef 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-get-usage.golden @@ -9,7 +9,8 @@ ARGS: pipeline-id ID of the requested pipeline FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-head-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-head-usage.golden new file mode 100644 index 0000000000..36cdf7a0e5 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-head-usage.golden @@ -0,0 +1,19 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List Head stage for your pipeline. + +USAGE: + scw edge-services pipeline list-head [arg=value ...] + +ARGS: + pipeline-id ID of the pipeline to update + +FLAGS: + -h, --help help for list-head + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-usage.golden index b9b8310aa6..66feee43bc 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [organization-id] Organization ID to filter for. Only pipelines from this Organization will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-set-head-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-set-head-usage.golden new file mode 100644 index 0000000000..6d283f569b --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-set-head-usage.golden @@ -0,0 +1,23 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +You must specify either a `add_new_head_stage` (to add a new head stage), `remove_head_stage` (to remove a head stage) or `swap_head_stage` (to replace a head stage). + +USAGE: + scw edge-services pipeline set-head [arg=value ...] + +ARGS: + pipeline-id ID of the pipeline to update + [add-new-head-stage.new-stage-id] + [remove-head-stage.remove-stage-id] + [swap-head-stage.new-stage-id] + [swap-head-stage.current-stage-id] + +FLAGS: + -h, --help help for set-head + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-update-usage.golden index b2ab38ee92..e7686cdccf 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [description] Description of the pipeline FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-usage.golden index 0c75ce4bb0..f1d1122d75 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-pipeline-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-pipeline-usage.golden @@ -10,10 +10,13 @@ AVAILABLE COMMANDS: delete Delete pipeline get Get pipeline list List pipelines + list-head List Head stage for your pipeline. + set-head Configure a entry point to your pipeline. You must specify a `head stage` to form a stage-chain that goes all the way to the backend stage (origin), so the HTTP request will be processed according to the stages you created. update Update pipeline FLAGS: - -h, --help help for pipeline + -h, --help help for pipeline + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-create-usage.golden index ceddb54418..fb28f689c9 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [all] Defines whether to purge all content FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-get-usage.golden index 75f9b183d6..77b53dded4 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-get-usage.golden @@ -9,7 +9,8 @@ ARGS: purge-request-id ID of the requested purge request FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-list-usage.golden index 81c29d2ba3..066979829a 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [organization-id] Organization ID to filter for. Only purge requests from this Project will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-usage.golden index 8b0fe91528..4ba99d66cd 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-purge-request-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-purge-request-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List purge requests FLAGS: - -h, --help help for purge-request + -h, --help help for purge-request + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-add-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-add-usage.golden index 9680ec8998..f3b9d091fb 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-add-usage.golden @@ -15,7 +15,8 @@ ARGS: [before-position] Add rules before the given position FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-edit-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-edit-usage.golden new file mode 100644 index 0000000000..8619e2258f --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-edit-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Edit all route rules of a route stage. + +If backend-stage-id is provided, the editor will only show rule_http_match fields and the specified backend will be applied to all rules automatically. +Otherwise, opens the editor with full rules including backend_stage_id for each rule. + +USAGE: + scw edge-services route-rules edit [arg=value ...] + +ARGS: + route-stage-id ID of the route stage to edit + [backend-stage-id] ID of the backend stage to apply to all rules (simplifies editing when using a single backend) + [mode=yaml] marshaling used when editing data (yaml | json) + +FLAGS: + -h, --help help for edit + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-list-usage.golden index 1c5bba6f24..06884beefd 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-list-usage.golden @@ -9,7 +9,8 @@ ARGS: route-stage-id Route stage ID to filter for. Only route rules from this route stage will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-set-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-set-usage.golden index 0e0f5e48d7..cbf4eaa360 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-set-usage.golden @@ -13,7 +13,8 @@ ARGS: [route-rules.{index}.backend-stage-id] ID of the backend stage that requests matching the rule should be forwarded to FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.cassette.yaml b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.cassette.yaml new file mode 100644 index 0000000000..e06356e01d --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.cassette.yaml @@ -0,0 +1,44 @@ +--- +version: 1 +interactions: +- request: + body: '{"access_key":"SCW7DJXHG04SGMT342RA", "secret_key":null, "description":"Generated + by the Scaleway CLI", "created_at":"2025-06-27T14:00:16.810892Z", "updated_at":"2025-06-27T14:00:16.810892Z", + "expires_at":null, "default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "editable":true, "deletable":true, "managed":false, "creation_ip":"130.180.219.188", + "user_id":"4fcf3b56-3e90-4461-8198-dcf85c2699d6"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.35.0.20251209111654-44f4a1dfc432 (go1.25.3; darwin; + arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW7DJXHG04SGMT342RA + method: GET + response: + body: '{"access_key":"SCW7DJXHG04SGMT342RA", "secret_key":null, "description":"Generated + by the Scaleway CLI", "created_at":"2025-06-27T14:00:16.810892Z", "updated_at":"2025-06-27T14:00:16.810892Z", + "expires_at":null, "default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "editable":true, "deletable":true, "managed":false, "creation_ip":"130.180.219.188", + "user_id":"4fcf3b56-3e90-4461-8198-dcf85c2699d6"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 Dec 2025 08:05:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba6fd727-2477-4988-adf1-6e57f8878a8c + status: 200 OK + code: 200 + duration: "" diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.golden index 58d8519105..46c6f31daa 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-rules-usage.golden @@ -7,11 +7,13 @@ USAGE: AVAILABLE COMMANDS: add Add route rules + edit Edit all route rules of a route stage list List route rules set Set route rules FLAGS: - -h, --help help for route-rules + -h, --help help for route-rules + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-create-usage.golden index a6bced5953..d4351cf073 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-create-usage.golden @@ -10,7 +10,8 @@ ARGS: [waf-stage-id] ID of the WAF stage HTTP requests should be forwarded to when no rules are matched FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-delete-usage.golden index f9f30ab68e..402433da72 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: route-stage-id ID of the route stage to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-get-usage.golden index 2f5eaa5e97..1955b715b8 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-get-usage.golden @@ -9,7 +9,8 @@ ARGS: route-stage-id ID of the requested route stage FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-list-usage.golden index 2546060abd..7cdd5fda83 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-list-usage.golden @@ -10,7 +10,8 @@ ARGS: pipeline-id Pipeline ID to filter for. Only route stages from this pipeline will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-update-usage.golden index 7d8a61a8c0..b98c1ab051 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-update-usage.golden @@ -10,7 +10,8 @@ ARGS: [waf-stage-id] ID of the WAF stage HTTP requests should be forwarded to when no rules are matched FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-usage.golden index dc9a9713f6..b1cd6eee25 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-route-stage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-route-stage-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update route stage FLAGS: - -h, --help help for route-stage + -h, --help help for route-stage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-create-usage.golden index 50ad2dd1f9..41bbaaf95e 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-create-usage.golden @@ -16,7 +16,8 @@ ARGS: [waf-stage-id] FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-delete-usage.golden index 0db04f364b..032c3e2efe 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: tls-stage-id ID of the TLS stage to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-get-usage.golden index 99e4fef441..13e8c45840 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-get-usage.golden @@ -9,7 +9,8 @@ ARGS: tls-stage-id ID of the requested TLS stage FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-list-usage.golden index d59b2aeb7c..39ffda2a6f 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [secret-region] Secret region to filter for. Only TLS stages with a Secret in this region will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-update-usage.golden index 7fc8e31ab1..19685a24bc 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [waf-stage-id] FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-usage.golden index df9c4b0114..1da6d6bc0e 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-tls-stage-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update TLS stage FLAGS: - -h, --help help for tls-stage + -h, --help help for tls-stage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-usage.golden index f179f445d8..b0f9adc408 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: waf-stage WAF-stage management commands FLAGS: - -h, --help help for edge-services + -h, --help help for edge-services + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-create-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-create-usage.golden index ce34e71125..3726cab661 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [backend-stage-id] ID of the backend stage to forward requests to after the WAF stage FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-delete-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-delete-usage.golden index 70c23d84de..8058e098b8 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: waf-stage-id ID of the WAF stage to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-get-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-get-usage.golden index 367f8d4bf4..2c7a362864 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-get-usage.golden @@ -9,7 +9,8 @@ ARGS: waf-stage-id ID of the requested WAF stage FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-list-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-list-usage.golden index 6992284718..5e29cac12c 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-list-usage.golden @@ -10,7 +10,8 @@ ARGS: pipeline-id Pipeline ID to filter for. Only WAF stages from this pipeline will be returned FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-update-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-update-usage.golden index 2b3324a43f..e219b64bb1 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [backend-stage-id] ID of the backend stage to forward requests to after the WAF stage FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-usage.golden b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-usage.golden index 960ab79a99..dd19715d1e 100644 --- a/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-usage.golden +++ b/cmd/scw/testdata/test-all-usage-edge-services-waf-stage-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update WAF stage FLAGS: - -h, --help help for waf-stage + -h, --help help for waf-stage + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-feedback-bug-usage.golden b/cmd/scw/testdata/test-all-usage-feedback-bug-usage.golden index 25b7d955b4..e035441b87 100644 --- a/cmd/scw/testdata/test-all-usage-feedback-bug-usage.golden +++ b/cmd/scw/testdata/test-all-usage-feedback-bug-usage.golden @@ -6,7 +6,8 @@ USAGE: scw feedback bug FLAGS: - -h, --help help for bug + -h, --help help for bug + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-feedback-feature-usage.golden b/cmd/scw/testdata/test-all-usage-feedback-feature-usage.golden index 469ea0fcc9..9257774944 100644 --- a/cmd/scw/testdata/test-all-usage-feedback-feature-usage.golden +++ b/cmd/scw/testdata/test-all-usage-feedback-feature-usage.golden @@ -6,7 +6,8 @@ USAGE: scw feedback feature FLAGS: - -h, --help help for feature + -h, --help help for feature + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-feedback-usage.golden b/cmd/scw/testdata/test-all-usage-feedback-usage.golden index fb2c536173..980ab726d7 100644 --- a/cmd/scw/testdata/test-all-usage-feedback-usage.golden +++ b/cmd/scw/testdata/test-all-usage-feedback-usage.golden @@ -10,7 +10,8 @@ UTILITY COMMANDS: feature Send a feature request FLAGS: - -h, --help help for feedback + -h, --help help for feedback + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-attachment-list-usage.golden b/cmd/scw/testdata/test-all-usage-file-attachment-list-usage.golden index 188e8a0b6c..714a6ccf4a 100644 --- a/cmd/scw/testdata/test-all-usage-file-attachment-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-attachment-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-attachment-usage.golden b/cmd/scw/testdata/test-all-usage-file-attachment-usage.golden index 0068f16836..664c843d6b 100644 --- a/cmd/scw/testdata/test-all-usage-file-attachment-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-attachment-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List filesystems attachments FLAGS: - -h, --help help for attachment + -h, --help help for attachment + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-filesystem-create-usage.golden b/cmd/scw/testdata/test-all-usage-file-filesystem-create-usage.golden index 26066d0b1c..d23c85a616 100644 --- a/cmd/scw/testdata/test-all-usage-file-filesystem-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-filesystem-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-filesystem-delete-usage.golden b/cmd/scw/testdata/test-all-usage-file-filesystem-delete-usage.golden index 86e3110ea3..500334bd32 100644 --- a/cmd/scw/testdata/test-all-usage-file-filesystem-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-filesystem-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-filesystem-get-usage.golden b/cmd/scw/testdata/test-all-usage-file-filesystem-get-usage.golden index 047779213d..f73dc4a45d 100644 --- a/cmd/scw/testdata/test-all-usage-file-filesystem-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-filesystem-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-filesystem-list-usage.golden b/cmd/scw/testdata/test-all-usage-file-filesystem-list-usage.golden index 60d136dba5..9dee73023b 100644 --- a/cmd/scw/testdata/test-all-usage-file-filesystem-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-filesystem-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-filesystem-update-usage.golden b/cmd/scw/testdata/test-all-usage-file-filesystem-update-usage.golden index a433051874..db5d25d39d 100644 --- a/cmd/scw/testdata/test-all-usage-file-filesystem-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-filesystem-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-filesystem-usage.golden b/cmd/scw/testdata/test-all-usage-file-filesystem-usage.golden index 1a1e498392..2e3bfa4aaf 100644 --- a/cmd/scw/testdata/test-all-usage-file-filesystem-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-filesystem-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update filesystem properties FLAGS: - -h, --help help for filesystem + -h, --help help for filesystem + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-file-usage.golden b/cmd/scw/testdata/test-all-usage-file-usage.golden index 978c7b8fd5..43e160e271 100644 --- a/cmd/scw/testdata/test-all-usage-file-usage.golden +++ b/cmd/scw/testdata/test-all-usage-file-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: filesystem Filesystem management FLAGS: - -h, --help help for file + -h, --help help for file + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-attach-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-attach-usage.golden index 4b27dcbad5..dd8ad2cf34 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-attach-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-attach-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for attach + -h, --help help for attach + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-create-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-create-usage.golden index b7370ad54d..c1fd7bfed3 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-create-usage.golden @@ -15,8 +15,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the ip is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the ip is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-delete-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-delete-usage.golden index f9e6e33f90..664322a581 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-detach-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-detach-usage.golden index 0f51399011..6754b1d162 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-detach-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-detach-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for detach + -h, --help help for detach + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-get-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-get-usage.golden index b22056d274..09a3a713e3 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-list-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-list-usage.golden index 20bc5a9185..d5c49a2805 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-update-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-update-usage.golden index ee4edeb95b..663497eb17 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-ip-usage.golden b/cmd/scw/testdata/test-all-usage-fip-ip-usage.golden index ecbe788261..f5ba9f6700 100644 --- a/cmd/scw/testdata/test-all-usage-fip-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-ip-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update Update an existing flexible IP FLAGS: - -h, --help help for ip + -h, --help help for ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-mac-create-usage.golden b/cmd/scw/testdata/test-all-usage-fip-mac-create-usage.golden index 0674354b4e..2c7c07e497 100644 --- a/cmd/scw/testdata/test-all-usage-fip-mac-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-mac-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-mac-delete-usage.golden b/cmd/scw/testdata/test-all-usage-fip-mac-delete-usage.golden index f4e83e13da..228378e6c7 100644 --- a/cmd/scw/testdata/test-all-usage-fip-mac-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-mac-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-mac-duplicate-usage.golden b/cmd/scw/testdata/test-all-usage-fip-mac-duplicate-usage.golden index 4d1eb3b3ce..356eeea019 100644 --- a/cmd/scw/testdata/test-all-usage-fip-mac-duplicate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-mac-duplicate-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for duplicate + -h, --help help for duplicate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-mac-move-usage.golden b/cmd/scw/testdata/test-all-usage-fip-mac-move-usage.golden index 5658a135f2..c1341a2b7d 100644 --- a/cmd/scw/testdata/test-all-usage-fip-mac-move-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-mac-move-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for move + -h, --help help for move + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-mac-usage.golden b/cmd/scw/testdata/test-all-usage-fip-mac-usage.golden index 9566227c69..c2816ca007 100644 --- a/cmd/scw/testdata/test-all-usage-fip-mac-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-mac-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: move Relocate an existing virtual MAC address to a different flexible IP FLAGS: - -h, --help help for mac + -h, --help help for mac + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-fip-usage.golden b/cmd/scw/testdata/test-all-usage-fip-usage.golden index 1198428ce0..4160d670a2 100644 --- a/cmd/scw/testdata/test-all-usage-fip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-fip-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: mac MAC address management commands FLAGS: - -h, --help help for fip + -h, --help help for fip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-cron-create-usage.golden b/cmd/scw/testdata/test-all-usage-function-cron-create-usage.golden index 4d18e3e9c5..7123dca92d 100644 --- a/cmd/scw/testdata/test-all-usage-function-cron-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-cron-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-cron-delete-usage.golden b/cmd/scw/testdata/test-all-usage-function-cron-delete-usage.golden index d024c1557b..81dad55a00 100644 --- a/cmd/scw/testdata/test-all-usage-function-cron-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-cron-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-cron-get-usage.golden b/cmd/scw/testdata/test-all-usage-function-cron-get-usage.golden index 2d91e426af..7444b11237 100644 --- a/cmd/scw/testdata/test-all-usage-function-cron-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-cron-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-cron-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-cron-list-usage.golden index 8d37110258..caff88a46d 100644 --- a/cmd/scw/testdata/test-all-usage-function-cron-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-cron-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-cron-update-usage.golden b/cmd/scw/testdata/test-all-usage-function-cron-update-usage.golden index 59b8a4e9e1..884cb818c5 100644 --- a/cmd/scw/testdata/test-all-usage-function-cron-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-cron-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-cron-usage.golden b/cmd/scw/testdata/test-all-usage-function-cron-usage.golden index d65533d154..e71c3b39e4 100644 --- a/cmd/scw/testdata/test-all-usage-function-cron-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-cron-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an existing cron FLAGS: - -h, --help help for cron + -h, --help help for cron + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-deploy-usage.golden b/cmd/scw/testdata/test-all-usage-function-deploy-usage.golden index a3b5b84ca8..02b011f8cd 100644 --- a/cmd/scw/testdata/test-all-usage-function-deploy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-deploy-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for deploy + -h, --help help for deploy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-domain-create-usage.golden b/cmd/scw/testdata/test-all-usage-function-domain-create-usage.golden index 11ea6eb2bb..64676aaeb1 100644 --- a/cmd/scw/testdata/test-all-usage-function-domain-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-domain-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-domain-delete-usage.golden b/cmd/scw/testdata/test-all-usage-function-domain-delete-usage.golden index 58f1abc872..10d14d072d 100644 --- a/cmd/scw/testdata/test-all-usage-function-domain-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-domain-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-domain-get-usage.golden b/cmd/scw/testdata/test-all-usage-function-domain-get-usage.golden index e15289c555..57ef47b0dd 100644 --- a/cmd/scw/testdata/test-all-usage-function-domain-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-domain-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-domain-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-domain-list-usage.golden index 6771ddd4fe..6ce9cc366e 100644 --- a/cmd/scw/testdata/test-all-usage-function-domain-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-domain-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-domain-usage.golden b/cmd/scw/testdata/test-all-usage-function-domain-usage.golden index 04367ea0c8..42efc95373 100644 --- a/cmd/scw/testdata/test-all-usage-function-domain-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-domain-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List all domain name bindings FLAGS: - -h, --help help for domain + -h, --help help for domain + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-create-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-create-usage.golden index 5a60902858..94678706d3 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-create-usage.golden @@ -26,7 +26,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-delete-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-delete-usage.golden index 8df3484e03..aefad68c8d 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-deploy-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-deploy-usage.golden index 8dd2bf32ee..6f11ce5b33 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-deploy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-deploy-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for deploy + -h, --help help for deploy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-get-download-url-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-get-download-url-usage.golden index f4a335f9ff..8c4373e21a 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-get-download-url-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-get-download-url-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get-download-url + -h, --help help for get-download-url + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-get-upload-url-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-get-upload-url-usage.golden index 8eb2087fa5..3f5307378d 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-get-upload-url-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-get-upload-url-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get-upload-url + -h, --help help for get-upload-url + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-get-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-get-usage.golden index e5ceece32b..b6c262c591 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-list-usage.golden index 9a278beb7f..ffabc298db 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-update-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-update-usage.golden index b5840d8d6e..17a8ee45cb 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-update-usage.golden @@ -29,7 +29,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-function-usage.golden b/cmd/scw/testdata/test-all-usage-function-function-usage.golden index a6f30d7ebd..acc92ec8a5 100644 --- a/cmd/scw/testdata/test-all-usage-function-function-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-function-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update Update an existing function FLAGS: - -h, --help help for function + -h, --help help for function + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-namespace-create-usage.golden b/cmd/scw/testdata/test-all-usage-function-namespace-create-usage.golden index 1f555926fb..1f512a5635 100644 --- a/cmd/scw/testdata/test-all-usage-function-namespace-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-namespace-create-usage.golden @@ -19,7 +19,8 @@ DEPRECATED ARGS: [activate-vpc-integration] [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC. FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-namespace-delete-usage.golden b/cmd/scw/testdata/test-all-usage-function-namespace-delete-usage.golden index a9eb5a40c0..7ce9d41adc 100644 --- a/cmd/scw/testdata/test-all-usage-function-namespace-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-namespace-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-namespace-get-usage.golden b/cmd/scw/testdata/test-all-usage-function-namespace-get-usage.golden index 12fcde0af5..ae1daf1d01 100644 --- a/cmd/scw/testdata/test-all-usage-function-namespace-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-namespace-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-namespace-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-namespace-list-usage.golden index b8bbd1569d..9e97efdb91 100644 --- a/cmd/scw/testdata/test-all-usage-function-namespace-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-namespace-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-namespace-update-usage.golden b/cmd/scw/testdata/test-all-usage-function-namespace-update-usage.golden index c8f3a1394d..0dcd07b751 100644 --- a/cmd/scw/testdata/test-all-usage-function-namespace-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-namespace-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-namespace-usage.golden b/cmd/scw/testdata/test-all-usage-function-namespace-usage.golden index cea70255e8..e9789249af 100644 --- a/cmd/scw/testdata/test-all-usage-function-namespace-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-namespace-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an existing namespace FLAGS: - -h, --help help for namespace + -h, --help help for namespace + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-runtime-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-runtime-list-usage.golden index 1f8e58e052..92ed6fdadb 100644 --- a/cmd/scw/testdata/test-all-usage-function-runtime-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-runtime-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-runtime-usage.golden b/cmd/scw/testdata/test-all-usage-function-runtime-usage.golden index 4ca526acde..f07d064103 100644 --- a/cmd/scw/testdata/test-all-usage-function-runtime-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-runtime-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List function runtimes FLAGS: - -h, --help help for runtime + -h, --help help for runtime + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-token-create-usage.golden b/cmd/scw/testdata/test-all-usage-function-token-create-usage.golden index d5f7d98108..598fc86811 100644 --- a/cmd/scw/testdata/test-all-usage-function-token-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-token-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-token-delete-usage.golden b/cmd/scw/testdata/test-all-usage-function-token-delete-usage.golden index bacef7b9de..691f70ad9a 100644 --- a/cmd/scw/testdata/test-all-usage-function-token-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-token-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-token-get-usage.golden b/cmd/scw/testdata/test-all-usage-function-token-get-usage.golden index deeafc3156..914d4cc1f6 100644 --- a/cmd/scw/testdata/test-all-usage-function-token-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-token-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-token-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-token-list-usage.golden index f788ea8492..740f13c1de 100644 --- a/cmd/scw/testdata/test-all-usage-function-token-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-token-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-token-usage.golden b/cmd/scw/testdata/test-all-usage-function-token-usage.golden index 23824f92f4..c737fae7a7 100644 --- a/cmd/scw/testdata/test-all-usage-function-token-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-token-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List all tokens FLAGS: - -h, --help help for token + -h, --help help for token + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-trigger-create-usage.golden b/cmd/scw/testdata/test-all-usage-function-trigger-create-usage.golden index daf7917e1e..92edc4becc 100644 --- a/cmd/scw/testdata/test-all-usage-function-trigger-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-trigger-create-usage.golden @@ -19,7 +19,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-trigger-delete-usage.golden b/cmd/scw/testdata/test-all-usage-function-trigger-delete-usage.golden index 19795ca61a..b349c310c3 100644 --- a/cmd/scw/testdata/test-all-usage-function-trigger-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-trigger-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-trigger-get-usage.golden b/cmd/scw/testdata/test-all-usage-function-trigger-get-usage.golden index 710ca1c03e..87cdc8a348 100644 --- a/cmd/scw/testdata/test-all-usage-function-trigger-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-trigger-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-trigger-list-usage.golden b/cmd/scw/testdata/test-all-usage-function-trigger-list-usage.golden index aefcf00f27..084f6232c0 100644 --- a/cmd/scw/testdata/test-all-usage-function-trigger-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-trigger-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-trigger-update-usage.golden b/cmd/scw/testdata/test-all-usage-function-trigger-update-usage.golden index b9f66c30c5..1c5dac16af 100644 --- a/cmd/scw/testdata/test-all-usage-function-trigger-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-trigger-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-trigger-usage.golden b/cmd/scw/testdata/test-all-usage-function-trigger-usage.golden index bc1770d0c0..2d17fce5c7 100644 --- a/cmd/scw/testdata/test-all-usage-function-trigger-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-trigger-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a trigger FLAGS: - -h, --help help for trigger + -h, --help help for trigger + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-function-usage.golden b/cmd/scw/testdata/test-all-usage-function-usage.golden index 75242f37eb..a46f8b49ac 100644 --- a/cmd/scw/testdata/test-all-usage-function-usage.golden +++ b/cmd/scw/testdata/test-all-usage-function-usage.golden @@ -18,7 +18,8 @@ WORKFLOW COMMANDS: deploy Deploy a function FLAGS: - -h, --help help for function + -h, --help help for function + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-help-date-usage.golden b/cmd/scw/testdata/test-all-usage-help-date-usage.golden index ee1b5365fb..c9eaed9fc2 100644 --- a/cmd/scw/testdata/test-all-usage-help-date-usage.golden +++ b/cmd/scw/testdata/test-all-usage-help-date-usage.golden @@ -36,7 +36,8 @@ USAGE: scw help date FLAGS: - -h, --help help for date + -h, --help help for date + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-help-output-usage.golden b/cmd/scw/testdata/test-all-usage-help-output-usage.golden index a20a3e43f5..6e2a79e26a 100644 --- a/cmd/scw/testdata/test-all-usage-help-output-usage.golden +++ b/cmd/scw/testdata/test-all-usage-help-output-usage.golden @@ -84,7 +84,8 @@ USAGE: scw help output FLAGS: - -h, --help help for output + -h, --help help for output + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-help-usage.golden b/cmd/scw/testdata/test-all-usage-help-usage.golden index f06e7964ff..8830eee6ca 100644 --- a/cmd/scw/testdata/test-all-usage-help-usage.golden +++ b/cmd/scw/testdata/test-all-usage-help-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: output Get help about how the CLI output works FLAGS: - -h, --help help for help + -h, --help help for help + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-api-key-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-api-key-create-usage.golden index 9ec2c75c2a..1f6e470bdb 100644 --- a/cmd/scw/testdata/test-all-usage-iam-api-key-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-api-key-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [description] Description of the API key (max length is 200 characters) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-api-key-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-api-key-delete-usage.golden index a4b84d1dac..7909032618 100644 --- a/cmd/scw/testdata/test-all-usage-iam-api-key-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-api-key-delete-usage.golden @@ -13,7 +13,8 @@ ARGS: access-key Access key to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-api-key-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-api-key-get-usage.golden index 84b0b123d9..635de62627 100644 --- a/cmd/scw/testdata/test-all-usage-iam-api-key-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-api-key-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [with-policies=true] Display the set of policies associated with the API key FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-api-key-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-api-key-list-usage.golden index a8c9bc51b8..b76f685b4d 100644 --- a/cmd/scw/testdata/test-all-usage-iam-api-key-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-api-key-list-usage.golden @@ -21,7 +21,8 @@ DEPRECATED ARGS: [access-key] Filter by access key (deprecated in favor of `access_keys`) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-api-key-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-api-key-update-usage.golden index 5a3ffe4cbf..8513f5b304 100644 --- a/cmd/scw/testdata/test-all-usage-iam-api-key-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-api-key-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [expires-at] New expiration date of the API key FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-api-key-usage.golden b/cmd/scw/testdata/test-all-usage-iam-api-key-usage.golden index 253077c20d..32c986e67f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-api-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-api-key-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an API key FLAGS: - -h, --help help for api-key + -h, --help help for api-key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-application-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-application-create-usage.golden index e06bb5d710..9b727cef09 100644 --- a/cmd/scw/testdata/test-all-usage-iam-application-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-application-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-application-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-application-delete-usage.golden index 9990c0248d..44b260bada 100644 --- a/cmd/scw/testdata/test-all-usage-iam-application-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-application-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: application-id ID of the application to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-application-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-application-get-usage.golden index 8d23933f3e..450c569625 100644 --- a/cmd/scw/testdata/test-all-usage-iam-application-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-application-get-usage.golden @@ -9,7 +9,8 @@ ARGS: application-id ID of the application to find FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-application-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-application-list-usage.golden index 67412feac1..a76a0ac5b0 100644 --- a/cmd/scw/testdata/test-all-usage-iam-application-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-application-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [organization-id=] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-application-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-application-update-usage.golden index b26a216522..1affc688b1 100644 --- a/cmd/scw/testdata/test-all-usage-iam-application-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-application-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [tags.{index}] New tags for the application (maximum of 10 tags) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-application-usage.golden b/cmd/scw/testdata/test-all-usage-iam-application-usage.golden index ad25a55e3e..0b97d5a800 100644 --- a/cmd/scw/testdata/test-all-usage-iam-application-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-application-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an application FLAGS: - -h, --help help for application + -h, --help help for application + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-add-member-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-add-member-usage.golden index 0e06e30452..3360a737c7 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-add-member-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-add-member-usage.golden @@ -11,7 +11,8 @@ ARGS: [application-id] ID of the application to add FLAGS: - -h, --help help for add-member + -h, --help help for add-member + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-add-members-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-add-members-usage.golden index aa4002bcb9..d838e7846d 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-add-members-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-add-members-usage.golden @@ -11,7 +11,8 @@ ARGS: [application-ids.{index}] IDs of the applications to add FLAGS: - -h, --help help for add-members + -h, --help help for add-members + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-create-usage.golden index 607f9641cf..918fbe42e1 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-create-usage.golden @@ -16,7 +16,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-delete-usage.golden index 0ba7042221..3394cddab9 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-delete-usage.golden @@ -13,7 +13,8 @@ ARGS: group-id ID of the group to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-get-usage.golden index 738f57c01b..440b9f9c96 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-get-usage.golden @@ -9,7 +9,8 @@ ARGS: group-id ID of the group FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-list-usage.golden index d83f802426..31fe27d6e7 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [organization-id=] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-remove-member-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-remove-member-usage.golden index 26c6df8339..4297b152c9 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-remove-member-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-remove-member-usage.golden @@ -11,7 +11,8 @@ ARGS: [application-id] ID of the application to remove FLAGS: - -h, --help help for remove-member + -h, --help help for remove-member + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-set-members-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-set-members-usage.golden index 49185257d5..f02c2cf8bd 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-set-members-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-set-members-usage.golden @@ -11,7 +11,8 @@ ARGS: application-ids.{index} FLAGS: - -h, --help help for set-members + -h, --help help for set-members + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-update-usage.golden index e6f2f5eb8d..63891c24a1 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [tags.{index}] New tags for the group (maximum of 10 tags) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-group-usage.golden b/cmd/scw/testdata/test-all-usage-iam-group-usage.golden index 126f678d42..9dbf3d7cd8 100644 --- a/cmd/scw/testdata/test-all-usage-iam-group-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-group-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: update Update a group FLAGS: - -h, --help help for group + -h, --help help for group + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-jwt-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-jwt-delete-usage.golden index 4c6a183747..dfc00e1a46 100644 --- a/cmd/scw/testdata/test-all-usage-iam-jwt-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-jwt-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: jti JWT ID of the JWT to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-jwt-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-jwt-get-usage.golden index 39fb6cbbde..5859c0e5e4 100644 --- a/cmd/scw/testdata/test-all-usage-iam-jwt-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-jwt-get-usage.golden @@ -9,7 +9,8 @@ ARGS: jti JWT ID of the JWT to get FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-jwt-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-jwt-list-usage.golden index c7c3bd6ec0..0ca6be43e8 100644 --- a/cmd/scw/testdata/test-all-usage-iam-jwt-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-jwt-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [expired] Filter out expired JWTs or not FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-jwt-usage.golden b/cmd/scw/testdata/test-all-usage-iam-jwt-usage.golden index f289d63a3d..df9d8932e5 100644 --- a/cmd/scw/testdata/test-all-usage-iam-jwt-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-jwt-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List JWTs FLAGS: - -h, --help help for jwt + -h, --help help for jwt + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-log-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-log-get-usage.golden index 56012641c8..aa58b59c39 100644 --- a/cmd/scw/testdata/test-all-usage-iam-log-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-log-get-usage.golden @@ -9,7 +9,8 @@ ARGS: log-id ID of the log FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-log-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-log-list-usage.golden index ab4c7a3488..c52b8441a2 100644 --- a/cmd/scw/testdata/test-all-usage-iam-log-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-log-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-log-usage.golden b/cmd/scw/testdata/test-all-usage-iam-log-usage.golden index e4ebc1f41b..46f142e116 100644 --- a/cmd/scw/testdata/test-all-usage-iam-log-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-log-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List logs FLAGS: - -h, --help help for log + -h, --help help for log + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-organization-enable-saml-usage.golden b/cmd/scw/testdata/test-all-usage-iam-organization-enable-saml-usage.golden index 46da756c7a..7856a211b0 100644 --- a/cmd/scw/testdata/test-all-usage-iam-organization-enable-saml-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-organization-enable-saml-usage.golden @@ -9,7 +9,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for enable-saml + -h, --help help for enable-saml + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-organization-get-saml-usage.golden b/cmd/scw/testdata/test-all-usage-iam-organization-get-saml-usage.golden index 5a60463a0a..a9e7b5d52f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-organization-get-saml-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-organization-get-saml-usage.golden @@ -9,7 +9,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for get-saml + -h, --help help for get-saml + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-organization-usage.golden b/cmd/scw/testdata/test-all-usage-iam-organization-usage.golden index 8291917e8c..a3b506201f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-organization-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-organization-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: get-saml Get SAML Identity Provider configuration of an Organization FLAGS: - -h, --help help for organization + -h, --help help for organization + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-permission-set-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-permission-set-list-usage.golden index 61966e7efb..139400ad3f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-permission-set-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-permission-set-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-permission-set-usage.golden b/cmd/scw/testdata/test-all-usage-iam-permission-set-usage.golden index caaab6a90b..8c61cd7f1e 100644 --- a/cmd/scw/testdata/test-all-usage-iam-permission-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-permission-set-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List permission sets FLAGS: - -h, --help help for permission-set + -h, --help help for permission-set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-clone-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-clone-usage.golden index 69a927320b..cb75588813 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-clone-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-clone-usage.golden @@ -9,7 +9,8 @@ ARGS: policy-id FLAGS: - -h, --help help for clone + -h, --help help for clone + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-create-usage.golden index beda0ff979..de14a01dfd 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-create-usage.golden @@ -24,7 +24,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-delete-usage.golden index c24ab57904..81feec9c3f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: policy-id Id of policy to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-get-usage.golden index a1f8e2dab1..a070338d95 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-get-usage.golden @@ -9,7 +9,8 @@ ARGS: policy-id Id of policy to search FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-list-usage.golden index ba178e23bc..ce010ca963 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-list-usage.golden @@ -18,7 +18,8 @@ ARGS: [organization-id=] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-update-usage.golden index b3c25224b1..43ef173b04 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [no-principal] Defines whether or not the policy is attributed to a principal FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-policy-usage.golden b/cmd/scw/testdata/test-all-usage-iam-policy-usage.golden index 1247714c21..41598f2f18 100644 --- a/cmd/scw/testdata/test-all-usage-iam-policy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-policy-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update an existing policy FLAGS: - -h, --help help for policy + -h, --help help for policy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-rule-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-rule-create-usage.golden index 589b9568f3..0d1718bdd0 100644 --- a/cmd/scw/testdata/test-all-usage-iam-rule-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-rule-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [organization-id] ID of Organization the rule is scoped to FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-rule-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-rule-delete-usage.golden index fd2220feb0..609341500d 100644 --- a/cmd/scw/testdata/test-all-usage-iam-rule-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-rule-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [rule-id] Id of rule to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-rule-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-rule-list-usage.golden index ec8ea1f1fe..5bc550c98c 100644 --- a/cmd/scw/testdata/test-all-usage-iam-rule-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-rule-list-usage.golden @@ -9,7 +9,8 @@ ARGS: policy-id Id of policy to search FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-rule-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-rule-update-usage.golden index fc7e1f06e6..82a679b98e 100644 --- a/cmd/scw/testdata/test-all-usage-iam-rule-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-rule-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [rules.{index}.organization-id] ID of Organization the rule is scoped to FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-rule-usage.golden b/cmd/scw/testdata/test-all-usage-iam-rule-usage.golden index b5d2b280dd..c45a1d96ed 100644 --- a/cmd/scw/testdata/test-all-usage-iam-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-rule-usage.golden @@ -14,7 +14,8 @@ UTILITY COMMANDS: delete Delete a rule for a specific IAM policy FLAGS: - -h, --help help for rule + -h, --help help for rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-add-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-add-usage.golden index 69aa34dee9..4a2068baff 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-add-usage.golden @@ -11,7 +11,8 @@ ARGS: content Content of the SAML certificate FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-delete-usage.golden index 754bc1cc69..efb70e3e9a 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: certificate-id ID of the certificate to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-list-usage.golden index 6b1d8f27a5..dd706dfb71 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-list-usage.golden @@ -9,7 +9,8 @@ ARGS: saml-id ID of the SAML configuration FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-usage.golden index d329f1a9c8..943b4bf541 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-certificates-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-certificates-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List SAML certificates FLAGS: - -h, --help help for saml-certificates + -h, --help help for saml-certificates + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-delete-usage.golden index 0af93420b4..5ceb0acab7 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: saml-id ID of the SAML configuration FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-update-usage.golden index 60ad6be1f4..8794b177bb 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [single-sign-on-url] Single Sign-On URL of the SAML Identity Provider FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-saml-usage.golden b/cmd/scw/testdata/test-all-usage-iam-saml-usage.golden index 94a8c258c9..83e802b34f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-saml-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-saml-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: update Update SAML Identity Provider configuration FLAGS: - -h, --help help for saml + -h, --help help for saml + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-security-settings-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-security-settings-get-usage.golden index c7e3c4cf20..b5d23f36d6 100644 --- a/cmd/scw/testdata/test-all-usage-iam-security-settings-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-security-settings-get-usage.golden @@ -9,7 +9,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-security-settings-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-security-settings-update-usage.golden index a95a879de3..98a2c40643 100644 --- a/cmd/scw/testdata/test-all-usage-iam-security-settings-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-security-settings-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-security-settings-usage.golden b/cmd/scw/testdata/test-all-usage-iam-security-settings-usage.golden index d13f3f5317..bb4afc7ea1 100644 --- a/cmd/scw/testdata/test-all-usage-iam-security-settings-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-security-settings-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: update Update the security settings of an Organization FLAGS: - -h, --help help for security-settings + -h, --help help for security-settings + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-create-usage.golden index 322291d1ed..270f3a4759 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-create-usage.golden @@ -15,7 +15,8 @@ ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-delete-usage.golden index 4c2d553cef..005fed9624 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-delete-usage.golden @@ -13,7 +13,8 @@ ARGS: ssh-key-id FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-get-usage.golden index e3d45e96cf..f5a4a2215d 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-get-usage.golden @@ -9,7 +9,8 @@ ARGS: ssh-key-id ID of the SSH key FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-init-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-init-usage.golden index 83b1780bae..2d2f1ad64c 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-init-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-init-usage.golden @@ -6,7 +6,8 @@ USAGE: scw iam ssh-key init FLAGS: - -h, --help help for init + -h, --help help for init + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-list-usage.golden index 9f82731cff..a8db34fc76 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [organization-id=] Filter by Organization ID FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-update-usage.golden index de9658fe5e..16627eda78 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [disabled] Enable or disable the SSH key FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-ssh-key-usage.golden b/cmd/scw/testdata/test-all-usage-iam-ssh-key-usage.golden index accbd17c61..89fde093e1 100644 --- a/cmd/scw/testdata/test-all-usage-iam-ssh-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-ssh-key-usage.golden @@ -16,7 +16,8 @@ WORKFLOW COMMANDS: init Initialize SSH key FLAGS: - -h, --help help for ssh-key + -h, --help help for ssh-key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-usage.golden b/cmd/scw/testdata/test-all-usage-iam-usage.golden index 373cf0649a..06537253ec 100644 --- a/cmd/scw/testdata/test-all-usage-iam-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-usage.golden @@ -22,7 +22,8 @@ AVAILABLE COMMANDS: user Users management commands FLAGS: - -h, --help help for iam + -h, --help help for iam + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-create-usage.golden index 65f49567df..d389ace330 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-create-usage.golden @@ -20,7 +20,8 @@ ARGS: [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-delete-usage.golden index 72068dc454..0414481d7b 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-delete-usage.golden @@ -9,7 +9,8 @@ ARGS: user-id ID of the user to delete FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-get-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-get-usage.golden index a6fd332a11..311b14457c 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-get-usage.golden @@ -9,7 +9,8 @@ ARGS: user-id ID of the user to find FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-list-usage.golden index 4d4056cc82..691d9a0968 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-list-usage.golden @@ -14,7 +14,8 @@ ARGS: organization-id= ID of the Organization to filter FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-lock-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-lock-usage.golden index f31b9cc100..f5d8de0a77 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-lock-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-lock-usage.golden @@ -9,7 +9,8 @@ ARGS: user-id ID of the user to lock FLAGS: - -h, --help help for lock + -h, --help help for lock + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-unlock-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-unlock-usage.golden index 64f6d77259..e5d2f6c009 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-unlock-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-unlock-usage.golden @@ -9,7 +9,8 @@ ARGS: user-id ID of the user to unlock FLAGS: - -h, --help help for unlock + -h, --help help for unlock + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-update-password-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-update-password-usage.golden index 670a9d5d6f..2d2ef81b4f 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-update-password-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-update-password-usage.golden @@ -10,7 +10,8 @@ ARGS: password The new password FLAGS: - -h, --help help for update-password + -h, --help help for update-password + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-update-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-update-usage.golden index e8ae43943c..529d91f4ec 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [locale] IAM member locale FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-update-username-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-update-username-usage.golden index af351fab14..73cb3974ce 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-update-username-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-update-username-usage.golden @@ -10,7 +10,8 @@ ARGS: username The new username FLAGS: - -h, --help help for update-username + -h, --help help for update-username + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iam-user-usage.golden b/cmd/scw/testdata/test-all-usage-iam-user-usage.golden index d7ffe3a9e8..1ac7cbfac2 100644 --- a/cmd/scw/testdata/test-all-usage-iam-user-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iam-user-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: update-username Update an user's username. FLAGS: - -h, --help help for user + -h, --help help for user + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-create-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-create-usage.golden index d3bf83b685..6c32da8634 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-create-usage.golden @@ -21,8 +21,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create - -w, --wait wait until the deployment is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the deployment is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-delete-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-delete-usage.golden index 573fde48cf..bff29b1f1c 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-delete-usage.golden @@ -10,8 +10,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete - -w, --wait wait until the deployment is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the deployment is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-get-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-get-certificate-usage.golden index 6d218792cb..7bbc651d51 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-get-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-get-certificate-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-certificate + -h, --help help for get-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-get-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-get-usage.golden index 0a090dc074..fb0ebd7329 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-list-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-list-usage.golden index 4d2e55d6f7..2d3028046d 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-update-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-update-usage.golden index ad1f87d5ea..dc3a8216d3 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-deployment-usage.golden b/cmd/scw/testdata/test-all-usage-inference-deployment-usage.golden index e2b8000d1a..3ce8a312b7 100644 --- a/cmd/scw/testdata/test-all-usage-inference-deployment-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-deployment-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update a deployment FLAGS: - -h, --help help for deployment + -h, --help help for deployment + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-endpoint-create-usage.golden b/cmd/scw/testdata/test-all-usage-inference-endpoint-create-usage.golden index f4c62879a0..9ffa524398 100644 --- a/cmd/scw/testdata/test-all-usage-inference-endpoint-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-endpoint-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-endpoint-delete-usage.golden b/cmd/scw/testdata/test-all-usage-inference-endpoint-delete-usage.golden index 0c826056e8..06784dbf2e 100644 --- a/cmd/scw/testdata/test-all-usage-inference-endpoint-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-endpoint-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-endpoint-update-usage.golden b/cmd/scw/testdata/test-all-usage-inference-endpoint-update-usage.golden index 1dc7b8f10d..392e244256 100644 --- a/cmd/scw/testdata/test-all-usage-inference-endpoint-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-endpoint-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-inference-endpoint-usage.golden index ecb3d2f65c..f44da88e9b 100644 --- a/cmd/scw/testdata/test-all-usage-inference-endpoint-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-endpoint-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: update Update an endpoint FLAGS: - -h, --help help for endpoint + -h, --help help for endpoint + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-model-delete-usage.golden b/cmd/scw/testdata/test-all-usage-inference-model-delete-usage.golden index d6514525b1..c18134de93 100644 --- a/cmd/scw/testdata/test-all-usage-inference-model-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-model-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-model-get-usage.golden b/cmd/scw/testdata/test-all-usage-inference-model-get-usage.golden index f0cdefb619..9df74be018 100644 --- a/cmd/scw/testdata/test-all-usage-inference-model-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-model-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-model-import-usage.golden b/cmd/scw/testdata/test-all-usage-inference-model-import-usage.golden index b23544e7e4..271324391c 100644 --- a/cmd/scw/testdata/test-all-usage-inference-model-import-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-model-import-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for import + -h, --help help for import + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-model-list-usage.golden b/cmd/scw/testdata/test-all-usage-inference-model-list-usage.golden index 2a510665e6..bcf5438048 100644 --- a/cmd/scw/testdata/test-all-usage-inference-model-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-model-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-model-usage.golden b/cmd/scw/testdata/test-all-usage-inference-model-usage.golden index 31d5545abd..8f03deabd9 100644 --- a/cmd/scw/testdata/test-all-usage-inference-model-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-model-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List models FLAGS: - -h, --help help for model + -h, --help help for model + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-node-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-inference-node-type-list-usage.golden index 8b95fbf2bc..d8c7c44b18 100644 --- a/cmd/scw/testdata/test-all-usage-inference-node-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-node-type-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-node-type-usage.golden b/cmd/scw/testdata/test-all-usage-inference-node-type-usage.golden index 5c82db717b..5d07a470c4 100644 --- a/cmd/scw/testdata/test-all-usage-inference-node-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-node-type-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List available node types FLAGS: - -h, --help help for node-type + -h, --help help for node-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-inference-usage.golden b/cmd/scw/testdata/test-all-usage-inference-usage.golden index 33ba428ce9..857a84dcb0 100644 --- a/cmd/scw/testdata/test-all-usage-inference-usage.golden +++ b/cmd/scw/testdata/test-all-usage-inference-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: node-type Node types management commands FLAGS: - -h, --help help for inference + -h, --help help for inference + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-info-usage.golden b/cmd/scw/testdata/test-all-usage-info-usage.golden index 7cb56c87a8..2fc33ab444 100644 --- a/cmd/scw/testdata/test-all-usage-info-usage.golden +++ b/cmd/scw/testdata/test-all-usage-info-usage.golden @@ -9,7 +9,8 @@ ARGS: [show-secret=false] Reveal secret FLAGS: - -h, --help help for info + -h, --help help for info + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-create-usage.golden index f2c584e85a..d6f317acfc 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-create-usage.golden @@ -28,7 +28,8 @@ DEPRECATED ARGS: [additional-volumes.{index}.organization-id] Organization ID that own the additional snapshot FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-delete-usage.golden index 8ed9e1fe1e..f074929840 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-delete-usage.golden @@ -18,7 +18,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-get-usage.golden index ade27920da..59c33995f3 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-get-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-list-usage.golden index a3fdd20790..39bb99b4e6 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-list-usage.golden @@ -18,7 +18,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-update-usage.golden index 886bb3c401..31b5bc3b8e 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-usage.golden index 8dfcac378a..572e368309 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-usage.golden @@ -18,8 +18,9 @@ WORKFLOW COMMANDS: wait Wait for image to reach a stable state FLAGS: - -h, --help help for image - --web open console page for the current resource + -h, --help help for image + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-image-wait-usage.golden b/cmd/scw/testdata/test-all-usage-instance-image-wait-usage.golden index d615e2ee9f..54a2548330 100644 --- a/cmd/scw/testdata/test-all-usage-instance-image-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-image-wait-usage.golden @@ -11,11 +11,12 @@ EXAMPLES: ARGS: image-id ID of the image. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) [timeout=1h0m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden index 11e91f9f29..a8c3568983 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden @@ -12,10 +12,11 @@ EXAMPLES: ARGS: ip IP or UUID of the IP. server-id UUID of the server to attach the IP to - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for attach + -h, --help help for attach + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-create-usage.golden index ff4eb70e22..83c2e20e77 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-create-usage.golden @@ -24,7 +24,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-delete-usage.golden index 78da335465..5967aa12ef 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-delete-usage.golden @@ -20,7 +20,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-detach-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-detach-usage.golden index 2ae24ea17b..a8811c9d39 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-detach-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-detach-usage.golden @@ -14,10 +14,11 @@ EXAMPLES: ARGS: ip IP or UUID of the IP. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for detach + -h, --help help for detach + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-get-usage.golden index 2c74d38c32..ddd83ba24d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-get-usage.golden @@ -20,7 +20,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-list-usage.golden index 1da2ce5085..bfc24bd388 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-list-usage.golden @@ -21,7 +21,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-update-usage.golden index 8345c8fec1..893d159cae 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-update-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden index b5e69fdada..404674d022 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden @@ -18,8 +18,9 @@ AVAILABLE COMMANDS: update Update a flexible IP FLAGS: - -h, --help help for ip - --web open console page for the current resource + -h, --help help for ip + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-create-usage.golden index 4508bdc95a..0b035cdf1a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-create-usage.golden @@ -34,7 +34,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-delete-usage.golden index 2ee362fe89..08520470e7 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-delete-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-get-servers-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-get-servers-usage.golden index a17603eeb1..6a61779dc8 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-get-servers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-get-servers-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get-servers + -h, --help help for get-servers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-get-usage.golden index 689b59d1ae..d9de0d156d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-get-usage.golden @@ -14,8 +14,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get - --web open console page for the current resource + -h, --help help for get + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-list-usage.golden index ad2188eaac..57ecf8728d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-list-usage.golden @@ -20,7 +20,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-set-servers-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-set-servers-usage.golden index f16bef4b99..843fc09105 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-set-servers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-set-servers-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set-servers + -h, --help help for set-servers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-set-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-set-usage.golden index 7bd147eec8..59f833ec8f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-set-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-update-servers-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-update-servers-usage.golden index 64df4a992f..a36d8de502 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-update-servers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-update-servers-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update-servers + -h, --help help for update-servers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-update-usage.golden index dc9eced190..5857fbef9b 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-update-usage.golden @@ -24,7 +24,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-placement-group-usage.golden b/cmd/scw/testdata/test-all-usage-instance-placement-group-usage.golden index 339bb7056b..8a06fe7145 100644 --- a/cmd/scw/testdata/test-all-usage-instance-placement-group-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-placement-group-usage.golden @@ -34,8 +34,9 @@ AVAILABLE COMMANDS: update-servers Update placement group servers FLAGS: - -h, --help help for placement-group - --web open console page for the current resource + -h, --help help for placement-group + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-private-nic-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-private-nic-create-usage.golden index d8dc532114..cbb69a0acf 100644 --- a/cmd/scw/testdata/test-all-usage-instance-private-nic-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-private-nic-create-usage.golden @@ -16,7 +16,8 @@ DEPRECATED ARGS: [ip-ids.{index}] Ip_ids defined from IPAM FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-private-nic-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-private-nic-delete-usage.golden index 8f388ba6ad..7473ab3eae 100644 --- a/cmd/scw/testdata/test-all-usage-instance-private-nic-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-private-nic-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-private-nic-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-private-nic-get-usage.golden index 4cabf8cfcc..b4f1d64847 100644 --- a/cmd/scw/testdata/test-all-usage-instance-private-nic-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-private-nic-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-private-nic-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-private-nic-list-usage.golden index 6a2fd6da0b..8e72d65452 100644 --- a/cmd/scw/testdata/test-all-usage-instance-private-nic-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-private-nic-list-usage.golden @@ -18,8 +18,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list - --web open console page for the current resource + -h, --help help for list + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-private-nic-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-private-nic-update-usage.golden index 81625ea584..460cc26cbb 100644 --- a/cmd/scw/testdata/test-all-usage-instance-private-nic-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-private-nic-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-private-nic-usage.golden b/cmd/scw/testdata/test-all-usage-instance-private-nic-usage.golden index 7bd0e5c2a0..72acb0077b 100644 --- a/cmd/scw/testdata/test-all-usage-instance-private-nic-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-private-nic-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: update Update a private NIC FLAGS: - -h, --help help for private-nic + -h, --help help for private-nic + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-clear-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-clear-usage.golden index 0be9fc3425..9a997e7b7a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-clear-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-clear-usage.golden @@ -11,10 +11,11 @@ EXAMPLES: ARGS: security-group-id ID of the security group to reset. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for clear + -h, --help help for clear + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-create-rule-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-create-rule-usage.golden index a398ea2da2..4a71ddf86c 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-create-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-create-rule-usage.golden @@ -34,7 +34,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create-rule + -h, --help help for create-rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-create-usage.golden index 8e20b727be..43a6250b13 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-create-usage.golden @@ -38,7 +38,8 @@ DEPRECATED ARGS: [organization-default] Defines whether this security group becomes the default security group for new Instances FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-delete-rule-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-delete-rule-usage.golden index 8b69157c0a..f78224eb55 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-delete-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-delete-rule-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete-rule + -h, --help help for delete-rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-delete-usage.golden index c648c961de..e778647ac9 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-delete-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-edit-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-edit-usage.golden index 9e91a22aee..b9ae2cc21f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-edit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-edit-usage.golden @@ -9,10 +9,11 @@ USAGE: ARGS: security-group-id ID of the security group to reset. [mode=yaml] marshaling used when editing data (yaml | json) - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for edit + -h, --help help for edit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-get-rule-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-get-rule-usage.golden index fbf424fec6..1c9b4f4d4a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-get-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-get-rule-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get-rule + -h, --help help for get-rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-get-usage.golden index ada18ae5da..13973cc735 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-list-default-rules-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-list-default-rules-usage.golden index 1c8f1a90df..0ebf4494c0 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-list-default-rules-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-list-default-rules-usage.golden @@ -9,7 +9,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for list-default-rules + -h, --help help for list-default-rules + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-list-rules-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-list-rules-usage.golden index d2b687c14a..93cb46550a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-list-rules-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-list-rules-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list-rules + -h, --help help for list-rules + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-list-usage.golden index c320ee8dcf..6a3cc3c1d0 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-list-usage.golden @@ -18,7 +18,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-set-rules-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-set-rules-usage.golden index 9447205321..5f46cc2643 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-set-rules-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-set-rules-usage.golden @@ -20,7 +20,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set-rules + -h, --help help for set-rules + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-update-rule-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-update-rule-usage.golden index a35036dfd4..80cb66ac3f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-update-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-update-rule-usage.golden @@ -18,7 +18,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update-rule + -h, --help help for update-rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-update-usage.golden index 231fc507ca..0855ced146 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-update-usage.golden @@ -21,7 +21,8 @@ DEPRECATED ARGS: [organization-default] Please use project_default instead FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden index 2961243b67..65fa5fac58 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden @@ -26,8 +26,9 @@ AVAILABLE COMMANDS: update-rule Update security group rule FLAGS: - -h, --help help for security-group - --web open console page for the current resource + -h, --help help for security-group + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-action-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-action-usage.golden index 13f39e2476..64817771be 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-action-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-action-usage.golden @@ -12,11 +12,12 @@ EXAMPLES: ARGS: action The raw API action to perform, as listed with 'scw instance server list-actions' server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for action - -w, --wait wait until the server is ready + -h, --help help for action + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-attach-filesystem-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-attach-filesystem-usage.golden index 5f7f8c416c..fabb8a3305 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-attach-filesystem-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-attach-filesystem-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for attach-filesystem + -h, --help help for attach-filesystem + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden index 168164e5df..047c6fc465 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden @@ -15,10 +15,11 @@ EXAMPLES: ARGS: server-id ID of the server ip UUID of the IP to attach or its UUID - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for attach-ip + -h, --help help for attach-ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-attach-volume-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-attach-volume-usage.golden index 1cce7ac953..b20a4824f1 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-attach-volume-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-attach-volume-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for attach-volume + -h, --help help for attach-volume + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-backup-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-backup-usage.golden index 10400a24be..8e704e0c65 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-backup-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-backup-usage.golden @@ -19,11 +19,12 @@ ARGS: server-id ID of the server to backup. [name=] Name of your backup. [unified] Whether or not the type of the snapshot is unified. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for backup - -w, --wait wait until the server is ready + -h, --help help for backup + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-console-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-console-usage.golden index 4ecacdb35f..0abd5c0686 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-console-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-console-usage.golden @@ -7,11 +7,12 @@ USAGE: ARGS: server-id Server ID to connect to - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) [ws-url] WebSocket URL to connect to (overrides default) FLAGS: - -h, --help help for console + -h, --help help for console + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden index 0dd99f4a53..67f4e95974 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden @@ -51,13 +51,14 @@ ARGS: [boot-type=local] The boot type to use, if empty the local boot will be used. Will be overwritten to bootscript if bootscript-id is set. (local | bootscript | rescue) [admin-password-encryption-ssh-key-id] ID of the IAM SSH Key used to encrypt generated admin password. Required when creating a windows server. [project-id] Project ID to use. If none is passed the default project ID will be used - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) [organization-id] Organization ID to use. If none is passed the default organization ID will be used FLAGS: - -h, --help help for create - -w, --wait wait until the server is ready - --web open console page for the current resource + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-delete-usage.golden index 1df49cbc78..b952012b98 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-delete-usage.golden @@ -17,11 +17,12 @@ ARGS: [with-volumes=all] Delete the volumes attached to the server (none | local | block | root | all) [with-ip] Delete the IP attached to the server [force-shutdown] Force shutdown of the instance server before deleting it - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for delete - -w, --wait wait until the server and its resources are deleted + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the server and its resources are deleted GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-detach-filesystem-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-detach-filesystem-usage.golden index 68d62dbebd..4024b88eae 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-detach-filesystem-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-detach-filesystem-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for detach-filesystem + -h, --help help for detach-filesystem + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-detach-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-detach-ip-usage.golden index 194ae65367..9a70a38692 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-detach-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-detach-ip-usage.golden @@ -11,10 +11,11 @@ EXAMPLES: ARGS: server-id UUID of the server. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for detach-ip + -h, --help help for detach-ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-detach-volume-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-detach-volume-usage.golden index 74f5574f0c..b899af2964 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-detach-volume-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-detach-volume-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for detach-volume + -h, --help help for detach-volume + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-enable-routed-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-enable-routed-ip-usage.golden index 55a7ddc7f6..255e876336 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-enable-routed-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-enable-routed-ip-usage.golden @@ -13,11 +13,12 @@ EXAMPLES: ARGS: server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for enable-routed-ip - -w, --wait wait until the server is ready + -h, --help help for enable-routed-ip + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-get-compatible-types-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-get-compatible-types-usage.golden index 2a49e30048..ef83091f3d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-get-compatible-types-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-get-compatible-types-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get-compatible-types + -h, --help help for get-compatible-types + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-get-rdp-password-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-get-rdp-password-usage.golden index d7f52c2019..804c413918 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-get-rdp-password-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-get-rdp-password-usage.golden @@ -11,8 +11,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config FLAGS: - -h, --help help for get-rdp-password - -w, --wait wait until the server is ready + -h, --help help for get-rdp-password + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-get-usage.golden index d7edc08760..5cc9e3fdf8 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-get-usage.golden @@ -14,8 +14,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get - --web open console page for the current resource + -h, --help help for get + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-list-actions-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-list-actions-usage.golden index 3c0a3576fb..c0b825d56b 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-list-actions-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-list-actions-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for list-actions + -h, --help help for list-actions + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-list-usage.golden index 7709ca5da9..a9c3af955a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-list-usage.golden @@ -38,7 +38,8 @@ DEPRECATED ARGS: [private-ip] List Instances by private_ip FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-reboot-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-reboot-usage.golden index 966a07e919..2b95ebfbab 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-reboot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-reboot-usage.golden @@ -14,11 +14,12 @@ EXAMPLES: ARGS: server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for reboot - -w, --wait wait until the server is ready + -h, --help help for reboot + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-ssh-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-ssh-usage.golden index 32c97a51b2..42aa08ea12 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-ssh-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-ssh-usage.golden @@ -10,10 +10,11 @@ ARGS: [username=root] Username used for the SSH connection [port=22] Port used for the SSH connection [command] Command to execute on the remote server - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for ssh + -h, --help help for ssh + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-standby-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-standby-usage.golden index 3e9fd338c3..dabd0e90b0 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-standby-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-standby-usage.golden @@ -14,11 +14,12 @@ EXAMPLES: ARGS: server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for standby - -w, --wait wait until the server is ready + -h, --help help for standby + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-start-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-start-usage.golden index 0a7aba3273..35ef56209f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-start-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-start-usage.golden @@ -14,11 +14,12 @@ EXAMPLES: ARGS: server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for start - -w, --wait wait until the server is ready + -h, --help help for start + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-stop-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-stop-usage.golden index bdf9efff83..e79133c480 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-stop-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-stop-usage.golden @@ -14,11 +14,12 @@ EXAMPLES: ARGS: server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for stop - -w, --wait wait until the server is ready + -h, --help help for stop + --list-sub-commands List all subcommands + -w, --wait wait until the server is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden index 6c4b6a11ba..e2f24971a0 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden @@ -19,11 +19,12 @@ ARGS: server-id [with-ip] Delete the IP attached to the server [with-block=prompt] Delete the Block Storage volumes attached to the server (prompt | true | false) - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for terminate - -w, --wait wait until the server and its resources are deleted + -h, --help help for terminate + --list-sub-commands List all subcommands + -w, --wait wait until the server and its resources are deleted GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-type-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-type-get-usage.golden index 74bd52c21f..6943b00e4a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-type-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-type-get-usage.golden @@ -9,7 +9,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-type-list-usage.golden index 29a7460a30..3590f6708a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-type-list-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-type-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-type-usage.golden index bb2edceba2..e474c3a217 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-type-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List Instance types FLAGS: - -h, --help help for server-type + -h, --help help for server-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-update-usage.golden index 934cea8638..f4d8123676 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-update-usage.golden @@ -48,7 +48,8 @@ DEPRECATED ARGS: [enable-ipv6] FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-usage.golden index c86351fd11..ff35c6ee7f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-usage.golden @@ -37,8 +37,9 @@ WORKFLOW COMMANDS: wait Wait for server to reach a stable state FLAGS: - -h, --help help for server - --web open console page for the current resource + -h, --help help for server + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-server-wait-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-wait-usage.golden index ed3910bc0e..f84829d64c 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-wait-usage.golden @@ -12,10 +12,11 @@ EXAMPLES: ARGS: [timeout=10m0s] Timeout of the wait server-id ID of the server affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-apply-migration-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-apply-migration-usage.golden index 3558d16283..818f427c36 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-apply-migration-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-apply-migration-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for apply-migration + -h, --help help for apply-migration + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-create-usage.golden index 05ec86021d..0b09cc8b44 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-create-usage.golden @@ -31,8 +31,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the snapshot is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the snapshot is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-delete-usage.golden index d581ce35b8..b2e3d7576f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-delete-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-export-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-export-usage.golden index 49e8762ce7..0e851add9a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-export-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-export-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for export + -h, --help help for export + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-get-usage.golden index 5de2428a35..dddc03be3a 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-get-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-list-usage.golden index c0a630aadc..124dbfbab3 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-list-usage.golden @@ -21,7 +21,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-plan-migration-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-plan-migration-usage.golden index 92ae92a1bc..f9b1b53899 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-plan-migration-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-plan-migration-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for plan-migration + -h, --help help for plan-migration + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-update-usage.golden index 86e84969e6..7f7cc3b81d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-update-usage.golden @@ -12,8 +12,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update - -w, --wait wait until the snapshot is ready + -h, --help help for update + --list-sub-commands List all subcommands + -w, --wait wait until the snapshot is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-usage.golden index db499f3edb..e719a40f82 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-usage.golden @@ -28,8 +28,9 @@ WORKFLOW COMMANDS: wait Wait for snapshot to reach a stable state FLAGS: - -h, --help help for snapshot - --web open console page for the current resource + -h, --help help for snapshot + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-snapshot-wait-usage.golden b/cmd/scw/testdata/test-all-usage-instance-snapshot-wait-usage.golden index eae0d6d729..8f0d4b2f42 100644 --- a/cmd/scw/testdata/test-all-usage-instance-snapshot-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-snapshot-wait-usage.golden @@ -11,11 +11,12 @@ EXAMPLES: ARGS: snapshot-id ID of the snapshot. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) [timeout=1h0m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ssh-add-key-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ssh-add-key-usage.golden index e0043732e1..bfb46e932d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ssh-add-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ssh-add-key-usage.golden @@ -11,10 +11,11 @@ USAGE: ARGS: [server-id] Server to add your key to [public-key] Public key you want to add to your server - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for add-key + -h, --help help for add-key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ssh-fetch-keys-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ssh-fetch-keys-usage.golden index 460bfe3498..1e2ff11872 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ssh-fetch-keys-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ssh-fetch-keys-usage.golden @@ -11,10 +11,11 @@ USAGE: ARGS: [project-id] Fetch the keys on all servers in the given Project [username=root] Username used for the SSH connection - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for fetch-keys + -h, --help help for fetch-keys + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ssh-install-config-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ssh-install-config-usage.golden index d711ab8043..7b8eac67e1 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ssh-install-config-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ssh-install-config-usage.golden @@ -7,10 +7,11 @@ USAGE: ARGS: [project-id] Project ID to use. If none is passed the default project ID will be used - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1 | all) FLAGS: - -h, --help help for install-config + -h, --help help for install-config + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ssh-list-keys-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ssh-list-keys-usage.golden index 914341c8b3..60d9eae7df 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ssh-list-keys-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ssh-list-keys-usage.golden @@ -9,10 +9,11 @@ USAGE: ARGS: server-id Server which keys are to be listed - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for list-keys + -h, --help help for list-keys + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ssh-remove-key-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ssh-remove-key-usage.golden index 1ff52c6cbe..4b1386359e 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ssh-remove-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ssh-remove-key-usage.golden @@ -12,10 +12,11 @@ ARGS: identifier (one of): [name] Name of the key you want to remove, has to be the key comment or the index [public-key] Public key you want to remove - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for remove-key + -h, --help help for remove-key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-ssh-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ssh-usage.golden index 220f2f5441..7e33d544d5 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ssh-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ssh-usage.golden @@ -18,7 +18,8 @@ WORKFLOW COMMANDS: It generate hosts for instance servers, baremetal, apple-silicon and bastions FLAGS: - -h, --help help for ssh + -h, --help help for ssh + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-usage.golden b/cmd/scw/testdata/test-all-usage-instance-usage.golden index fafd697aeb..14f1b8e0e4 100644 --- a/cmd/scw/testdata/test-all-usage-instance-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-usage.golden @@ -20,8 +20,9 @@ AVAILABLE COMMANDS: volume-type Volume type management commands FLAGS: - -h, --help help for instance - --web open console page for the current resource + -h, --help help for instance + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-user-data-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-user-data-delete-usage.golden index 5bf8fd70de..a6a31b1993 100644 --- a/cmd/scw/testdata/test-all-usage-instance-user-data-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-user-data-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-user-data-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-user-data-get-usage.golden index f3721691ab..e30066b0f6 100644 --- a/cmd/scw/testdata/test-all-usage-instance-user-data-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-user-data-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-user-data-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-user-data-list-usage.golden index 738c470be8..bb406ed3ca 100644 --- a/cmd/scw/testdata/test-all-usage-instance-user-data-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-user-data-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-user-data-set-usage.golden b/cmd/scw/testdata/test-all-usage-instance-user-data-set-usage.golden index 79604d045c..7922432a9d 100644 --- a/cmd/scw/testdata/test-all-usage-instance-user-data-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-user-data-set-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-user-data-usage.golden b/cmd/scw/testdata/test-all-usage-instance-user-data-usage.golden index a53bcaf17e..281816cfff 100644 --- a/cmd/scw/testdata/test-all-usage-instance-user-data-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-user-data-usage.golden @@ -22,7 +22,8 @@ AVAILABLE COMMANDS: set Add/set user data FLAGS: - -h, --help help for user-data + -h, --help help for user-data + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-apply-migration-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-apply-migration-usage.golden index 2db578e744..de7fd7e108 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-apply-migration-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-apply-migration-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for apply-migration + -h, --help help for apply-migration + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-create-usage.golden index b48568c69d..8ac434beca 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-create-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-delete-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-delete-usage.golden index e068ac24cd..f15ee227bf 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-delete-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-get-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-get-usage.golden index 60124d53f0..f74a805be0 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-list-usage.golden index d1326cadfb..3df816074b 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-list-usage.golden @@ -21,7 +21,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-plan-migration-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-plan-migration-usage.golden index d6b370d891..737536bc4b 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-plan-migration-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-plan-migration-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for plan-migration + -h, --help help for plan-migration + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-type-list-usage.golden index c4c1717d30..ec8b02512f 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-type-list-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-type-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-type-usage.golden index 8bf72f5ef4..b1fd7c8f49 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-type-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List volume types FLAGS: - -h, --help help for volume-type + -h, --help help for volume-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-update-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-update-usage.golden index 733afa532b..c5e6a7172b 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-update-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-usage.golden index 729bb0a56a..63ba0e3a80 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-usage.golden @@ -38,8 +38,9 @@ WORKFLOW COMMANDS: wait Wait for volume to reach a stable state FLAGS: - -h, --help help for volume - --web open console page for the current resource + -h, --help help for volume + --list-sub-commands List all subcommands + --web open console page for the current resource GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-instance-volume-wait-usage.golden b/cmd/scw/testdata/test-all-usage-instance-volume-wait-usage.golden index 121c5e8492..76a71a6cdf 100644 --- a/cmd/scw/testdata/test-all-usage-instance-volume-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-volume-wait-usage.golden @@ -12,10 +12,11 @@ EXAMPLES: ARGS: [timeout=10m0s] Timeout of the wait volume-id ID of the volume affected by the action. - [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | it-mil-1) FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-connection-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-connection-usage.golden index 419c8f6f91..3db7dd7db4 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-connection-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-connection-usage.golden @@ -6,7 +6,8 @@ USAGE: scw interlink connection FLAGS: - -h, --help help for connection + -h, --help help for connection + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-attach-policy-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-attach-policy-usage.golden index e38c05f9ad..ee967bff2a 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-attach-policy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-attach-policy-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for attach_policy + -h, --help help for attach_policy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-attach-vpc-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-attach-vpc-usage.golden index 18d07ae92b..5b45109ab7 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-attach-vpc-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-attach-vpc-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for attach_vpc + -h, --help help for attach_vpc + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-create-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-create-usage.golden index 062d77240e..ffd758d80a 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-create-usage.golden @@ -20,7 +20,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-delete-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-delete-usage.golden index 7f14924e27..009469b72f 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-detach-policy-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-detach-policy-usage.golden index 441a4b7a00..17134748d7 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-detach-policy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-detach-policy-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for detach_policy + -h, --help help for detach_policy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-detach-vpc-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-detach-vpc-usage.golden index 5dc6743e83..cf28b2932a 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-detach-vpc-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-detach-vpc-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for detach_vpc + -h, --help help for detach_vpc + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-disable-propagation-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-disable-propagation-usage.golden index 37caed70f5..bfbf12c522 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-disable-propagation-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-disable-propagation-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for disable_propagation + -h, --help help for disable_propagation + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-enable-propagation-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-enable-propagation-usage.golden index 04e53c6556..65d674b8aa 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-enable-propagation-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-enable-propagation-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for enable_propagation + -h, --help help for enable_propagation + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-get-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-get-usage.golden index 963f731b41..bcce6df40f 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-list-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-list-usage.golden index 6be5341f41..291303290a 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-list-usage.golden @@ -25,7 +25,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-update-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-update-usage.golden index dc88dc8cd2..5b15bf5bb6 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-link-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-link-usage.golden index e5f326be79..d8db3235f4 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-link-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-link-usage.golden @@ -19,7 +19,8 @@ AVAILABLE COMMANDS: update Update a link FLAGS: - -h, --help help for link + -h, --help help for link + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-partner-get-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-partner-get-usage.golden index 9427599cdc..b9a62a20c4 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-partner-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-partner-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-partner-list-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-partner-list-usage.golden index 0c7cc52ac7..8dccf55eed 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-partner-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-partner-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-partner-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-partner-usage.golden index b30e8bf1d5..dae4c7c399 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-partner-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-partner-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List available partners FLAGS: - -h, --help help for partner + -h, --help help for partner + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-pop-get-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-pop-get-usage.golden index 8d27607a15..49d3953bb1 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-pop-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-pop-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-pop-list-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-pop-list-usage.golden index cebad1ddf7..fea8419d60 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-pop-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-pop-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-pop-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-pop-usage.golden index f6428dc618..c347abf1cc 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-pop-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-pop-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List PoPs FLAGS: - -h, --help help for pop + -h, --help help for pop + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-create-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-create-usage.golden index e5e215c12d..732fb2a853 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-create-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-delete-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-delete-usage.golden index 1ac6356f70..35faf2ebf7 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-get-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-get-usage.golden index 1fead8f378..dc670b00a0 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-list-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-list-usage.golden index 061fa57995..1b1b771296 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-update-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-update-usage.golden index 8350e7fd43..09e2b5dd34 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-usage.golden index 452be3b785..c8ed4791b4 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-routing-policy-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-routing-policy-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a routing policy FLAGS: - -h, --help help for routing-policy + -h, --help help for routing-policy + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-interlink-usage.golden b/cmd/scw/testdata/test-all-usage-interlink-usage.golden index c83df827ac..f78d74aac8 100644 --- a/cmd/scw/testdata/test-all-usage-interlink-usage.golden +++ b/cmd/scw/testdata/test-all-usage-interlink-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: routing-policy Routing policy commands FLAGS: - -h, --help help for interlink + -h, --help help for interlink + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-create-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-create-usage.golden index acb1e12698..a0d025604d 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-create-usage.golden @@ -18,7 +18,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-delete-usage.golden index 22d3242b4e..2d6780b1ce 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-disable-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-disable-usage.golden index 8639a3edf5..88b164b94f 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-disable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-disable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for disable + -h, --help help for disable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-enable-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-enable-usage.golden index 93a1582b0e..932f730ab1 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-enable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-enable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for enable + -h, --help help for enable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-get-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-get-certificate-usage.golden index 616fc8a960..39a8694ac5 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-get-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-get-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-certificate + -h, --help help for get-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-get-metrics-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-get-metrics-usage.golden index ffc15b6520..52efd41d1e 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-get-metrics-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-get-metrics-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-metrics + -h, --help help for get-metrics + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-get-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-get-usage.golden index 59b3894982..9af34e0746 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-list-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-list-usage.golden index b6431fe1f9..609ad0b3bd 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-renew-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-renew-certificate-usage.golden index 17c9d0841f..2a0b8a0aba 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-renew-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-renew-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for renew-certificate + -h, --help help for renew-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-set-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-set-certificate-usage.golden index 5095d00a91..4f6a842a1e 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-set-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-set-certificate-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for set-certificate + -h, --help help for set-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-update-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-update-usage.golden index d6a163c061..4aef1b0152 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-update-usage.golden @@ -18,7 +18,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-device-usage.golden b/cmd/scw/testdata/test-all-usage-iot-device-usage.golden index e33ee82554..7905b768a2 100644 --- a/cmd/scw/testdata/test-all-usage-iot-device-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-device-usage.golden @@ -19,7 +19,8 @@ AVAILABLE COMMANDS: update Update a device FLAGS: - -h, --help help for device + -h, --help help for device + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-create-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-create-usage.golden index 1132f77a1f..7df0c502b8 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-create-usage.golden @@ -15,8 +15,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create - -w, --wait wait until the hub is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the hub is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-delete-usage.golden index 77504d0f03..72423385d1 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-disable-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-disable-usage.golden index 3d0c608d01..762b3f63b2 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-disable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-disable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for disable + -h, --help help for disable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-enable-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-enable-usage.golden index afac76746f..feb0d66901 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-enable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-enable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for enable + -h, --help help for enable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-get-ca-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-get-ca-usage.golden index b662b001bc..706bab4794 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-get-ca-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-get-ca-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-ca + -h, --help help for get-ca + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-get-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-get-usage.golden index b88b216466..c437f1bc1b 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-list-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-list-usage.golden index abdc656f2c..b7aecf91e2 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-set-ca-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-set-ca-usage.golden index 212b6b07d6..8ef751ee85 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-set-ca-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-set-ca-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for set-ca + -h, --help help for set-ca + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-update-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-update-usage.golden index 41b4a46db1..c4431aa194 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-hub-usage.golden b/cmd/scw/testdata/test-all-usage-iot-hub-usage.golden index aaad2c37c8..365777fcdc 100644 --- a/cmd/scw/testdata/test-all-usage-iot-hub-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-hub-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: update Update a hub FLAGS: - -h, --help help for hub + -h, --help help for hub + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-network-create-usage.golden b/cmd/scw/testdata/test-all-usage-iot-network-create-usage.golden index 6f981ecaf2..c5a6b38dfc 100644 --- a/cmd/scw/testdata/test-all-usage-iot-network-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-network-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-network-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iot-network-delete-usage.golden index d4d16bf8d3..1cba09dd1f 100644 --- a/cmd/scw/testdata/test-all-usage-iot-network-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-network-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-network-get-usage.golden b/cmd/scw/testdata/test-all-usage-iot-network-get-usage.golden index 9fb6bef393..e5331a38f6 100644 --- a/cmd/scw/testdata/test-all-usage-iot-network-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-network-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-network-list-usage.golden b/cmd/scw/testdata/test-all-usage-iot-network-list-usage.golden index 109a513bf6..7574217ccf 100644 --- a/cmd/scw/testdata/test-all-usage-iot-network-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-network-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-network-usage.golden b/cmd/scw/testdata/test-all-usage-iot-network-usage.golden index 8149f397b5..f95ca48ef5 100644 --- a/cmd/scw/testdata/test-all-usage-iot-network-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-network-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List the networks FLAGS: - -h, --help help for network + -h, --help help for network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-route-create-usage.golden b/cmd/scw/testdata/test-all-usage-iot-route-create-usage.golden index 25b1adebad..d242231e89 100644 --- a/cmd/scw/testdata/test-all-usage-iot-route-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-route-create-usage.golden @@ -35,7 +35,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-route-delete-usage.golden b/cmd/scw/testdata/test-all-usage-iot-route-delete-usage.golden index 606f5054d9..69aff45dc9 100644 --- a/cmd/scw/testdata/test-all-usage-iot-route-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-route-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-route-get-usage.golden b/cmd/scw/testdata/test-all-usage-iot-route-get-usage.golden index 8f0cf9c089..08970854ad 100644 --- a/cmd/scw/testdata/test-all-usage-iot-route-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-route-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-route-list-usage.golden b/cmd/scw/testdata/test-all-usage-iot-route-list-usage.golden index e25245bc9d..22d0f4f324 100644 --- a/cmd/scw/testdata/test-all-usage-iot-route-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-route-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-route-update-usage.golden b/cmd/scw/testdata/test-all-usage-iot-route-update-usage.golden index 2fce171ca2..8d71609e59 100644 --- a/cmd/scw/testdata/test-all-usage-iot-route-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-route-update-usage.golden @@ -26,7 +26,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-route-usage.golden b/cmd/scw/testdata/test-all-usage-iot-route-usage.golden index 6d44832cf4..3982fb232a 100644 --- a/cmd/scw/testdata/test-all-usage-iot-route-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-route-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a route FLAGS: - -h, --help help for route + -h, --help help for route + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-iot-usage.golden b/cmd/scw/testdata/test-all-usage-iot-usage.golden index 2ee7e670b6..d4cfd3ea82 100644 --- a/cmd/scw/testdata/test-all-usage-iot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-iot-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: route IoT Route commands FLAGS: - -h, --help help for iot + -h, --help help for iot + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-create-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-create-usage.golden index f9dc59f98a..fe8a47b99f 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-create-usage.golden @@ -19,7 +19,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-delete-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-delete-usage.golden index 633f1ff9b0..903f435086 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-get-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-get-usage.golden index d0cf8f3072..d86d97f828 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-list-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-list-usage.golden index 2a4f7019b7..54c54b1608 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-list-usage.golden @@ -27,7 +27,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-set-release-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-set-release-usage.golden index 0eae3c8a0b..6cc5376224 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-set-release-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-set-release-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for release + -h, --help help for release + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-set-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-set-usage.golden index 6aa66e57ff..c8b2b101e4 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-set-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: release Release ipam resources FLAGS: - -h, --help help for ip-set + -h, --help help for ip-set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-update-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-update-usage.golden index bf22a4dca0..59b31a5c3c 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-ip-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-ip-usage.golden index 5677c44250..8a8d6eec4a 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-ip-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an IP FLAGS: - -h, --help help for ip + -h, --help help for ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-ipam-usage.golden b/cmd/scw/testdata/test-all-usage-ipam-usage.golden index cddc9cc025..92f62a4477 100644 --- a/cmd/scw/testdata/test-all-usage-ipam-usage.golden +++ b/cmd/scw/testdata/test-all-usage-ipam-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: ip-set Management command for sets of IPs FLAGS: - -h, --help help for ipam + -h, --help help for ipam + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-create-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-create-usage.golden index 006998078d..ddfac3a2b6 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-create-usage.golden @@ -7,11 +7,12 @@ USAGE: ARGS: name= Name of the job definition - cpu-limit CPU limit of the job + cpu-limit CPU limit of the job (in mvCPU) memory-limit Memory limit of the job (in MiB) [local-storage-capacity] Local storage capacity of the job (in MiB) image-uri Image to use for the job - [command] Startup command. If empty or not defined, the image's default command is used. + [startup-command.{index}] Job startup command. Overrides the default defined in the job image. + [args.{index}] Job arguments. Overrides the default arguments defined in the job image. [project-id] Project ID to use. If none is passed the default project ID will be used [environment-variables.{key}] Environment variables of the job [description] Description of the job @@ -20,8 +21,12 @@ ARGS: [cron-schedule.timezone] [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) +DEPRECATED ARGS: + [command] Startup command. If empty or not defined, the image's default command is used. + FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-delete-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-delete-usage.golden index 45b7fa3e44..9d27afcd3a 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-get-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-get-usage.golden index d7528dbed6..e87385096e 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-list-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-list-usage.golden index 92c18b014b..55143f191c 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-start-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-start-usage.golden index 405e9cd202..c7eaf5a5dc 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-start-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-start-usage.golden @@ -1,20 +1,25 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟥🟥🟥 STDERR️️ 🟥🟥🟥️ -Run an existing job definition by its unique identifier. This will create a new job run. +Run an existing job definition using its unique identifier and create a new job run. USAGE: scw jobs definition start [arg=value ...] ARGS: job-definition-id UUID of the job definition to start - [command] Contextual startup command for this specific job run + [startup-command.{index}] Contextual startup command for this specific job run. + [args.{index}] Contextual arguments for this specific job run. [environment-variables.{key}] Contextual environment variables for this specific job run [replicas] Number of jobs to run [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) +DEPRECATED ARGS: + [command] Contextual startup command for this specific job run. + FLAGS: - -h, --help help for start - -w, --wait Wait until the job reach a stable state, use job definition timeout + -h, --help help for start + --list-sub-commands List all subcommands + -w, --wait Wait until the job reach a stable state, use job definition timeout GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-update-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-update-usage.golden index 7faf0f1634..2ebca6ee69 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-update-usage.golden @@ -8,11 +8,12 @@ USAGE: ARGS: job-definition-id UUID of the job definition to update [name] Name of the job definition - [cpu-limit] CPU limit of the job + [cpu-limit] CPU limit of the job (in mvCPU) [memory-limit] Memory limit of the job (in MiB) [local-storage-capacity] Local storage capacity of the job (in MiB) [image-uri] Image to use for the job - [command] Startup command + [startup-command.{index}] Job startup command. Overrides the default defined in the job image. + [args.{index}] Job arguments. Overrides the default arguments defined in the job image. [environment-variables.{key}] Environment variables of the job [description] Description of the job [job-timeout] Timeout of the job in seconds @@ -20,8 +21,12 @@ ARGS: [cron-schedule.timezone] [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) +DEPRECATED ARGS: + [command] Startup command. If empty or not defined, the image's default command is used. + FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-definition-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-definition-usage.golden index d7f69bb1b0..4e5398c68e 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-definition-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-definition-usage.golden @@ -8,11 +8,12 @@ AVAILABLE COMMANDS: delete Delete an existing job definition by its unique identifier get Get a job definition by its unique identifier list List all your job definitions with filters - start Run an existing job definition by its unique identifier. This will create a new job run + start Run an existing job definition using its unique identifier and create a new job run update Update an existing job definition associated with the specified unique identifier FLAGS: - -h, --help help for definition + -h, --help help for definition + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-run-get-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-run-get-usage.golden index 3ec92719a2..26528456d9 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-run-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-run-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-run-list-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-run-list-usage.golden index 1d501410be..63fb1dc28a 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-run-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-run-list-usage.golden @@ -9,13 +9,15 @@ ARGS: [order-by] (created_at_asc | created_at_desc) [job-definition-id] [project-id] - [state] (unknown_state | queued | scheduled | running | succeeded | failed | canceled | internal_error) - [states.{index}] (unknown_state | queued | scheduled | running | succeeded | failed | canceled | internal_error) + [state] (unknown_state | initialized | validated | queued | running | succeeded | failed | interrupting | interrupted | retrying) + [states.{index}] (unknown_state | initialized | validated | queued | running | succeeded | failed | interrupting | interrupted | retrying) + [reasons.{index}] (unknown_reason | invalid_request | timeout | cancellation | technical_error | image_not_found | invalid_image | memory_usage_exceeded | storage_usage_exceeded | exited_with_error | secret_disabled | secret_not_found | quota_exceeded) [organization-id] [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-run-stop-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-run-stop-usage.golden index 2d9d180c7a..06ec45510c 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-run-stop-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-run-stop-usage.golden @@ -1,16 +1,17 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟥🟥🟥 STDERR️️ 🟥🟥🟥️ -Stop a job run by its unique identifier. +Stop a job run using its unique identifier. USAGE: - scw jobs run stop [arg=value ...] + scw jobs run stop [arg=value ...] ARGS: job-run-id UUID of the job run to stop [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for stop + -h, --help help for stop + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-run-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-run-usage.golden index 998efc8a21..d27ed22dfc 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-run-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-run-usage.golden @@ -6,11 +6,12 @@ USAGE: AVAILABLE COMMANDS: get Get a job run by its unique identifier list List all job runs with filters - stop Stop a job run by its unique identifier + stop Stop a job run using its unique identifier wait Wait for a job run to reach a stable state FLAGS: - -h, --help help for run + -h, --help help for run + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-run-wait-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-run-wait-usage.golden index 3f1cd0cb57..a123ba4d49 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-run-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-run-wait-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-secret-create-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-secret-create-usage.golden index 188736b806..78d3fbc171 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-secret-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-secret-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-secret-delete-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-secret-delete-usage.golden index 71ced31a1d..af277aaf8b 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-secret-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-secret-delete-usage.golden @@ -6,12 +6,12 @@ USAGE: scw jobs secret delete [arg=value ...] ARGS: - job-definition-id UUID of the job definition - secret-id UUID of the secret reference within the job - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + secret-id UUID of the secret reference within the job + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-secret-get-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-secret-get-usage.golden index 4878d6c085..8259ae7ee1 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-secret-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-secret-get-usage.golden @@ -6,12 +6,12 @@ USAGE: scw jobs secret get [arg=value ...] ARGS: - job-definition-id UUID of the job definition - secret-id UUID of the secret reference within the job - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + secret-id UUID of the secret reference within the job + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-secret-list-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-secret-list-usage.golden index e139b318aa..6a828d1e37 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-secret-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-secret-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-secret-update-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-secret-update-usage.golden index fded05308a..c2e8cf5926 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-secret-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-secret-update-usage.golden @@ -6,7 +6,6 @@ USAGE: scw jobs secret update [arg=value ...] ARGS: - job-definition-id UUID of the job definition secret-id UUID of the secret reference within the job [secret-manager-version] Version of the secret in Secret Manager [path] Path of the secret to mount inside the job (either `path` or `env_var_name` must be set) @@ -14,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-secret-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-secret-usage.golden index c9b77a8360..805a0d63d1 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-secret-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-secret-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: update Update a secret reference within a job definition FLAGS: - -h, --help help for secret + -h, --help help for secret + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-jobs-usage.golden b/cmd/scw/testdata/test-all-usage-jobs-usage.golden index 9dc269e410..40b3d966e0 100644 --- a/cmd/scw/testdata/test-all-usage-jobs-usage.golden +++ b/cmd/scw/testdata/test-all-usage-jobs-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: secret FLAGS: - -h, --help help for jobs + -h, --help help for jobs + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-acl-add-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-acl-add-usage.golden index 8fc1e79148..cdf0a2e764 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-acl-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-acl-add-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-acl-delete-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-acl-delete-usage.golden index 1735828b9b..86c4b48ac5 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-acl-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-acl-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-acl-list-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-acl-list-usage.golden index e82c2e4525..e39da27813 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-acl-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-acl-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-acl-set-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-acl-set-usage.golden index 195e776606..7f96d2c90c 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-acl-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-acl-set-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-acl-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-acl-usage.golden index 13173ea638..1cc667c6b6 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-acl-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-acl-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: set Set new ACLs FLAGS: - -h, --help help for acl + -h, --help help for acl + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-create-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-create-usage.golden index c980a75ae3..10d8f1f64b 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-create-usage.golden @@ -38,16 +38,23 @@ ARGS: [pools.{index}.root-volume-size] System volume disk size [pools.{index}.public-ip-disabled] Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway [pools.{index}.security-group-id] Security group ID in which all the nodes of the pool will be created. If unset, the pool will use default Kapsule security group in current zone - [autoscaler-config.scale-down-disabled] Disable the cluster autoscaler + [pools.{index}.labels.{key}] Kubernetes labels applied and reconciled on the nodes + [pools.{index}.taints.{index}.key] The taint key to be applied to a node + [pools.{index}.taints.{index}.value] The taint value corresponding to the taint key + [pools.{index}.taints.{index}.effect] Effect defines the effects of Taint (NoSchedule | PreferNoSchedule | NoExecute) + [pools.{index}.startup-taints.{index}.key] The taint key to be applied to a node + [pools.{index}.startup-taints.{index}.value] The taint value corresponding to the taint key + [pools.{index}.startup-taints.{index}.effect] Effect defines the effects of Taint (NoSchedule | PreferNoSchedule | NoExecute) + [autoscaler-config.scale-down-disabled] Forbid cluster autoscaler to scale down the cluster, defaults to false [autoscaler-config.scale-down-delay-after-add] How long after scale up the scale down evaluation resumes [autoscaler-config.estimator] Type of resource estimator to be used in scale up (unknown_estimator | binpacking) - [autoscaler-config.expander] Type of node group expander to be used in scale up (unknown_expander | random | most_pods | least_waste | priority | price) - [autoscaler-config.ignore-daemonsets-utilization] Ignore DaemonSet pods when calculating resource utilization for scaling down - [autoscaler-config.balance-similar-node-groups] Detect similar node groups and balance the number of nodes between them + [autoscaler-config.expander] Kubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details (unknown_expander | random | most_pods | least_waste | priority | price) + [autoscaler-config.ignore-daemonsets-utilization] Ignore DaemonSet pods when calculating resource utilization for scaling down, defaults to false + [autoscaler-config.balance-similar-node-groups] Detect similar node groups and balance the number of nodes between them, defaults to false [autoscaler-config.expendable-pods-priority-cutoff] Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they won't cause scale up. Pods with null priority (PodPriority disabled) are non expendable - [autoscaler-config.scale-down-unneeded-time] How long a node should be unneeded before it is eligible to be scaled down - [autoscaler-config.scale-down-utilization-threshold] Node utilization level, defined as a sum of requested resources divided by capacity, below which a node can be considered for scale down - [autoscaler-config.max-graceful-termination-sec] Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node + [autoscaler-config.scale-down-unneeded-time] How long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes + [autoscaler-config.scale-down-utilization-threshold] Node utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down + [autoscaler-config.max-graceful-termination-sec] Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes) [auto-upgrade.enable] Defines whether auto upgrade is enabled for the cluster [auto-upgrade.maintenance-window.start-hour] Start time of the two-hour maintenance window [auto-upgrade.maintenance-window.day] Day of the week for the maintenance window (any | monday | tuesday | wednesday | thursday | friday | saturday | sunday) @@ -69,8 +76,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create - -w, --wait wait until the cluster is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the cluster is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-delete-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-delete-usage.golden index f3f8136a2d..05986e7c2d 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-delete-usage.golden @@ -18,8 +18,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete - -w, --wait wait until the cluster is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the cluster is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-get-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-get-usage.golden index a5886ff438..8eb3f9b103 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-types-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-types-usage.golden index 1a3c446d8c..36f44cf6ea 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-types-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-types-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list-available-types + -h, --help help for list-available-types + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-versions-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-versions-usage.golden index 569aaabd1f..ba79b3e6e0 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-versions-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-list-available-versions-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list-available-versions + -h, --help help for list-available-versions + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-list-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-list-usage.golden index 0bca77c84d..f35b25c5d8 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-list-usage.golden @@ -26,7 +26,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-reset-admin-token-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-reset-admin-token-usage.golden index 47d9975808..019489c2a4 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-reset-admin-token-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-reset-admin-token-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for reset-admin-token + -h, --help help for reset-admin-token + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-set-type-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-set-type-usage.golden index f453b4adbc..ec0b5ac16f 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-set-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-set-type-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for set-type + -h, --help help for set-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-type-list-usage.golden index d893f7a938..8ad3981651 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-type-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-type-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-type-usage.golden index 7296283057..1dfd9b367d 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-type-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List cluster types FLAGS: - -h, --help help for cluster-type + -h, --help help for cluster-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-update-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-update-usage.golden index 443be56db3..a18d2a0d1c 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-update-usage.golden @@ -17,16 +17,16 @@ ARGS: [name] New external name for the cluster [description] New description for the cluster [tags.{index}] New tags associated with the cluster - [autoscaler-config.scale-down-disabled] Disable the cluster autoscaler + [autoscaler-config.scale-down-disabled] Forbid cluster autoscaler to scale down the cluster, defaults to false [autoscaler-config.scale-down-delay-after-add] How long after scale up the scale down evaluation resumes [autoscaler-config.estimator] Type of resource estimator to be used in scale up (unknown_estimator | binpacking) - [autoscaler-config.expander] Type of node group expander to be used in scale up (unknown_expander | random | most_pods | least_waste | priority | price) - [autoscaler-config.ignore-daemonsets-utilization] Ignore DaemonSet pods when calculating resource utilization for scaling down - [autoscaler-config.balance-similar-node-groups] Detect similar node groups and balance the number of nodes between them + [autoscaler-config.expander] Kubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details (unknown_expander | random | most_pods | least_waste | priority | price) + [autoscaler-config.ignore-daemonsets-utilization] Ignore DaemonSet pods when calculating resource utilization for scaling down, defaults to false + [autoscaler-config.balance-similar-node-groups] Detect similar node groups and balance the number of nodes between them, defaults to false [autoscaler-config.expendable-pods-priority-cutoff] Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they won't cause scale up. Pods with null priority (PodPriority disabled) are non expendable - [autoscaler-config.scale-down-unneeded-time] How long a node should be unneeded before it is eligible to be scaled down - [autoscaler-config.scale-down-utilization-threshold] Node utilization level, defined as a sum of requested resources divided by capacity, below which a node can be considered for scale down - [autoscaler-config.max-graceful-termination-sec] Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node + [autoscaler-config.scale-down-unneeded-time] How long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes + [autoscaler-config.scale-down-utilization-threshold] Node utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down + [autoscaler-config.max-graceful-termination-sec] Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes) [auto-upgrade.enable] Defines whether auto upgrade is enabled for the cluster [auto-upgrade.maintenance-window.start-hour] Start time of the two-hour maintenance window [auto-upgrade.maintenance-window.day] Day of the week for the maintenance window (any | monday | tuesday | wednesday | thursday | friday | saturday | sunday) @@ -43,8 +43,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update - -w, --wait wait until the cluster is ready + -h, --help help for update + --list-sub-commands List all subcommands + -w, --wait wait until the cluster is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-upgrade-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-upgrade-usage.golden index 1416417b3a..f1c7a1a58c 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-upgrade-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-upgrade-usage.golden @@ -19,8 +19,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for upgrade - -w, --wait wait until the cluster is ready + -h, --help help for upgrade + --list-sub-commands List all subcommands + -w, --wait wait until the cluster is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-usage.golden index ceecd151d9..bd0db048fd 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-usage.golden @@ -22,7 +22,8 @@ WORKFLOW COMMANDS: wait Wait for a cluster to reach a stable state FLAGS: - -h, --help help for cluster + -h, --help help for cluster + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-cluster-wait-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-cluster-wait-usage.golden index 784021b1a2..e20d4e6ced 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-cluster-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-cluster-wait-usage.golden @@ -16,7 +16,8 @@ ARGS: [timeout=10m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-get-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-get-usage.golden index 3551e1f57c..5233c4600e 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-get-usage.golden @@ -21,7 +21,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-install-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-install-usage.golden index f70840c178..56497fa883 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-install-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-install-usage.golden @@ -23,7 +23,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for install + -h, --help help for install + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-uninstall-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-uninstall-usage.golden index d68eeb22ff..278b9ccd2e 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-uninstall-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-uninstall-usage.golden @@ -14,7 +14,8 @@ ARGS: cluster-id Cluster ID from which to uninstall the kubeconfig FLAGS: - -h, --help help for uninstall + -h, --help help for uninstall + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-usage.golden index f85519dd28..f143f8f3cd 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-kubeconfig-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: uninstall Uninstall a kubeconfig FLAGS: - -h, --help help for kubeconfig + -h, --help help for kubeconfig + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-delete-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-delete-usage.golden index 6dd8d1b40e..28794a9d42 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-delete-usage.golden @@ -22,7 +22,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-get-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-get-usage.golden index 01b9e209a9..49a81e74ba 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-list-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-list-usage.golden index 9f6d75ee94..18ec88f481 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-list-usage.golden @@ -24,7 +24,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-reboot-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-reboot-usage.golden index b55801df1f..c0c70f8b3d 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-reboot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-reboot-usage.golden @@ -14,8 +14,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for reboot - -w, --wait wait until the node is ready + -h, --help help for reboot + --list-sub-commands List all subcommands + -w, --wait wait until the node is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-replace-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-replace-usage.golden index 2c7380ee9d..4c7a0b8afe 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-replace-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-replace-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for replace + -h, --help help for replace + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-usage.golden index 336bc96056..4105d7001e 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-usage.golden @@ -17,7 +17,8 @@ WORKFLOW COMMANDS: wait Wait for a node to reach a stable state FLAGS: - -h, --help help for node + -h, --help help for node + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-node-wait-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-node-wait-usage.golden index 6bed36c6c9..11f2969297 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-node-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-node-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=10m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-add-external-node-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-add-external-node-usage.golden index f4db911b52..bd31fd2b1e 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-add-external-node-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-add-external-node-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for add-external-node + -h, --help help for add-external-node + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-create-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-create-usage.golden index 9067136f48..14445464e7 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-create-usage.golden @@ -35,11 +35,19 @@ ARGS: [root-volume-size] System volume disk size [public-ip-disabled] Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway [security-group-id] Security group ID in which all the nodes of the pool will be created. If unset, the pool will use default Kapsule security group in current zone + [labels.{key}] Kubernetes labels applied and reconciled on the nodes + [taints.{index}.key] The taint key to be applied to a node + [taints.{index}.value] The taint value corresponding to the taint key + [taints.{index}.effect] Effect defines the effects of Taint (NoSchedule | PreferNoSchedule | NoExecute) + [startup-taints.{index}.key] The taint key to be applied to a node + [startup-taints.{index}.value] The taint value corresponding to the taint key + [startup-taints.{index}.effect] Effect defines the effects of Taint (NoSchedule | PreferNoSchedule | NoExecute) [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create - -w, --wait wait until the pool is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the pool is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-delete-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-delete-usage.golden index 587e8a4304..8c0f53fb23 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-delete-usage.golden @@ -14,8 +14,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete - -w, --wait wait until the pool is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the pool is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-get-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-get-usage.golden index a2a44c48ba..6f3e862a09 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-list-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-list-usage.golden index 0038571ec6..80247f3bc0 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-list-usage.golden @@ -26,7 +26,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-update-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-update-usage.golden index 50e5972997..d25c16745d 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-update-usage.golden @@ -29,11 +29,13 @@ ARGS: [kubelet-args.{key}] New Kubelet arguments to be used by this pool. Note that this feature is experimental [upgrade-policy.max-unavailable] [upgrade-policy.max-surge] + [security-group-id] Security group ID in which all the nodes of the pool will be moved [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update - -w, --wait wait until the pool is ready + -h, --help help for update + --list-sub-commands List all subcommands + -w, --wait wait until the pool is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-upgrade-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-upgrade-usage.golden index 217b7afc52..95aec88b8e 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-upgrade-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-upgrade-usage.golden @@ -16,8 +16,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for upgrade - -w, --wait wait until the pool is ready + -h, --help help for upgrade + --list-sub-commands List all subcommands + -w, --wait wait until the pool is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-usage.golden index d1fedd8c96..75f2b0f1bc 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-usage.golden @@ -7,20 +7,20 @@ USAGE: scw k8s pool AVAILABLE COMMANDS: - add-external-node Add an external node to a Kosmos Pool - create Create a new Pool in a Cluster - delete Delete a Pool in a Cluster - get Get a Pool in a Cluster - list List Pools in a Cluster - migrate-to-new-images Migrate specific pools or all pools of a cluster to new images. - update Update a Pool in a Cluster - upgrade Upgrade a Pool in a Cluster + add-external-node Add an external node to a Kosmos Pool + create Create a new Pool in a Cluster + delete Delete a Pool in a Cluster + get Get a Pool in a Cluster + list List Pools in a Cluster + update Update a Pool in a Cluster + upgrade Upgrade a Pool in a Cluster WORKFLOW COMMANDS: - wait Wait for a pool to reach a stable state + wait Wait for a pool to reach a stable state FLAGS: - -h, --help help for pool + -h, --help help for pool + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-pool-wait-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-pool-wait-usage.golden index cfa7a7706c..c4445d8efa 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-pool-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-pool-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=10m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-usage.golden index 850c3d1549..428ebb271a 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: version Available Kubernetes versions commands FLAGS: - -h, --help help for k8s + -h, --help help for k8s + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-version-get-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-version-get-usage.golden index 69616347d3..f4ae1c8d0a 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-version-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-version-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-version-list-usage.golden index 65f7045487..7f0e1bf54e 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-version-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-version-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-k8s-version-usage.golden b/cmd/scw/testdata/test-all-usage-k8s-version-usage.golden index 60c9178c52..516761cb82 100644 --- a/cmd/scw/testdata/test-all-usage-k8s-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-k8s-version-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List all available Versions FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-create-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-create-usage.golden index 70eb3ee222..7006ed3b0f 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-create-usage.golden @@ -20,7 +20,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-decrypt-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-decrypt-usage.golden index 5df3c3b03a..77aaca4f7b 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-decrypt-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-decrypt-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for decrypt + -h, --help help for decrypt + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-delete-key-material-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-delete-key-material-usage.golden index d1460780a0..8d6ea6a647 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-delete-key-material-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-delete-key-material-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete-key-material + -h, --help help for delete-key-material + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-delete-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-delete-usage.golden index 3e6b400a29..e408a80cbb 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-disable-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-disable-usage.golden index 9d4fbdc827..7ad7308792 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-disable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-disable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for disable + -h, --help help for disable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-enable-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-enable-usage.golden index 18761b6839..9209da6464 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-enable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-enable-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for enable + -h, --help help for enable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-encrypt-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-encrypt-usage.golden index 1f3493249f..1007bfea41 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-encrypt-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-encrypt-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for encrypt + -h, --help help for encrypt + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-generate-data-key-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-generate-data-key-usage.golden index 54d2047664..167c4d443e 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-generate-data-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-generate-data-key-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for generate-data-key + -h, --help help for generate-data-key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-get-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-get-usage.golden index 6b481a6202..56b8f8bfe6 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-import-key-material-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-import-key-material-usage.golden index 04006fac10..13671c83d0 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-import-key-material-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-import-key-material-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for import-key-material + -h, --help help for import-key-material + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-list-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-list-usage.golden index 82c7e2c4cf..66b10c5107 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-list-usage.golden @@ -16,7 +16,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-protect-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-protect-usage.golden index 633f635f2f..b5305d39d9 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-protect-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-protect-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for protect + -h, --help help for protect + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-rotate-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-rotate-usage.golden index cc303ea0d2..868c950e01 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-rotate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-rotate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for rotate + -h, --help help for rotate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-unprotect-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-unprotect-usage.golden index e3162b4771..99f0bf20d1 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-unprotect-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-unprotect-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for unprotect + -h, --help help for unprotect + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-update-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-update-usage.golden index 7abdfbef68..a78cba0460 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-key-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-key-usage.golden index e84054cf70..22ffd938c7 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-key-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-key-usage.golden @@ -23,7 +23,8 @@ AVAILABLE COMMANDS: update Update a key FLAGS: - -h, --help help for key + -h, --help help for key + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-keymanager-usage.golden b/cmd/scw/testdata/test-all-usage-keymanager-usage.golden index e11228c2fa..95ed233722 100644 --- a/cmd/scw/testdata/test-all-usage-keymanager-usage.golden +++ b/cmd/scw/testdata/test-all-usage-keymanager-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: key Key management commands FLAGS: - -h, --help help for keymanager + -h, --help help for keymanager + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-add-servers-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-add-servers-usage.golden index d02899d015..d467355e4d 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-add-servers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-add-servers-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for add-servers + -h, --help help for add-servers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-create-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-create-usage.golden index 489558d11c..cf9ce22257 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-create-usage.golden @@ -54,7 +54,8 @@ DEPRECATED ARGS: [send-proxy-v2] Deprecated in favor of proxy_protocol field FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-delete-usage.golden index 443ad238eb..f3fb9bef01 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-get-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-get-usage.golden index 5499f14134..da864eb672 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-list-statistics-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-list-statistics-usage.golden index abbd9512d4..033d05c801 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-list-statistics-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-list-statistics-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list-statistics + -h, --help help for list-statistics + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-list-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-list-usage.golden index a15e8ed21c..96a563d955 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-remove-servers-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-remove-servers-usage.golden index 186f811e04..6fcab394cc 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-remove-servers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-remove-servers-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for remove-servers + -h, --help help for remove-servers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-set-servers-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-set-servers-usage.golden index 669815c049..5fb711ba3f 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-set-servers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-set-servers-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set-servers + -h, --help help for set-servers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-update-healthcheck-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-update-healthcheck-usage.golden index 564d8db415..57e19a2c49 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-update-healthcheck-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-update-healthcheck-usage.golden @@ -27,7 +27,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update-healthcheck + -h, --help help for update-healthcheck + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-update-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-update-usage.golden index 307cbd5125..eada07d951 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-update-usage.golden @@ -31,7 +31,8 @@ DEPRECATED ARGS: [send-proxy-v2] Deprecated in favor of proxy_protocol field FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-backend-usage.golden b/cmd/scw/testdata/test-all-usage-lb-backend-usage.golden index 77865fcd05..2923d32468 100644 --- a/cmd/scw/testdata/test-all-usage-lb-backend-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-backend-usage.golden @@ -18,7 +18,8 @@ AVAILABLE COMMANDS: update-healthcheck Update a health check for a given backend FLAGS: - -h, --help help for backend + -h, --help help for backend + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-certificate-create-usage.golden b/cmd/scw/testdata/test-all-usage-lb-certificate-create-usage.golden index 7bbff8b3f2..bff16bb1f9 100644 --- a/cmd/scw/testdata/test-all-usage-lb-certificate-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-certificate-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-certificate-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lb-certificate-delete-usage.golden index 41a69df160..67ad00d36a 100644 --- a/cmd/scw/testdata/test-all-usage-lb-certificate-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-certificate-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-certificate-get-usage.golden b/cmd/scw/testdata/test-all-usage-lb-certificate-get-usage.golden index 2fdb016b4b..1888c1f427 100644 --- a/cmd/scw/testdata/test-all-usage-lb-certificate-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-certificate-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-certificate-list-usage.golden b/cmd/scw/testdata/test-all-usage-lb-certificate-list-usage.golden index e5305bf5ad..6d8c829606 100644 --- a/cmd/scw/testdata/test-all-usage-lb-certificate-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-certificate-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-certificate-update-usage.golden b/cmd/scw/testdata/test-all-usage-lb-certificate-update-usage.golden index fbe4deb6e8..53690dba63 100644 --- a/cmd/scw/testdata/test-all-usage-lb-certificate-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-certificate-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-lb-certificate-usage.golden index a19f1a94cb..ad1bc7119f 100644 --- a/cmd/scw/testdata/test-all-usage-lb-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-certificate-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an SSL/TLS certificate FLAGS: - -h, --help help for certificate + -h, --help help for certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-frontend-create-usage.golden b/cmd/scw/testdata/test-all-usage-lb-frontend-create-usage.golden index fa2ff7bebb..d403c8a4e6 100644 --- a/cmd/scw/testdata/test-all-usage-lb-frontend-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-frontend-create-usage.golden @@ -21,7 +21,8 @@ DEPRECATED ARGS: [certificate-id] Certificate ID, deprecated in favor of certificate_ids array FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-frontend-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lb-frontend-delete-usage.golden index de948a5ba4..5302158c00 100644 --- a/cmd/scw/testdata/test-all-usage-lb-frontend-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-frontend-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-frontend-get-usage.golden b/cmd/scw/testdata/test-all-usage-lb-frontend-get-usage.golden index 84a999e734..063b9080de 100644 --- a/cmd/scw/testdata/test-all-usage-lb-frontend-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-frontend-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-frontend-list-usage.golden b/cmd/scw/testdata/test-all-usage-lb-frontend-list-usage.golden index 2626f76c15..64b0be055e 100644 --- a/cmd/scw/testdata/test-all-usage-lb-frontend-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-frontend-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-frontend-update-usage.golden b/cmd/scw/testdata/test-all-usage-lb-frontend-update-usage.golden index c8b77899c9..fec62fb2de 100644 --- a/cmd/scw/testdata/test-all-usage-lb-frontend-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-frontend-update-usage.golden @@ -21,7 +21,8 @@ DEPRECATED ARGS: [certificate-id] Certificate ID, deprecated in favor of certificate_ids array FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-frontend-usage.golden b/cmd/scw/testdata/test-all-usage-lb-frontend-usage.golden index 6625a8c9c2..cc42438e27 100644 --- a/cmd/scw/testdata/test-all-usage-lb-frontend-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-frontend-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a frontend FLAGS: - -h, --help help for frontend + -h, --help help for frontend + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-private-network-attach-usage.golden b/cmd/scw/testdata/test-all-usage-lb-private-network-attach-usage.golden index 98ec50f019..a56e86c434 100644 --- a/cmd/scw/testdata/test-all-usage-lb-private-network-attach-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-private-network-attach-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for attach + -h, --help help for attach + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-private-network-detach-usage.golden b/cmd/scw/testdata/test-all-usage-lb-private-network-detach-usage.golden index c5d95d8af0..031f8c5a52 100644 --- a/cmd/scw/testdata/test-all-usage-lb-private-network-detach-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-private-network-detach-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for detach + -h, --help help for detach + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-private-network-list-usage.golden b/cmd/scw/testdata/test-all-usage-lb-private-network-list-usage.golden index c3a66774d8..d6b1e0c84a 100644 --- a/cmd/scw/testdata/test-all-usage-lb-private-network-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-private-network-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-private-network-usage.golden b/cmd/scw/testdata/test-all-usage-lb-private-network-usage.golden index f3d65b1629..c9fe0753dd 100644 --- a/cmd/scw/testdata/test-all-usage-lb-private-network-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-private-network-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List Private Networks attached to a Load Balancer FLAGS: - -h, --help help for private-network + -h, --help help for private-network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-route-create-usage.golden b/cmd/scw/testdata/test-all-usage-lb-route-create-usage.golden index fe538c6c80..62d6cbf906 100644 --- a/cmd/scw/testdata/test-all-usage-lb-route-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-route-create-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-route-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lb-route-delete-usage.golden index 50fdf2e845..8fad793b5a 100644 --- a/cmd/scw/testdata/test-all-usage-lb-route-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-route-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-route-get-usage.golden b/cmd/scw/testdata/test-all-usage-lb-route-get-usage.golden index f5edbafd60..9d08fff9bb 100644 --- a/cmd/scw/testdata/test-all-usage-lb-route-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-route-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-route-list-usage.golden b/cmd/scw/testdata/test-all-usage-lb-route-list-usage.golden index 33a78af96f..0a7f0dda3a 100644 --- a/cmd/scw/testdata/test-all-usage-lb-route-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-route-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-route-update-usage.golden b/cmd/scw/testdata/test-all-usage-lb-route-update-usage.golden index 8bc7b4c601..1407b486dd 100644 --- a/cmd/scw/testdata/test-all-usage-lb-route-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-route-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-route-usage.golden b/cmd/scw/testdata/test-all-usage-lb-route-usage.golden index e7c4d21701..6f6156f0a6 100644 --- a/cmd/scw/testdata/test-all-usage-lb-route-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-route-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a route FLAGS: - -h, --help help for route + -h, --help help for route + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-create-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-create-usage.golden index a31f9271b9..641fbb89d2 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-delete-usage.golden index 3ba421d2ef..708ca11112 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-get-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-get-usage.golden index 06b3c7ba99..46d8d77398 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-list-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-list-usage.golden index 16ba763398..d1ebd8b0b8 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-subscribe-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-subscribe-usage.golden index 6d56976d54..3f0e904239 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-subscribe-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-subscribe-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for subscribe + -h, --help help for subscribe + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-unsubscribe-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-unsubscribe-usage.golden index 919ae9d775..5a7e9a15f4 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-unsubscribe-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-unsubscribe-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for unsubscribe + -h, --help help for unsubscribe + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-update-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-update-usage.golden index 5ddc596d48..7bc9f1f2a2 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-subscriber-usage.golden b/cmd/scw/testdata/test-all-usage-lb-subscriber-usage.golden index c408e9c2e7..c15f33321c 100644 --- a/cmd/scw/testdata/test-all-usage-lb-subscriber-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-subscriber-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: update Update a subscriber FLAGS: - -h, --help help for subscriber + -h, --help help for subscriber + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lb-usage.golden b/cmd/scw/testdata/test-all-usage-lb-usage.golden index 5afcaf4612..ce697dc9e0 100644 --- a/cmd/scw/testdata/test-all-usage-lb-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lb-usage.golden @@ -18,7 +18,8 @@ AVAILABLE COMMANDS: subscriber Subscriber management commands FLAGS: - -h, --help help for lb + -h, --help help for lb + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-create-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-create-usage.golden index e5371558f3..777a49c3c6 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-create-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-delete-usage.golden index 5e61ce976c..cbf97591cf 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-get-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-get-usage.golden index 9eebf396c8..d0c2e1ab44 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-list-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-list-usage.golden index ba304005fb..f87a81997e 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-set-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-set-usage.golden index 3e29656977..b2a83b0f58 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-set-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-update-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-update-usage.golden index bf0bbb03d4..8718b8199f 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-update-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbacl-usage.golden b/cmd/scw/testdata/test-all-usage-lbacl-usage.golden index 371cf95387..2b82184fb4 100644 --- a/cmd/scw/testdata/test-all-usage-lbacl-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbacl-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update an ACL FLAGS: - -h, --help help for acl + -h, --help help for acl + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbip-create-usage.golden b/cmd/scw/testdata/test-all-usage-lbip-create-usage.golden index a61f92bb62..54b9c7ba8c 100644 --- a/cmd/scw/testdata/test-all-usage-lbip-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbip-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbip-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lbip-delete-usage.golden index 2e5e087095..54acc0fefe 100644 --- a/cmd/scw/testdata/test-all-usage-lbip-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbip-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbip-get-usage.golden b/cmd/scw/testdata/test-all-usage-lbip-get-usage.golden index 8a9b8267cd..8c05b0e350 100644 --- a/cmd/scw/testdata/test-all-usage-lbip-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbip-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbip-list-usage.golden b/cmd/scw/testdata/test-all-usage-lbip-list-usage.golden index 3fac4afc86..d84ac25d11 100644 --- a/cmd/scw/testdata/test-all-usage-lbip-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbip-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbip-update-usage.golden b/cmd/scw/testdata/test-all-usage-lbip-update-usage.golden index d6f1f997a7..0a78a9003a 100644 --- a/cmd/scw/testdata/test-all-usage-lbip-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbip-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lbip-usage.golden b/cmd/scw/testdata/test-all-usage-lbip-usage.golden index 149dad3053..858b4e7768 100644 --- a/cmd/scw/testdata/test-all-usage-lbip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lbip-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an IP address FLAGS: - -h, --help help for ip + -h, --help help for ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-create-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-create-usage.golden index 76a5202813..0b1c59b811 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-create-usage.golden @@ -22,8 +22,9 @@ DEPRECATED ARGS: [ip-id] ID of an existing flexible IP address to attach to the Load Balancer FLAGS: - -h, --help help for create - -w, --wait wait until the lb is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the lb is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-delete-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-delete-usage.golden index bc4f5bac37..cc8813d98f 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-delete-usage.golden @@ -11,8 +11,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete - -w, --wait wait until the lb is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the lb is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-get-stats-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-get-stats-usage.golden index c1d3f1daab..ee515c5b4a 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-get-stats-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-get-stats-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get-stats + -h, --help help for get-stats + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-get-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-get-usage.golden index 754ae746ae..e2100d9b83 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-list-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-list-usage.golden index 1c229d2852..63fe6b47c5 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-migrate-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-migrate-usage.golden index b7a427f6ef..f36c9ac27d 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-migrate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-migrate-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for migrate + -h, --help help for migrate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-types-list-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-types-list-usage.golden index 347bb3dc1a..0809f4ee6f 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-types-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-types-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-types-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-types-usage.golden index 53fd40bb8e..987d535791 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-types-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-types-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List all Load Balancer offer types FLAGS: - -h, --help help for lb-types + -h, --help help for lb-types + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-update-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-update-usage.golden index 737400f878..71606fb5fd 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-update-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-usage.golden index 092f417314..e0c0e02fca 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-usage.golden @@ -18,7 +18,8 @@ WORKFLOW COMMANDS: wait Wait for a load balancer to reach a stable state FLAGS: - -h, --help help for lb + -h, --help help for lb + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-lblb-wait-usage.golden b/cmd/scw/testdata/test-all-usage-lblb-wait-usage.golden index 21e4b1c153..ebad905f83 100644 --- a/cmd/scw/testdata/test-all-usage-lblb-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-lblb-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=10m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-login-usage.golden b/cmd/scw/testdata/test-all-usage-login-usage.golden index df426a3079..0e17d78267 100644 --- a/cmd/scw/testdata/test-all-usage-login-usage.golden +++ b/cmd/scw/testdata/test-all-usage-login-usage.golden @@ -11,7 +11,8 @@ ARGS: [port] The port number used to wait for browser's response FLAGS: - -h, --help help for login + -h, --help help for login + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-category-get-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-category-get-usage.golden index 1dcda37d7c..e00d002aef 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-category-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-category-get-usage.golden @@ -9,7 +9,8 @@ ARGS: category-id FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-category-list-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-category-list-usage.golden index 1d711672b8..cbfed05b1b 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-category-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-category-list-usage.golden @@ -6,7 +6,8 @@ USAGE: scw marketplace category list FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-category-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-category-usage.golden index e5366011a8..fb22d21ed3 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-category-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-category-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List existing image categories FLAGS: - -h, --help help for category + -h, --help help for category + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-image-get-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-image-get-usage.golden index b5dcef786b..2d8464784d 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-image-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-image-get-usage.golden @@ -9,7 +9,8 @@ ARGS: label FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-image-list-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-image-list-usage.golden index b6a264f477..c046a00c0f 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-image-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-image-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [include-eol] Choose to include end-of-life images FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-image-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-image-usage.golden index ac96885b8f..fc4206489d 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-image-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-image-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List marketplace images FLAGS: - -h, --help help for image + -h, --help help for image + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-local-image-get-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-local-image-get-usage.golden index 05d2b9087a..968aef80aa 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-local-image-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-local-image-get-usage.golden @@ -9,7 +9,8 @@ ARGS: local-image-id FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-local-image-list-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-local-image-list-usage.golden index d073dec762..11d9ba5afe 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-local-image-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-local-image-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [type] Filter by type (unknown_type | instance_local | instance_sbs) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-local-image-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-local-image-usage.golden index 95676f4053..445463e053 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-local-image-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-local-image-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List local images from a specific image or version FLAGS: - -h, --help help for local-image + -h, --help help for local-image + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-usage.golden index dc3a28c27b..d6495b43a0 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: version Marketplace version management commands FLAGS: - -h, --help help for marketplace + -h, --help help for marketplace + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-version-get-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-version-get-usage.golden index 6bec4fbf44..dbfce7352f 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-version-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-version-get-usage.golden @@ -9,7 +9,8 @@ ARGS: version-id FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-version-list-usage.golden index 795767db10..c854d6a17f 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-version-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-version-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [order-by] (created_at_asc | created_at_desc) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-marketplace-version-usage.golden b/cmd/scw/testdata/test-all-usage-marketplace-version-usage.golden index b9a9bada97..6d57d83c0d 100644 --- a/cmd/scw/testdata/test-all-usage-marketplace-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-marketplace-version-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List versions of an Image FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-create-account-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-create-account-usage.golden index 9bee097839..1424256a31 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-create-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-create-account-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for create-account + -h, --help help for create-account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-create-context-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-create-context-usage.golden index 30f8fa946e..6d195de98a 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-create-context-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-create-context-usage.golden @@ -18,7 +18,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for create-context + -h, --help help for create-context + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-create-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-create-credentials-usage.golden index ff2cbe4a0c..b74fccd440 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-create-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-create-credentials-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for create-credentials + -h, --help help for create-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-delete-account-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-delete-account-usage.golden index e08fca0038..a1de1ba077 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-delete-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-delete-account-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for delete-account + -h, --help help for delete-account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-delete-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-delete-credentials-usage.golden index 32bf8fe395..f92c11682c 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-delete-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-delete-credentials-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for delete-credentials + -h, --help help for delete-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-get-account-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-get-account-usage.golden index 81b98dc15a..31d8a38b25 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-get-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-get-account-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get-account + -h, --help help for get-account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-get-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-get-credentials-usage.golden index 0792f19c1d..d35f67f619 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-get-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-get-credentials-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get-credentials + -h, --help help for get-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-list-accounts-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-list-accounts-usage.golden index a265712a8c..7fdf5310f9 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-list-accounts-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-list-accounts-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | all) FLAGS: - -h, --help help for list-accounts + -h, --help help for list-accounts + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-list-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-list-credentials-usage.golden index 7643e6dcb2..22ad798df6 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-list-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-list-credentials-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | all) FLAGS: - -h, --help help for list-credentials + -h, --help help for list-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-update-account-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-update-account-usage.golden index 30abc8575d..809daf7f58 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-update-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-update-account-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for update-account + -h, --help help for update-account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-nats-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-nats-usage.golden index ce8170e984..f70d74d57c 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-nats-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-nats-usage.golden @@ -20,7 +20,8 @@ WORKFLOW COMMANDS: create-context Create a new context for natscli FLAGS: - -h, --help help for nats + -h, --help help for nats + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-activate-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-activate-usage.golden index 6750efadb8..4d4cc612d8 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-activate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-activate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for activate + -h, --help help for activate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-create-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-create-credentials-usage.golden index a9324c881b..b2aace273c 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-create-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-create-credentials-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for create-credentials + -h, --help help for create-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-deactivate-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-deactivate-usage.golden index 5a7612d955..cb9fcc5a81 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-deactivate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-deactivate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for deactivate + -h, --help help for deactivate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-delete-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-delete-credentials-usage.golden index 9ce23a828c..8ea8adbd80 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-delete-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-delete-credentials-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for delete-credentials + -h, --help help for delete-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-get-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-get-credentials-usage.golden index e2b50ad9e2..198e6d6bfd 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-get-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-get-credentials-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get-credentials + -h, --help help for get-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-get-info-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-get-info-usage.golden index 487917011d..b04385bfbc 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-get-info-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-get-info-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get-info + -h, --help help for get-info + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-list-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-list-credentials-usage.golden index 3e1aeddabf..277773d32b 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-list-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-list-credentials-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | all) FLAGS: - -h, --help help for list-credentials + -h, --help help for list-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-update-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-update-credentials-usage.golden index ad0fd6ff60..e85d0c0d32 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-update-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-update-credentials-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for update-credentials + -h, --help help for update-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sns-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sns-usage.golden index e165f679f8..9f7fbc8fec 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sns-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sns-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update-credentials Update Topics and Events credentials FLAGS: - -h, --help help for sns + -h, --help help for sns + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-activate-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-activate-usage.golden index e0a3c39e9b..84312f7e3e 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-activate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-activate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for activate + -h, --help help for activate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-create-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-create-credentials-usage.golden index 9b56e336f0..18bb2bed6d 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-create-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-create-credentials-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for create-credentials + -h, --help help for create-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-deactivate-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-deactivate-usage.golden index bd98389f20..7b1cc7dd48 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-deactivate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-deactivate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for deactivate + -h, --help help for deactivate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-delete-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-delete-credentials-usage.golden index 43895f9d6e..08842c3ed3 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-delete-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-delete-credentials-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for delete-credentials + -h, --help help for delete-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-get-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-get-credentials-usage.golden index 88a2d243af..3696531543 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-get-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-get-credentials-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get-credentials + -h, --help help for get-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-get-info-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-get-info-usage.golden index fe1a6226ac..a33a52873c 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-get-info-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-get-info-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get-info + -h, --help help for get-info + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-list-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-list-credentials-usage.golden index 8ede55b0e3..02ee288ab1 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-list-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-list-credentials-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | all) FLAGS: - -h, --help help for list-credentials + -h, --help help for list-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-update-credentials-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-update-credentials-usage.golden index f3ffa75124..2a941531b6 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-update-credentials-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-update-credentials-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for update-credentials + -h, --help help for update-credentials + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-sqs-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-sqs-usage.golden index d15e919e94..db48f1149a 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-sqs-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-sqs-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update-credentials Update Queues credentials FLAGS: - -h, --help help for sqs + -h, --help help for sqs + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mnq-usage.golden b/cmd/scw/testdata/test-all-usage-mnq-usage.golden index 7b6eaf8a94..144a1f4702 100644 --- a/cmd/scw/testdata/test-all-usage-mnq-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mnq-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: sqs MnQ Queues commands FLAGS: - -h, --help help for mnq + -h, --help help for mnq + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-endpoint-create-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-endpoint-create-usage.golden index b0124f6082..d91e064be5 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-endpoint-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-endpoint-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-endpoint-delete-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-endpoint-delete-usage.golden index 528380557a..d6072d3aad 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-endpoint-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-endpoint-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-endpoint-usage.golden index 3302b2d078..1b84a1f3c3 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-endpoint-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-endpoint-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: delete Delete a Database Instance endpoint FLAGS: - -h, --help help for endpoint + -h, --help help for endpoint + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-create-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-create-usage.golden index cdba8bed9a..1253ee55ef 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-create-usage.golden @@ -20,8 +20,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create - -w, --wait wait until the instance is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the instance is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-delete-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-delete-usage.golden index 1a6d8ae532..d744f3d0e4 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-get-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-get-certificate-usage.golden index 72838deb40..0ba3545c42 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-get-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-get-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-certificate + -h, --help help for get-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-get-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-get-usage.golden index 6ca461ba34..96988bfc05 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-list-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-list-usage.golden index b4ead65d2e..7baf4d7428 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-update-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-update-usage.golden index efaa082d62..f767498b60 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-upgrade-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-upgrade-usage.golden index a69762e598..60192d0118 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-upgrade-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-upgrade-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for upgrade + -h, --help help for upgrade + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-usage.golden index b095be96e1..9262321980 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-usage.golden @@ -18,7 +18,8 @@ WORKFLOW COMMANDS: wait Wait for an instance to reach a stable state FLAGS: - -h, --help help for instance + -h, --help help for instance + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-instance-wait-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-instance-wait-usage.golden index e5d2609688..5012963cb6 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-instance-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-instance-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=20m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-node-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-node-type-list-usage.golden index 02a7ff4074..a5229ce379 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-node-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-node-type-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-node-type-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-node-type-usage.golden index 48f83d04bf..fb1d0c9183 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-node-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-node-type-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List available node types FLAGS: - -h, --help help for node-type + -h, --help help for node-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-create-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-create-usage.golden index 6dbf7a4750..775f372029 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-delete-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-delete-usage.golden index 37faf9b657..92346b9d5c 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-get-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-get-usage.golden index 2008ebe0d6..550f985ef2 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-list-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-list-usage.golden index d38b9f6088..dc3345be11 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-restore-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-restore-usage.golden index 5929921108..2ea564a8b7 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-restore-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for restore + -h, --help help for restore + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-update-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-update-usage.golden index f2132d911d..e64d2d332e 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-usage.golden index 9882792c72..d43f3dd8ea 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-snapshot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-snapshot-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update a Database Instance snapshot FLAGS: - -h, --help help for snapshot + -h, --help help for snapshot + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-usage.golden index b74975d8b4..a53b4b0382 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: version MongoDB® version management commands FLAGS: - -h, --help help for mongodb + -h, --help help for mongodb + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-user-create-usage.golden index b2524af3f0..f1177726ea 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-user-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-user-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-user-delete-usage.golden index 53b2e6b06f..80cd9d2582 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-user-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-user-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-user-list-usage.golden index cf25644787..69c8524be3 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-user-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-user-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-user-set-role-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-user-set-role-usage.golden index 776ab02c22..222bc17b3b 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-user-set-role-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-user-set-role-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for set-role + -h, --help help for set-role + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-user-update-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-user-update-usage.golden index c6e6c283ef..65bdc18a65 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-user-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-user-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-user-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-user-usage.golden index 0a86c0ce43..b7ef3c532e 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-user-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-user-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a user on a Database Instance FLAGS: - -h, --help help for user + -h, --help help for user + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-version-list-usage.golden index 3669f2ee40..d08d6c1c85 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-version-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-version-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-mongodb-version-usage.golden b/cmd/scw/testdata/test-all-usage-mongodb-version-usage.golden index 243d83fd1b..3e8f6c6d1c 100644 --- a/cmd/scw/testdata/test-all-usage-mongodb-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-mongodb-version-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List available MongoDB® versions FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-bucket-create-usage.golden b/cmd/scw/testdata/test-all-usage-object-bucket-create-usage.golden index 9dab63073c..2647ef1d1d 100644 --- a/cmd/scw/testdata/test-all-usage-object-bucket-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-bucket-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-bucket-delete-usage.golden b/cmd/scw/testdata/test-all-usage-object-bucket-delete-usage.golden index f5f40521fa..14af368500 100644 --- a/cmd/scw/testdata/test-all-usage-object-bucket-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-bucket-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-bucket-get-usage.golden b/cmd/scw/testdata/test-all-usage-object-bucket-get-usage.golden index b59783fe10..e6570ae6da 100644 --- a/cmd/scw/testdata/test-all-usage-object-bucket-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-bucket-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-bucket-list-usage.golden b/cmd/scw/testdata/test-all-usage-object-bucket-list-usage.golden index 8ca8dbb6b4..6edf5fe04d 100644 --- a/cmd/scw/testdata/test-all-usage-object-bucket-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-bucket-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-bucket-update-usage.golden b/cmd/scw/testdata/test-all-usage-object-bucket-update-usage.golden index a0ed4de658..7631a2d1af 100644 --- a/cmd/scw/testdata/test-all-usage-object-bucket-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-bucket-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-bucket-usage.golden b/cmd/scw/testdata/test-all-usage-object-bucket-usage.golden index efb58d9e81..c276073dd5 100644 --- a/cmd/scw/testdata/test-all-usage-object-bucket-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-bucket-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an S3 bucket FLAGS: - -h, --help help for bucket + -h, --help help for bucket + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-config-get-usage.golden b/cmd/scw/testdata/test-all-usage-object-config-get-usage.golden index d4d3dee0c8..28fd138796 100644 --- a/cmd/scw/testdata/test-all-usage-object-config-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-config-get-usage.golden @@ -21,7 +21,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-config-install-usage.golden b/cmd/scw/testdata/test-all-usage-object-config-install-usage.golden index 7510b02ec6..8624442664 100644 --- a/cmd/scw/testdata/test-all-usage-object-config-install-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-config-install-usage.golden @@ -21,7 +21,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for install + -h, --help help for install + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-config-usage.golden b/cmd/scw/testdata/test-all-usage-object-config-usage.golden index 5fc8c4ec8b..a61661bc69 100644 --- a/cmd/scw/testdata/test-all-usage-object-config-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-config-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: install Install a S3 tool configuration file to its default location FLAGS: - -h, --help help for config + -h, --help help for config + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-object-usage.golden b/cmd/scw/testdata/test-all-usage-object-usage.golden index 57b1ae5baa..1fe2e1e6d7 100644 --- a/cmd/scw/testdata/test-all-usage-object-usage.golden +++ b/cmd/scw/testdata/test-all-usage-object-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: config Manage configuration files for popular S3 tools FLAGS: - -h, --help help for object + -h, --help help for object + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-acl-add-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-acl-add-usage.golden index f2736933e0..bc1895112e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-acl-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-acl-add-usage.golden @@ -13,8 +13,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for add - -w, --wait wait until the acl is ready + -h, --help help for add + --list-sub-commands List all subcommands + -w, --wait wait until the acl is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-acl-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-acl-delete-usage.golden index 2366381a36..3555233e92 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-acl-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-acl-delete-usage.golden @@ -11,8 +11,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for delete - -w, --wait wait until the acl is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the acl is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-acl-edit-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-acl-edit-usage.golden index 8bc41b775d..6e9eaa85c5 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-acl-edit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-acl-edit-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for edit + -h, --help help for edit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-acl-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-acl-list-usage.golden index 2f398b1b0c..7ba45ff2d0 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-acl-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-acl-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-acl-set-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-acl-set-usage.golden index bdaa2246ca..425a17f3f7 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-acl-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-acl-set-usage.golden @@ -12,8 +12,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for set - -w, --wait wait until the acl is ready + -h, --help help for set + --list-sub-commands List all subcommands + -w, --wait wait until the acl is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-acl-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-acl-usage.golden index a5f22d33e6..dbd70d300e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-acl-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-acl-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: set Set ACL rules for a Database Instance FLAGS: - -h, --help help for acl + -h, --help help for acl + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-create-usage.golden index 0cd67d71ce..18521159f0 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-create-usage.golden @@ -13,8 +13,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create - -w, --wait wait until the backup is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the backup is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-delete-usage.golden index 4b455d5e2e..114ae78272 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-download-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-download-usage.golden index d038f4786a..287ea9ce08 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-download-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-download-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for download + -h, --help help for download + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-export-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-export-usage.golden index e5d6cbaecd..d88266890f 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-export-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-export-usage.golden @@ -10,8 +10,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for export - -w, --wait wait until the backup is ready + -h, --help help for export + --list-sub-commands List all subcommands + -w, --wait wait until the backup is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-get-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-get-usage.golden index c766278cda..8a206e81ea 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-list-usage.golden index 1184d0ad5c..fbc7590c17 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-list-usage.golden @@ -16,7 +16,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-restore-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-restore-usage.golden index 261e6e15b2..cbbed6fb57 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-restore-usage.golden @@ -12,8 +12,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for restore - -w, --wait wait until the backup is ready + -h, --help help for restore + --list-sub-commands List all subcommands + -w, --wait wait until the backup is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-update-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-update-usage.golden index 753ad4a8e1..83203342c6 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-usage.golden index 08c15a458d..209983f9a0 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-usage.golden @@ -19,7 +19,8 @@ WORKFLOW COMMANDS: wait Wait for a backup to reach a stable state FLAGS: - -h, --help help for backup + -h, --help help for backup + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-backup-wait-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-backup-wait-usage.golden index b35054ce68..bf7434772e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-backup-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-backup-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=20m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-database-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-database-create-usage.golden index f384887139..b49fc3d7aa 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-database-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-database-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-database-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-database-delete-usage.golden index ab1c9716d4..b60ce59ea6 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-database-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-database-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-database-get-url-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-database-get-url-usage.golden index 933779e069..ed4f83610b 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-database-get-url-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-database-get-url-usage.golden @@ -11,7 +11,8 @@ ARGS: [db] Name of the Database to connect to FLAGS: - -h, --help help for get-url + -h, --help help for get-url + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-database-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-database-list-usage.golden index dc66d75781..592aa5f0ad 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-database-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-database-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-database-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-database-usage.golden index 4610ba1bb0..14f69b7219 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-database-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-database-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List databases in a Database Instance FLAGS: - -h, --help help for database + -h, --help help for database + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-endpoint-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-endpoint-create-usage.golden index ad23d0ac51..bfc4a8cf03 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-endpoint-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-endpoint-create-usage.golden @@ -14,8 +14,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create - -w, --wait wait until the endpoint is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the endpoint is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-endpoint-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-endpoint-delete-usage.golden index 7d8427ec90..f13c4dc530 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-endpoint-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-endpoint-delete-usage.golden @@ -11,8 +11,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete - -w, --wait wait until the endpoint is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the endpoint is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-endpoint-get-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-endpoint-get-usage.golden index d0c5f20c61..19b56e7286 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-endpoint-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-endpoint-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-endpoint-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-endpoint-list-usage.golden index 4813e8d0d4..78da45805f 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-endpoint-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-endpoint-list-usage.golden @@ -9,7 +9,8 @@ ARGS: instance-id ID of the Database Instance FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-endpoint-migrate-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-endpoint-migrate-usage.golden index 5cb1774136..14c840cd8e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-endpoint-migrate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-endpoint-migrate-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for migrate + -h, --help help for migrate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-endpoint-usage.golden index 3357aa8feb..1e8af1383f 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-endpoint-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-endpoint-usage.golden @@ -19,7 +19,8 @@ AVAILABLE COMMANDS: migrate Migrate an existing instance endpoint to another instance FLAGS: - -h, --help help for endpoint + -h, --help help for endpoint + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-engine-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-engine-list-usage.golden index a8f5be372a..f857fef4c9 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-engine-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-engine-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-engine-settings-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-engine-settings-usage.golden index 98e95ffbd7..9987d50315 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-engine-settings-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-engine-settings-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for settings + -h, --help help for settings + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-engine-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-engine-usage.golden index 30304db53c..63a3f60fad 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-engine-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-engine-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: settings List available settings from an engine. FLAGS: - -h, --help help for engine + -h, --help help for engine + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-clone-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-clone-usage.golden index 992c25638d..c4498acb09 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-clone-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-clone-usage.golden @@ -12,8 +12,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for clone - -w, --wait wait until the instance is ready + -h, --help help for clone + --list-sub-commands List all subcommands + -w, --wait wait until the instance is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-connect-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-connect-usage.golden index 4f5642cb00..3f18ca0fe1 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-connect-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-connect-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams) FLAGS: - -h, --help help for connect + -h, --help help for connect + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-create-usage.golden index b242ba3302..d7c90f9111 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-create-usage.golden @@ -31,8 +31,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create - -w, --wait wait until the instance is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the instance is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-delete-usage.golden index 2f58d464e3..f6c1564ac2 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-delete-usage.golden @@ -10,8 +10,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete - -w, --wait wait until the instance is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the instance is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-get-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-get-certificate-usage.golden index 1f7135283d..7304ec9ab9 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-get-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-get-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get-certificate + -h, --help help for get-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-get-metrics-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-get-metrics-usage.golden index cad0285929..c02bd56b34 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-get-metrics-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-get-metrics-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get-metrics + -h, --help help for get-metrics + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-get-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-get-usage.golden index 64fd0bc618..ce6d9d1c08 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-list-usage.golden index 045d42a1f1..ee5a6396f0 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-renew-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-renew-certificate-usage.golden index e4e80f7f9f..18e9294522 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-renew-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-renew-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for renew-certificate + -h, --help help for renew-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-restart-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-restart-usage.golden index a25966be4e..1d54d57074 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-restart-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-restart-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for restart + -h, --help help for restart + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-update-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-update-usage.golden index d3c3daeea9..6d68865b5e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-update-usage.golden @@ -30,8 +30,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update - -w, --wait wait until the instance is ready + -h, --help help for update + --list-sub-commands List all subcommands + -w, --wait wait until the instance is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-upgrade-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-upgrade-usage.golden index 332e06a9cc..fa96487fc7 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-upgrade-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-upgrade-usage.golden @@ -18,8 +18,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for upgrade - -w, --wait wait until the instance is ready + -h, --help help for upgrade + --list-sub-commands List all subcommands + -w, --wait wait until the instance is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-usage.golden index bb7f424f99..51fbaca16c 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-usage.golden @@ -27,7 +27,8 @@ WORKFLOW COMMANDS: wait Wait for an instance to reach a stable state FLAGS: - -h, --help help for instance + -h, --help help for instance + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-instance-wait-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-instance-wait-usage.golden index 9a9d080a03..667fb1d0a2 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-instance-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-instance-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=20m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-download-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-download-usage.golden index 8c1aafeca0..b6f2009ba6 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-download-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-download-usage.golden @@ -23,7 +23,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for download + -h, --help help for download + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-get-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-get-usage.golden index 44c2311ed8..730ce90648 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-list-details-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-list-details-usage.golden index 364ecb9c98..6c3e23528c 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-list-details-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-list-details-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list-details + -h, --help help for list-details + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-list-usage.golden index 7cf113cabe..f9d8c2fa98 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-prepare-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-prepare-usage.golden index 044baf5c7f..89410aa393 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-prepare-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-prepare-usage.golden @@ -12,8 +12,9 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for prepare - -w, --wait wait until the log is ready + -h, --help help for prepare + --list-sub-commands List all subcommands + -w, --wait wait until the log is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-purge-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-purge-usage.golden index 3509c90a96..25130a57f2 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-purge-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-purge-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for purge + -h, --help help for purge + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-log-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-log-usage.golden index ea3153f678..6dcd5644d3 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-log-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-log-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: purge Purge remote Database Instance logs FLAGS: - -h, --help help for log + -h, --help help for log + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-node-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-node-type-list-usage.golden index 6293f9b3ae..21d49ee995 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-node-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-node-type-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-node-type-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-node-type-usage.golden index df3b22485f..8faa3fb61d 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-node-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-node-type-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List available node types FLAGS: - -h, --help help for node-type + -h, --help help for node-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-privilege-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-privilege-list-usage.golden index 75f95de60b..ba865dff48 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-privilege-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-privilege-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-privilege-set-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-privilege-set-usage.golden index 904329d919..2a60251fd0 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-privilege-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-privilege-set-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-privilege-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-privilege-usage.golden index d2f8e34216..b572dc8f81 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-privilege-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-privilege-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: set Set user privileges for a database FLAGS: - -h, --help help for privilege + -h, --help help for privilege + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-endpoint-usage.golden index 3df878afe3..f1ce95722e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-endpoint-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-endpoint-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create-endpoint + -h, --help help for create-endpoint + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-usage.golden index b44e4770fc..11debd1ef4 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-read-replica-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-read-replica-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-read-replica-delete-usage.golden index efa9e16db9..8a73ed79f5 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-read-replica-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-read-replica-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-read-replica-get-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-read-replica-get-usage.golden index 256b86ce62..283e2d04ce 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-read-replica-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-read-replica-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-read-replica-reset-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-read-replica-reset-usage.golden index 1ad0d6b893..e0f4e6cf1d 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-read-replica-reset-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-read-replica-reset-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for reset + -h, --help help for reset + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-read-replica-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-read-replica-usage.golden index 2007791577..3ba3da4309 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-read-replica-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-read-replica-usage.golden @@ -25,7 +25,8 @@ AVAILABLE COMMANDS: reset Resync a Read Replica FLAGS: - -h, --help help for read-replica + -h, --help help for read-replica + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-setting-add-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-setting-add-usage.golden index f4fceba6c0..53377c0ff1 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-setting-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-setting-add-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-setting-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-setting-delete-usage.golden index f5252bd43f..a397e05d1e 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-setting-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-setting-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-setting-edit-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-setting-edit-usage.golden index 590ce09cc9..66a002583b 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-setting-edit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-setting-edit-usage.golden @@ -19,7 +19,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for edit + -h, --help help for edit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-setting-set-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-setting-set-usage.golden index 25f2fbe25f..6d3fc5846b 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-setting-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-setting-set-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-setting-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-setting-usage.golden index 35e20ae4e3..c235331be1 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-setting-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-setting-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: set Set Database Instance advanced settings FLAGS: - -h, --help help for setting + -h, --help help for setting + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-create-usage.golden index 3fb09f2838..73164a7bcb 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-delete-usage.golden index 036707a217..bcba7a7614 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-get-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-get-usage.golden index 9827fb7351..4f715f3ac5 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-list-usage.golden index fd07c39147..9bd90a6078 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-restore-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-restore-usage.golden index e92af393d5..aad0aedd42 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-restore-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for restore + -h, --help help for restore + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-update-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-update-usage.golden index 52afa4c627..1b80e2a425 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-snapshot-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-snapshot-usage.golden index 220178c286..0bc3406961 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-snapshot-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-snapshot-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update a Database Instance snapshot FLAGS: - -h, --help help for snapshot + -h, --help help for snapshot + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-usage.golden index af71dab494..42e0c496e0 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-usage.golden @@ -21,7 +21,8 @@ AVAILABLE COMMANDS: user User management commands FLAGS: - -h, --help help for rdb + -h, --help help for rdb + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-user-create-usage.golden index cd16bc6d14..4577c898d4 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-user-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-user-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-user-delete-usage.golden index 425f24ea66..1706df2d13 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-user-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-user-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-user-get-url-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-user-get-url-usage.golden index 02badf1a0a..582b9cb556 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-user-get-url-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-user-get-url-usage.golden @@ -11,7 +11,8 @@ ARGS: [db] Name of the Database to connect to FLAGS: - -h, --help help for get-url + -h, --help help for get-url + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-user-list-usage.golden index 861f41df3f..3259dcc829 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-user-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-user-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-user-update-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-user-update-usage.golden index 4bc7911a13..a8962ba4c6 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-user-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-user-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-rdb-user-usage.golden b/cmd/scw/testdata/test-all-usage-rdb-user-usage.golden index 7cee9e0816..476abb2197 100644 --- a/cmd/scw/testdata/test-all-usage-rdb-user-usage.golden +++ b/cmd/scw/testdata/test-all-usage-rdb-user-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a user on a Database Instance FLAGS: - -h, --help help for user + -h, --help help for user + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-acl-add-usage.golden b/cmd/scw/testdata/test-all-usage-redis-acl-add-usage.golden index 75dce08ccb..e8e771f873 100644 --- a/cmd/scw/testdata/test-all-usage-redis-acl-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-acl-add-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-acl-delete-usage.golden b/cmd/scw/testdata/test-all-usage-redis-acl-delete-usage.golden index 8656df5a3f..832b3cad67 100644 --- a/cmd/scw/testdata/test-all-usage-redis-acl-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-acl-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-acl-get-usage.golden b/cmd/scw/testdata/test-all-usage-redis-acl-get-usage.golden index 40e8173484..6501b21448 100644 --- a/cmd/scw/testdata/test-all-usage-redis-acl-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-acl-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-acl-set-usage.golden b/cmd/scw/testdata/test-all-usage-redis-acl-set-usage.golden index 987a2ab9d7..f37115bb8d 100644 --- a/cmd/scw/testdata/test-all-usage-redis-acl-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-acl-set-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-acl-update-usage.golden b/cmd/scw/testdata/test-all-usage-redis-acl-update-usage.golden index 89743947c1..e5a4985728 100644 --- a/cmd/scw/testdata/test-all-usage-redis-acl-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-acl-update-usage.golden @@ -13,7 +13,8 @@ ARGS: zone Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-acl-usage.golden b/cmd/scw/testdata/test-all-usage-redis-acl-usage.golden index 8322342abf..1d63d2d658 100644 --- a/cmd/scw/testdata/test-all-usage-redis-acl-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-acl-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an ACL rule for a Redis™ Database Instance (network rule) FLAGS: - -h, --help help for acl + -h, --help help for acl + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-connect-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-connect-usage.golden new file mode 100644 index 0000000000..8baa22d6c8 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-connect-usage.golden @@ -0,0 +1,30 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Connect to a Redis cluster using locally installed redis-cli. The command will check if redis-cli is installed, download the certificate if TLS is enabled, and prompt for the password. + +USAGE: + scw redis cluster connect [arg=value ...] + +EXAMPLES: + Connect to a Redis cluster + scw redis cluster connect 11111111-1111-1111-1111-111111111111 + + Connect to a Redis cluster via private network + scw redis cluster connect 11111111-1111-1111-1111-111111111111 private-network=true + +ARGS: + [private-network=false] Connect by the private network endpoint attached. + cluster-id UUID of the cluster + [cli-redis] Command line tool to use, default to redis-cli + [cli-args] Additional arguments to pass to redis-cli + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) + +FLAGS: + -h, --help help for connect + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-create-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-create-usage.golden index 97897bc914..20144647f8 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-create-usage.golden @@ -25,8 +25,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for create - -w, --wait wait until the cluster is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the cluster is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-delete-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-delete-usage.golden index 16e66b8007..818f5a1b7d 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-delete-usage.golden @@ -10,8 +10,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for delete - -w, --wait wait until the cluster is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the cluster is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-get-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-get-certificate-usage.golden index ed44379625..599f252033 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-get-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-get-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for get-certificate + -h, --help help for get-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-get-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-get-usage.golden index 46b46f05d2..64a82ba4fc 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-list-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-list-usage.golden index 797eea46f3..8cb1569a4a 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-metrics-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-metrics-usage.golden index aee1033d56..2dd4972606 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-metrics-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-metrics-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for metrics + -h, --help help for metrics + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden index bd961cc2b4..87ec065290 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-migrate-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for migrate + -h, --help help for migrate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-renew-certificate-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-renew-certificate-usage.golden index 94a02b088f..89d2ee32e1 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-renew-certificate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-renew-certificate-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for renew-certificate + -h, --help help for renew-certificate + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-update-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-update-usage.golden index 03048f2e71..ceaccaceb2 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-usage.golden index a0ef829d13..0f76ce697e 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-usage.golden @@ -6,6 +6,7 @@ USAGE: scw redis cluster AVAILABLE COMMANDS: + connect Connect to a Redis cluster using locally installed redis-cli create Create a Redis™ Database Instance delete Delete a Redis™ Database Instance get Get a Redis™ Database Instance @@ -18,7 +19,8 @@ AVAILABLE COMMANDS: wait Wait for a Redis cluster to reach a stable state FLAGS: - -h, --help help for cluster + -h, --help help for cluster + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-cluster-wait-usage.golden b/cmd/scw/testdata/test-all-usage-redis-cluster-wait-usage.golden index d4b1fa9e29..565826bfe7 100644 --- a/cmd/scw/testdata/test-all-usage-redis-cluster-wait-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-cluster-wait-usage.golden @@ -15,7 +15,8 @@ ARGS: [timeout=15m0s] Timeout of the wait FLAGS: - -h, --help help for wait + -h, --help help for wait + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-endpoint-add-usage.golden b/cmd/scw/testdata/test-all-usage-redis-endpoint-add-usage.golden index 1b618efdb0..2c5c147c6e 100644 --- a/cmd/scw/testdata/test-all-usage-redis-endpoint-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-endpoint-add-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-endpoint-delete-usage.golden b/cmd/scw/testdata/test-all-usage-redis-endpoint-delete-usage.golden index c2819c485e..0674933c49 100644 --- a/cmd/scw/testdata/test-all-usage-redis-endpoint-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-endpoint-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-endpoint-get-usage.golden b/cmd/scw/testdata/test-all-usage-redis-endpoint-get-usage.golden index b3d18444dc..8d8ff4c516 100644 --- a/cmd/scw/testdata/test-all-usage-redis-endpoint-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-endpoint-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-endpoint-set-usage.golden b/cmd/scw/testdata/test-all-usage-redis-endpoint-set-usage.golden index a4ab4f7c07..0cc744bed3 100644 --- a/cmd/scw/testdata/test-all-usage-redis-endpoint-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-endpoint-set-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-endpoint-update-usage.golden b/cmd/scw/testdata/test-all-usage-redis-endpoint-update-usage.golden index 0ae50c2d02..4d91bf1886 100644 --- a/cmd/scw/testdata/test-all-usage-redis-endpoint-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-endpoint-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-redis-endpoint-usage.golden index 3f5dffed76..d23dc32b98 100644 --- a/cmd/scw/testdata/test-all-usage-redis-endpoint-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-endpoint-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update an endpoint FLAGS: - -h, --help help for endpoint + -h, --help help for endpoint + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-node-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-redis-node-type-list-usage.golden index 964eace77b..fbe6e1d657 100644 --- a/cmd/scw/testdata/test-all-usage-redis-node-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-node-type-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-node-type-usage.golden b/cmd/scw/testdata/test-all-usage-redis-node-type-usage.golden index 92804771d7..546ec31f77 100644 --- a/cmd/scw/testdata/test-all-usage-redis-node-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-node-type-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List available node types FLAGS: - -h, --help help for node-type + -h, --help help for node-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-setting-add-usage.golden b/cmd/scw/testdata/test-all-usage-redis-setting-add-usage.golden index 2e5883286c..7bd149c72f 100644 --- a/cmd/scw/testdata/test-all-usage-redis-setting-add-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-setting-add-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for add + -h, --help help for add + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-setting-delete-usage.golden b/cmd/scw/testdata/test-all-usage-redis-setting-delete-usage.golden index 5c0de4f774..b25e3830e2 100644 --- a/cmd/scw/testdata/test-all-usage-redis-setting-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-setting-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-setting-set-usage.golden b/cmd/scw/testdata/test-all-usage-redis-setting-set-usage.golden index 21073b508b..1a9d4d94bd 100644 --- a/cmd/scw/testdata/test-all-usage-redis-setting-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-setting-set-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-setting-usage.golden b/cmd/scw/testdata/test-all-usage-redis-setting-usage.golden index d4faf58230..236cb9a5dc 100644 --- a/cmd/scw/testdata/test-all-usage-redis-setting-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-setting-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: set Set advanced settings FLAGS: - -h, --help help for setting + -h, --help help for setting + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-usage.golden b/cmd/scw/testdata/test-all-usage-redis-usage.golden index 09c596db60..1da95d6505 100644 --- a/cmd/scw/testdata/test-all-usage-redis-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: version Redis™ version management commands FLAGS: - -h, --help help for redis + -h, --help help for redis + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-version-list-settings-usage.golden b/cmd/scw/testdata/test-all-usage-redis-version-list-settings-usage.golden index 52752e6146..b632d54769 100644 --- a/cmd/scw/testdata/test-all-usage-redis-version-list-settings-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-version-list-settings-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2) FLAGS: - -h, --help help for list-settings + -h, --help help for list-settings + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-redis-version-list-usage.golden index eb26eef5b9..f40ed6fd7f 100644 --- a/cmd/scw/testdata/test-all-usage-redis-version-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-version-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | pl-waw-1 | pl-waw-2 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-redis-version-usage.golden b/cmd/scw/testdata/test-all-usage-redis-version-usage.golden index c17299d013..b37957b450 100644 --- a/cmd/scw/testdata/test-all-usage-redis-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-redis-version-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list-settings List available settings from a Redis™ version FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-image-delete-usage.golden b/cmd/scw/testdata/test-all-usage-registry-image-delete-usage.golden index c0b467be27..8855344c72 100644 --- a/cmd/scw/testdata/test-all-usage-registry-image-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-image-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-image-get-usage.golden b/cmd/scw/testdata/test-all-usage-registry-image-get-usage.golden index bcddb86b74..49c3cd30d5 100644 --- a/cmd/scw/testdata/test-all-usage-registry-image-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-image-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-image-list-usage.golden b/cmd/scw/testdata/test-all-usage-registry-image-list-usage.golden index 2f3c99f772..13cb4a070f 100644 --- a/cmd/scw/testdata/test-all-usage-registry-image-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-image-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-image-update-usage.golden b/cmd/scw/testdata/test-all-usage-registry-image-update-usage.golden index bdf95e09fb..43537dc219 100644 --- a/cmd/scw/testdata/test-all-usage-registry-image-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-image-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-image-usage.golden b/cmd/scw/testdata/test-all-usage-registry-image-usage.golden index c697dd138c..8894eb09aa 100644 --- a/cmd/scw/testdata/test-all-usage-registry-image-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-image-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update an image FLAGS: - -h, --help help for image + -h, --help help for image + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-install-docker-helper-usage.golden b/cmd/scw/testdata/test-all-usage-registry-install-docker-helper-usage.golden index 4404158cf7..341d5d3c08 100644 --- a/cmd/scw/testdata/test-all-usage-registry-install-docker-helper-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-install-docker-helper-usage.golden @@ -13,7 +13,8 @@ ARGS: [path=/usr/local/bin] Directory in which the Docker helper will be installed. This directory should be in your $PATH FLAGS: - -h, --help help for install-docker-helper + -h, --help help for install-docker-helper + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-login-usage.golden b/cmd/scw/testdata/test-all-usage-registry-login-usage.golden index ed0bae6557..5238164d13 100644 --- a/cmd/scw/testdata/test-all-usage-registry-login-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-login-usage.golden @@ -8,10 +8,11 @@ USAGE: ARGS: [program=docker] Program used to log in to the namespace (docker | podman) - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | it-mil) FLAGS: - -h, --help help for login + -h, --help help for login + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-logout-usage.golden b/cmd/scw/testdata/test-all-usage-registry-logout-usage.golden index 9ddd488ca3..8fc65cd7d3 100644 --- a/cmd/scw/testdata/test-all-usage-registry-logout-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-logout-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for logout + -h, --help help for logout + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-namespace-create-usage.golden b/cmd/scw/testdata/test-all-usage-registry-namespace-create-usage.golden index 6b8e8c0f16..4008e8b505 100644 --- a/cmd/scw/testdata/test-all-usage-registry-namespace-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-namespace-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-namespace-delete-usage.golden b/cmd/scw/testdata/test-all-usage-registry-namespace-delete-usage.golden index d71e2e026a..e73a0e9994 100644 --- a/cmd/scw/testdata/test-all-usage-registry-namespace-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-namespace-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-namespace-get-usage.golden b/cmd/scw/testdata/test-all-usage-registry-namespace-get-usage.golden index 739a9a0294..797a463b81 100644 --- a/cmd/scw/testdata/test-all-usage-registry-namespace-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-namespace-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-namespace-list-usage.golden b/cmd/scw/testdata/test-all-usage-registry-namespace-list-usage.golden index 61631eae50..9a5a0a67c2 100644 --- a/cmd/scw/testdata/test-all-usage-registry-namespace-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-namespace-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-namespace-update-usage.golden b/cmd/scw/testdata/test-all-usage-registry-namespace-update-usage.golden index 23da338e3e..bac7241ce6 100644 --- a/cmd/scw/testdata/test-all-usage-registry-namespace-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-namespace-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-namespace-usage.golden b/cmd/scw/testdata/test-all-usage-registry-namespace-usage.golden index a328501bb3..ecb5853cc0 100644 --- a/cmd/scw/testdata/test-all-usage-registry-namespace-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-namespace-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: update Update a namespace FLAGS: - -h, --help help for namespace + -h, --help help for namespace + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-tag-delete-usage.golden b/cmd/scw/testdata/test-all-usage-registry-tag-delete-usage.golden index 2cfc6b966a..2dd3ab17c4 100644 --- a/cmd/scw/testdata/test-all-usage-registry-tag-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-tag-delete-usage.golden @@ -14,7 +14,8 @@ DEPRECATED ARGS: [force] If two tags share the same digest the deletion will fail unless this parameter is set to true (deprecated) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-tag-get-usage.golden b/cmd/scw/testdata/test-all-usage-registry-tag-get-usage.golden index 07aabfddd8..0cd981f818 100644 --- a/cmd/scw/testdata/test-all-usage-registry-tag-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-tag-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-tag-list-usage.golden b/cmd/scw/testdata/test-all-usage-registry-tag-list-usage.golden index e11568060a..0d4390a72b 100644 --- a/cmd/scw/testdata/test-all-usage-registry-tag-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-tag-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-tag-usage.golden b/cmd/scw/testdata/test-all-usage-registry-tag-usage.golden index a91940f4e4..8714580d9b 100644 --- a/cmd/scw/testdata/test-all-usage-registry-tag-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-tag-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List tags FLAGS: - -h, --help help for tag + -h, --help help for tag + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-registry-usage.golden b/cmd/scw/testdata/test-all-usage-registry-usage.golden index bcab14b7fe..34bc1bc1cf 100644 --- a/cmd/scw/testdata/test-all-usage-registry-usage.golden +++ b/cmd/scw/testdata/test-all-usage-registry-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: tag Tag management commands FLAGS: - -h, --help help for registry + -h, --help help for registry + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-create-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-create-usage.golden new file mode 100644 index 0000000000..0ac87dbb8b --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-create-usage.golden @@ -0,0 +1,39 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a connection. + +USAGE: + scw s2s-vpn connection create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + name Name of the connection + [tags.{index}] List of tags to apply to the connection + [is-ipv6] Defines IP version of the IPSec Tunnel + initiation-policy Who initiates the IPsec tunnel (unknown_initiation_policy | vpn_gateway | customer_gateway) + [ikev2-ciphers.{index}.encryption] (unknown_encryption | aes128 | aes192 | aes256 | aes128gcm | aes192gcm | aes256gcm | aes128ccm | aes256ccm | chacha20poly1305) + [ikev2-ciphers.{index}.integrity] (unknown_integrity | sha256 | sha384 | sha512) + [ikev2-ciphers.{index}.dh-group] (unknown_dhgroup | modp2048 | modp3072 | modp4096 | ecp256 | ecp384 | ecp521 | curve25519) + [esp-ciphers.{index}.encryption] (unknown_encryption | aes128 | aes192 | aes256 | aes128gcm | aes192gcm | aes256gcm | aes128ccm | aes256ccm | chacha20poly1305) + [esp-ciphers.{index}.integrity] (unknown_integrity | sha256 | sha384 | sha512) + [esp-ciphers.{index}.dh-group] (unknown_dhgroup | modp2048 | modp3072 | modp4096 | ecp256 | ecp384 | ecp521 | curve25519) + [enable-route-propagation] Defines whether route propagation is enabled or not. + vpn-gateway-id ID of the VPN gateway to attach to the connection + customer-gateway-id ID of the customer gateway to attach to the connection + [bgp-config-ipv4.routing-policy-id] + [bgp-config-ipv4.private-ip] + [bgp-config-ipv4.peer-private-ip] + [bgp-config-ipv6.routing-policy-id] + [bgp-config-ipv6.private-ip] + [bgp-config-ipv6.peer-private-ip] + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-delete-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-delete-usage.golden new file mode 100644 index 0000000000..b313d79dd4 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an existing connection, specified by its connection ID. + +USAGE: + scw s2s-vpn connection delete [arg=value ...] + +ARGS: + connection-id ID of the connection to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-detach-routing-policy-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-detach-routing-policy-usage.golden new file mode 100644 index 0000000000..902f3f4415 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-detach-routing-policy-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Detach an existing routing policy from a connection, specified by its connection ID. + +USAGE: + scw s2s-vpn connection detach-routing-policy [arg=value ...] + +ARGS: + connection-id ID of the connection from which routing policy is being detached + [routing-policy-v4] ID of the routing policy to detach from the BGP IPv4 session + [routing-policy-v6] ID of the routing policy to detach from the BGP IPv6 session + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for detach-routing-policy + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-disable-route-propagation-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-disable-route-propagation-usage.golden new file mode 100644 index 0000000000..8eb49b408b --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-disable-route-propagation-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Prevent any prefixes from being announced in the BGP session. Traffic will not be able to flow over the VPN Gateway until route propagation is re-enabled. + +USAGE: + scw s2s-vpn connection disable-route-propagation [arg=value ...] + +ARGS: + connection-id ID of the connection on which to disable route propagation + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for disable-route-propagation + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-enable-route-propagation-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-enable-route-propagation-usage.golden new file mode 100644 index 0000000000..3f2d3c2bb1 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-enable-route-propagation-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Enable all allowed prefixes (defined in a routing policy) to be announced in the BGP session. This allows traffic to flow between the attached VPC and the on-premises infrastructure along the announced routes. Note that by default, even when route propagation is enabled, all routes are blocked. It is essential to attach a routing policy to define the ranges of routes to announce. + +USAGE: + scw s2s-vpn connection enable-route-propagation [arg=value ...] + +ARGS: + connection-id ID of the connection on which to enable route propagation + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for enable-route-propagation + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-get-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-get-usage.golden new file mode 100644 index 0000000000..238d782f34 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Get a connection for the given connection ID. The response object includes information about the connection's various configuration details. + +USAGE: + scw s2s-vpn connection get [arg=value ...] + +ARGS: + connection-id ID of the requested connection + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-list-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-list-usage.golden new file mode 100644 index 0000000000..45df422c38 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-list-usage.golden @@ -0,0 +1,30 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List all your connections. A number of filters are available, including Project ID, name, tags and status. + +USAGE: + scw s2s-vpn connection list [arg=value ...] + +ARGS: + [order-by] Order in which to return results (created_at_asc | created_at_desc | name_asc | name_desc | status_asc | status_desc) + [project-id] Project ID to filter for + [name] Connection name to filter for + [tags.{index}] Tags to filter for + [statuses.{index}] Connection statuses to filter for (unknown_status | active | limited_connectivity | down | locked) + [is-ipv6] Filter connections with IP version of IPSec tunnel + [routing-policy-ids.{index}] Filter for connections using these routing policies + [route-propagation-enabled] Filter for connections with route propagation enabled + [vpn-gateway-ids.{index}] Filter for connections attached to these VPN gateways + [customer-gateway-ids.{index}] Filter for connections attached to these customer gateways + [organization-id] Organization ID to filter for + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-renew-psk-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-renew-psk-usage.golden new file mode 100644 index 0000000000..cf395c2a11 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-renew-psk-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Renew pre-shared key for a given connection. + +USAGE: + scw s2s-vpn connection renew-psk [arg=value ...] + +ARGS: + connection-id ID of the connection to renew the PSK + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for renew-psk + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-set-routing-policy-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-set-routing-policy-usage.golden new file mode 100644 index 0000000000..5601468955 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-set-routing-policy-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Set a new routing policy on a connection, overriding the existing one if present, specified by its connection ID. + +USAGE: + scw s2s-vpn connection set-routing-policy [arg=value ...] + +ARGS: + connection-id ID of the connection whose routing policy is being updated + [routing-policy-v4] ID of the routing policy to set for the BGP IPv4 session + [routing-policy-v6] ID of the routing policy to set for the BGP IPv6 session + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for set-routing-policy + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-update-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-update-usage.golden new file mode 100644 index 0000000000..24835e87d8 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-update-usage.golden @@ -0,0 +1,29 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update an existing connection, specified by its connection ID. + +USAGE: + scw s2s-vpn connection update [arg=value ...] + +ARGS: + connection-id ID of the connection to update + [name] Name of the connection + [tags.{index}] List of tags to apply to the connection + [initiation-policy] Who initiates the IPsec tunnel (unknown_initiation_policy | vpn_gateway | customer_gateway) + [ikev2-ciphers.{index}.encryption] (unknown_encryption | aes128 | aes192 | aes256 | aes128gcm | aes192gcm | aes256gcm | aes128ccm | aes256ccm | chacha20poly1305) + [ikev2-ciphers.{index}.integrity] (unknown_integrity | sha256 | sha384 | sha512) + [ikev2-ciphers.{index}.dh-group] (unknown_dhgroup | modp2048 | modp3072 | modp4096 | ecp256 | ecp384 | ecp521 | curve25519) + [esp-ciphers.{index}.encryption] (unknown_encryption | aes128 | aes192 | aes256 | aes128gcm | aes192gcm | aes256gcm | aes128ccm | aes256ccm | chacha20poly1305) + [esp-ciphers.{index}.integrity] (unknown_integrity | sha256 | sha384 | sha512) + [esp-ciphers.{index}.dh-group] (unknown_dhgroup | modp2048 | modp3072 | modp4096 | ecp256 | ecp384 | ecp521 | curve25519) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-usage.golden new file mode 100644 index 0000000000..fd77b161d4 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-connection-usage.golden @@ -0,0 +1,30 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +A connection represents the IPsec tunnel between VPN gateway and customer gateway. + +USAGE: + scw s2s-vpn connection + +AVAILABLE COMMANDS: + create Create a connection + delete Delete a connection + detach-routing-policy Detach a routing policy + disable-route-propagation Disable route propagation + enable-route-propagation Enable route propagation + get Get a connection + list List connections + renew-psk Renew pre-shared key + set-routing-policy Set a new routing policy + update Update a connection + +FLAGS: + -h, --help help for connection + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw s2s-vpn connection [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-create-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-create-usage.golden new file mode 100644 index 0000000000..fc57c341b6 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-create-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a customer gateway. + +USAGE: + scw s2s-vpn customer-gateway create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + name Name of the customer gateway + [tags.{index}] List of tags to apply to the customer gateway + [ipv4-public] Public IPv4 address of the customer gateway + [ipv6-public] Public IPv6 address of the customer gateway + asn AS Number of the customer gateway + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-delete-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-delete-usage.golden new file mode 100644 index 0000000000..0451c567e0 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an existing customer gateway, specified by its customer gateway ID. + +USAGE: + scw s2s-vpn customer-gateway delete [arg=value ...] + +ARGS: + gateway-id ID of the customer gateway to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-get-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-get-usage.golden new file mode 100644 index 0000000000..9c5f265686 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Get a customer gateway for the given customer gateway ID. + +USAGE: + scw s2s-vpn customer-gateway get [arg=value ...] + +ARGS: + gateway-id ID of the requested customer gateway + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-list-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-list-usage.golden new file mode 100644 index 0000000000..6b79800448 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-list-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List all your customer gateways. A number of filters are available, including Project ID, name, and tags. + +USAGE: + scw s2s-vpn customer-gateway list [arg=value ...] + +ARGS: + [order-by] Order in which to return results (created_at_asc | created_at_desc | name_asc | name_desc) + [project-id] Project ID to filter for + [name] Customer gateway name to filter for + [tags.{index}] Tags to filter for + [organization-id] Organization ID to filter for + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-update-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-update-usage.golden new file mode 100644 index 0000000000..e8eed3e9cc --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-update-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update an existing customer gateway, specified by its customer gateway ID. You can update its name, tags, public IPv4 & IPv6 address and AS Number. + +USAGE: + scw s2s-vpn customer-gateway update [arg=value ...] + +ARGS: + gateway-id ID of the customer gateway to update + [name] Name of the customer gateway + [tags.{index}] List of tags to apply to the customer gateway + [ipv4-public] Public IPv4 address of the customer gateway + [ipv6-public] Public IPv6 address of the customer gateway + [asn] AS Number of the customer gateway + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-usage.golden new file mode 100644 index 0000000000..aed32c0329 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-customer-gateway-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +A customer gateway represents a Scaleway client's device that communicates with a VPN gateway. + +USAGE: + scw s2s-vpn customer-gateway + +AVAILABLE COMMANDS: + create Create a customer gateway + delete Delete a customer gateway + get Get a customer gateway + list List customer gateways + update Update a customer gateway + +FLAGS: + -h, --help help for customer-gateway + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw s2s-vpn customer-gateway [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-create-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-create-usage.golden new file mode 100644 index 0000000000..8ec2c0475c --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-create-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a routing policy. Routing policies allow you to set IP prefix filters to define the incoming route announcements to accept from the customer gateway, and the outgoing routes to announce to the customer gateway. + +USAGE: + scw s2s-vpn routing-policy create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + name Name of the routing policy + [tags.{index}] List of tags to apply to the routing policy + [is-ipv6] IP prefixes version of the routing policy + [prefix-filter-in.{index}] IP prefixes to accept from the peer (ranges of route announcements to accept) + [prefix-filter-out.{index}] IP prefix filters to advertise to the peer (ranges of routes to advertise) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-delete-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-delete-usage.golden new file mode 100644 index 0000000000..8ee8255eed --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an existing routing policy, specified by its routing policy ID. + +USAGE: + scw s2s-vpn routing-policy delete [arg=value ...] + +ARGS: + routing-policy-id ID of the routing policy to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-get-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-get-usage.golden new file mode 100644 index 0000000000..7fe48d977d --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Get a routing policy for the given routing policy ID. The response object gives information including the policy's name, tags and prefix filters. + +USAGE: + scw s2s-vpn routing-policy get [arg=value ...] + +ARGS: + routing-policy-id ID of the routing policy to get + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-list-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-list-usage.golden new file mode 100644 index 0000000000..6d07103394 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-list-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List all routing policies in a given region. A routing policy can be attached to one or multiple connections (S2S VPN connections). + +USAGE: + scw s2s-vpn routing-policy list [arg=value ...] + +ARGS: + [order-by] Order in which to return results (created_at_asc | created_at_desc | name_asc | name_desc) + [project-id] Project ID to filter for + [name] Routing policy name to filter for + [tags.{index}] Tags to filter for + [ipv6] Filter for the routing policies based on IP prefixes version + [organization-id] Organization ID to filter for + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-update-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-update-usage.golden new file mode 100644 index 0000000000..c6b20ab16a --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-update-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update an existing routing policy, specified by its routing policy ID. Its name, tags and incoming/outgoing prefix filters can be updated. + +USAGE: + scw s2s-vpn routing-policy update [arg=value ...] + +ARGS: + routing-policy-id ID of the routing policy to update + [name] Name of the routing policy + [tags.{index}] List of tags to apply to the routing policy + [prefix-filter-in.{index}] IP prefixes to accept from the peer (ranges of route announcements to accept) + [prefix-filter-out.{index}] IP prefix filters for routes to advertise to the peer (ranges of routes to advertise) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-usage.golden new file mode 100644 index 0000000000..ee3ae11ca1 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-routing-policy-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow. + +USAGE: + scw s2s-vpn routing-policy + +AVAILABLE COMMANDS: + create Create a routing policy + delete Delete a routing policy + get Get routing policy + list List routing policies + update Update a routing policy + +FLAGS: + -h, --help help for routing-policy + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw s2s-vpn routing-policy [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-usage.golden new file mode 100644 index 0000000000..9c57b89db8 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +This API allows you to manage your Site-to-Site VPN. + +USAGE: + scw s2s-vpn + +AVAILABLE COMMANDS: + connection A connection represents the IPsec tunnel between VPN gateway and customer gateway. + customer-gateway A customer gateway represents a Scaleway client's device that communicates with a VPN gateway. + routing-policy By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow. + vpn-gateway A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways. + vpn-gateway-type VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway. + +FLAGS: + -h, --help help for s2s-vpn + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw s2s-vpn [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-create-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-create-usage.golden new file mode 100644 index 0000000000..234455ccfc --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-create-usage.golden @@ -0,0 +1,33 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create VPN gateway. + +USAGE: + scw s2s-vpn vpn-gateway create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + name Name of the VPN gateway + [tags.{index}] List of tags to apply to the VPN gateway + gateway-type VPN gateway type (commercial offer type) + [public-config.ipam-ipv4-id] + [public-config.ipam-ipv6-id] + private-network-id ID of the Private Network to attach to the VPN gateway + [public-tunnel-config.single-ipv4-tunnel.ipam-id] + [public-tunnel-config.single-ipv6-tunnel.ipam-id] + [public-tunnel-config.dual-ipv4v6-tunnel.ipam-ipv4-id] + [public-tunnel-config.dual-ipv4v6-tunnel.ipam-ipv6-id] + [ipam-private-ipv4-id] ID of the IPAM private IPv4 address to attach to the VPN gateway + [ipam-private-ipv6-id] ID of the IPAM private IPv6 address to attach to the VPN gateway + [zone] Availability Zone where the VPN gateway should be provisioned. If no zone is specified, the VPN gateway will be automatically placed. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-delete-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-delete-usage.golden new file mode 100644 index 0000000000..87db51b0c2 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an existing VPN gateway, specified by its VPN gateway ID. + +USAGE: + scw s2s-vpn vpn-gateway delete [arg=value ...] + +ARGS: + gateway-id ID of the VPN gateway to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-get-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-get-usage.golden new file mode 100644 index 0000000000..f3c2ae4b60 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Get a VPN gateway for the given VPN gateway ID. + +USAGE: + scw s2s-vpn vpn-gateway get [arg=value ...] + +ARGS: + gateway-id ID of the requested VPN gateway + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-list-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-list-usage.golden new file mode 100644 index 0000000000..11b429f713 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-list-usage.golden @@ -0,0 +1,27 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List all your VPN gateways. A number of filters are available, including Project ID, name, tags and status. + +USAGE: + scw s2s-vpn vpn-gateway list [arg=value ...] + +ARGS: + [order-by] Order in which to return results (created_at_asc | created_at_desc | name_asc | name_desc | type_asc | type_desc | status_asc | status_desc) + [project-id] Project ID to filter for + [name] VPN gateway name to filter for + [tags.{index}] Tags to filter for + [statuses.{index}] VPN gateway statuses to filter for (unknown_status | configuring | failed | provisioning | active | deprovisioning | locked) + [gateway-types.{index}] Filter for VPN gateways of these types + [private-network-ids.{index}] Filter for VPN gateways attached to these private networks + [organization-id] Organization ID to filter for + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-type-list-usage.golden new file mode 100644 index 0000000000..518344cc78 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-type-list-usage.golden @@ -0,0 +1,19 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List the different VPN gateway commercial offer types available at Scaleway. The response is an array of objects describing the name and technical details of each available VPN gateway type. + +USAGE: + scw s2s-vpn vpn-gateway-type list [arg=value ...] + +ARGS: + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-type-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-type-usage.golden new file mode 100644 index 0000000000..21224e4080 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-type-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway. + +USAGE: + scw s2s-vpn vpn-gateway-type + +AVAILABLE COMMANDS: + list List VPN gateway types + +FLAGS: + -h, --help help for vpn-gateway-type + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw s2s-vpn vpn-gateway-type [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-update-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-update-usage.golden new file mode 100644 index 0000000000..297fc58826 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-update-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update an existing VPN gateway, specified by its VPN gateway ID. Only its name and tags can be updated. + +USAGE: + scw s2s-vpn vpn-gateway update [arg=value ...] + +ARGS: + gateway-id ID of the VPN gateway to update + [name] Name of the VPN gateway + [tags.{index}] List of tags to apply to the VPN Gateway + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-usage.golden b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-usage.golden new file mode 100644 index 0000000000..ee1d51f398 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-s2s-vpn-vpn-gateway-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways. + +USAGE: + scw s2s-vpn vpn-gateway + +AVAILABLE COMMANDS: + create Create VPN gateway + delete Delete a VPN gateway + get Get a VPN gateway + list List VPN gateways + update Update a VPN gateway + +FLAGS: + -h, --help help for vpn-gateway + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw s2s-vpn vpn-gateway [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-export-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-export-usage.golden index d825b34884..29caf69984 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-export-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-export-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for export + -h, --help help for export + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-get-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-get-usage.golden index e1e72587f7..5995e7a2c8 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-list-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-list-usage.golden index 959a2d3460..8b99c3d8da 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-usage.golden index 97f9fcb846..a03a4ffa4a 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-backup-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-backup-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List your Serverless SQL Database backups FLAGS: - -h, --help help for backup + -h, --help help for backup + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-create-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-create-usage.golden index 67b337054b..dcbf2340e1 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-delete-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-delete-usage.golden index 420e9feec8..fd1069a3a3 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-get-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-get-usage.golden index 42268d103a..f6ac19fbec 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-list-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-list-usage.golden index 50e9115efd..e5cab7bab5 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-restore-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-restore-usage.golden index 0a46d51135..a7bfa70c09 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-restore-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for restore + -h, --help help for restore + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-update-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-update-usage.golden index 3901ac7aa5..b21b515f0a 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-database-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-database-usage.golden index bdf6ca181a..4091cff161 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-database-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-database-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: update Update database information FLAGS: - -h, --help help for database + -h, --help help for database + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-sdb-sql-usage.golden b/cmd/scw/testdata/test-all-usage-sdb-sql-usage.golden index 330ea15418..6fa3fc8d04 100644 --- a/cmd/scw/testdata/test-all-usage-sdb-sql-usage.golden +++ b/cmd/scw/testdata/test-all-usage-sdb-sql-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: database FLAGS: - -h, --help help for sdb-sql + -h, --help help for sdb-sql + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-create-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-create-usage.golden new file mode 100644 index 0000000000..e5c0fb3bc0 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-create-usage.golden @@ -0,0 +1,30 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new Cloud Essentials for OpenSearch deployment. + +USAGE: + scw searchdb deployment create [arg=value ...] + +ARGS: + [project-id] Project ID to use. If none is passed the default project ID will be used + [name] Name of the deployment + [tags.{index}] Tags + [node-amount] Number of nodes + [node-type] Node type + [user-name] Username for the deployment user + [password] Password for the deployment user + [volume.type] Define the type of the Volume (unknown_type | sbs_5k | sbs_15k) + [volume.size-bytes] Define the size of the Volume + [endpoints.{index}.private-network.private-network-id] + [version] The Opensearch version to use + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-delete-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-delete-usage.golden new file mode 100644 index 0000000000..625d6e1904 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete a Cloud Essentials for OpenSearch deployment. + +USAGE: + scw searchdb deployment delete [arg=value ...] + +ARGS: + deployment-id ID of the deployment + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-get-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-get-usage.golden new file mode 100644 index 0000000000..a3088a35e6 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-get-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Retrieve a specific Cloud Essentials for OpenSearch deployment. + +USAGE: + scw searchdb deployment get [arg=value ...] + +ARGS: + deployment-id ID of the deployment + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for get + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-list-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-list-usage.golden new file mode 100644 index 0000000000..da35a6ef75 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-list-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Retrieve a list of Cloud Essentials for OpenSearch deployments. + +USAGE: + scw searchdb deployment list [arg=value ...] + +ARGS: + [project-id] ID of the Project containing the deployments + [order-by] Define the order of the returned deployments (created_at_asc | created_at_desc | name_asc | name_desc | updated_at_asc | updated_at_desc) + [tags.{index}] Filter by tag, only deployments with one or more matching tags will be returned + [name] Deployment name to filter for + [version] Engine version to filter for + [organization-id] ID of the Organization containing the deployments + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-update-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-update-usage.golden new file mode 100644 index 0000000000..ec8a3af0dc --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-update-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update a Cloud Essentials for OpenSearch deployment. + +USAGE: + scw searchdb deployment update [arg=value ...] + +ARGS: + deployment-id UUID of the deployment to update + [name] Name of the deployment + [tags.{index}] Tags of a deployment + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-upgrade-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-upgrade-usage.golden new file mode 100644 index 0000000000..04a08259bc --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-upgrade-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Upgrade a Cloud Essentials for OpenSearch deployment. + +USAGE: + scw searchdb deployment upgrade [arg=value ...] + +ARGS: + deployment-id UUID of the Deployment to upgrade + [node-amount] Amount of node upgrade target + [volume-size-bytes] Volume size upgrade target + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for upgrade + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-deployment-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-deployment-usage.golden new file mode 100644 index 0000000000..3ed6e44b4e --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-deployment-usage.golden @@ -0,0 +1,26 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage your Cloud Essentials for OpenSearch deployment. + +USAGE: + scw searchdb deployment + +AVAILABLE COMMANDS: + create Create a new Cloud Essentials for OpenSearch deployment + delete Delete a Cloud Essentials for OpenSearch deployment + get Retrieve a specific Cloud Essentials for OpenSearch deployment + list Retrieve a list of Cloud Essentials for OpenSearch deployments + update Update a Cloud Essentials for OpenSearch deployment + upgrade Upgrade a Cloud Essentials for OpenSearch deployment + +FLAGS: + -h, --help help for deployment + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw searchdb deployment [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-searchdb-endpoint-create-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-endpoint-create-usage.golden new file mode 100644 index 0000000000..5148bbbd37 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-endpoint-create-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new endpoint on a deployment. + +USAGE: + scw searchdb endpoint create [arg=value ...] + +ARGS: + [deployment-id] ID of the deployment for which to create an endpoint + [endpoint-spec.private-network.private-network-id] + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-endpoint-delete-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-endpoint-delete-usage.golden new file mode 100644 index 0000000000..b0e73184fe --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-endpoint-delete-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an existing endpoint. + +USAGE: + scw searchdb endpoint delete [arg=value ...] + +ARGS: + endpoint-id ID of the endpoint to delete + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-endpoint-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-endpoint-usage.golden new file mode 100644 index 0000000000..bbdcc95ceb --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-endpoint-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage your Cloud Essentials for OpenSearch deployment endpoint. + +USAGE: + scw searchdb endpoint + +AVAILABLE COMMANDS: + create Create a new endpoint on a deployment + delete Delete an existing endpoint + +FLAGS: + -h, --help help for endpoint + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw searchdb endpoint [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-searchdb-node-types-list-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-node-types-list-usage.golden new file mode 100644 index 0000000000..e98826f57e --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-node-types-list-usage.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Retrieve a list of available node types. + +USAGE: + scw searchdb node-types list [arg=value ...] + +ARGS: + [order-by] Sort order of nodes in the response (name, vcpus or memory) (name_asc | name_desc | vcpus_asc | vcpus_desc | memory_asc | memory_desc) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-node-types-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-node-types-usage.golden new file mode 100644 index 0000000000..d95aa449df --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-node-types-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available node types. + +USAGE: + scw searchdb node-types + +AVAILABLE COMMANDS: + list Retrieve a list of available node types + +FLAGS: + -h, --help help for node-types + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw searchdb node-types [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-searchdb-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-usage.golden new file mode 100644 index 0000000000..c2562ce819 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-usage.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Cloud Essentials for Opensearch API. + +USAGE: + scw searchdb + +AVAILABLE COMMANDS: + deployment + endpoint + node-types + user + versions + +FLAGS: + -h, --help help for searchdb + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw searchdb [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-searchdb-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-user-create-usage.golden new file mode 100644 index 0000000000..61d8a3e2d4 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-user-create-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Create a new user. + +USAGE: + scw searchdb user create [arg=value ...] + +ARGS: + deployment-id ID of the deployment in which to create the user + [username] Username of the deployment user + [password] Password of the deployment user + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for create + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-user-delete-usage.golden new file mode 100644 index 0000000000..6b7c0d4dee --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-user-delete-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Delete an existing user. + +USAGE: + scw searchdb user delete [arg=value ...] + +ARGS: + deployment-id ID of the deployment in which to create the user + username Username of the deployment user + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for delete + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-user-list-usage.golden new file mode 100644 index 0000000000..206914aa47 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-user-list-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Retrieve a list of deployment users. + +USAGE: + scw searchdb user list [arg=value ...] + +ARGS: + [order-by] (name_asc | name_desc) + [name] + deployment-id + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-user-update-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-user-update-usage.golden new file mode 100644 index 0000000000..b0782c06fa --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-user-update-usage.golden @@ -0,0 +1,22 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Update an existing user. + +USAGE: + scw searchdb user update [arg=value ...] + +ARGS: + deployment-id ID of the deployment in which to create the user + username Username of the deployment user + [password] Password of the deployment user + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-user-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-user-usage.golden new file mode 100644 index 0000000000..a6fb1f927d --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-user-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +Manage your Cloud Essentials for OpenSearch deployment users. + +USAGE: + scw searchdb user + +AVAILABLE COMMANDS: + create Create a new user + delete Delete an existing user + list Retrieve a list of deployment users + update Update an existing user + +FLAGS: + -h, --help help for user + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw searchdb user [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-searchdb-versions-list-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-versions-list-usage.golden new file mode 100644 index 0000000000..c1e6f28b87 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-versions-list-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List available Cloud Essentials for OpenSearch versions. + +USAGE: + scw searchdb versions list [arg=value ...] + +ARGS: + [order-by] Define the order of the returned version (version_asc | version_desc) + [version] Filter by version + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) + +FLAGS: + -h, --help help for list + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-searchdb-versions-usage.golden b/cmd/scw/testdata/test-all-usage-searchdb-versions-usage.golden new file mode 100644 index 0000000000..09f32a9c19 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-searchdb-versions-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟥🟥🟥 STDERR️️ 🟥🟥🟥️ +List your Cloud Essentials for OpenSearch versions. + +USAGE: + scw searchdb versions + +AVAILABLE COMMANDS: + list List available Cloud Essentials for OpenSearch versions + +FLAGS: + -h, --help help for versions + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use + +Use "scw searchdb versions [command] --help" for more information about a command. diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-add-owner-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-add-owner-usage.golden index 7fa0265959..9351c054dc 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-add-owner-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-add-owner-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for add-owner + -h, --help help for add-owner + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-create-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-create-usage.golden index f2ccd56bbc..e949780612 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-create-usage.golden @@ -24,7 +24,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-delete-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-delete-usage.golden index 7b16008537..be36fae13a 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-delete-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-get-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-get-usage.golden index 93794f7487..a203e589b6 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-list-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-list-usage.golden index 1045aed650..b563e674e9 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-list-usage.golden @@ -18,7 +18,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-protect-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-protect-usage.golden index 262d9bef4c..f7d6911778 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-protect-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-protect-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for protect + -h, --help help for protect + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-unprotect-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-unprotect-usage.golden index 35be607608..8faf380184 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-unprotect-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-unprotect-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for unprotect + -h, --help help for unprotect + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-update-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-update-usage.golden index 0483ac7fa3..4e33f3b5aa 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-update-usage.golden @@ -17,7 +17,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-secret-usage.golden b/cmd/scw/testdata/test-all-usage-secret-secret-usage.golden index 8f9ff192e9..2eb925cbc7 100644 --- a/cmd/scw/testdata/test-all-usage-secret-secret-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-secret-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: update Update metadata of a secret FLAGS: - -h, --help help for secret + -h, --help help for secret + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-usage.golden b/cmd/scw/testdata/test-all-usage-secret-usage.golden index 24335f746c..72273b18f2 100644 --- a/cmd/scw/testdata/test-all-usage-secret-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: version Secret Version management commands FLAGS: - -h, --help help for secret + -h, --help help for secret + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-access-by-path-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-access-by-path-usage.golden index 88d3740281..4b6a9a75ea 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-access-by-path-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-access-by-path-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for access-by-path + -h, --help help for access-by-path + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-access-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-access-usage.golden index bb9529e4b0..f260556507 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-access-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-access-usage.golden @@ -17,7 +17,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for access + -h, --help help for access + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-create-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-create-usage.golden index 41f0ef579d..163d48aaec 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-create-usage.golden @@ -18,7 +18,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-delete-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-delete-usage.golden index bd81944ba5..cc29c968a7 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-delete-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-disable-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-disable-usage.golden index 3730831528..1ad8bb3680 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-disable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-disable-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for disable + -h, --help help for disable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-enable-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-enable-usage.golden index d4eef7f77a..f9f723d2ff 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-enable-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-enable-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for enable + -h, --help help for enable + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-get-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-get-usage.golden index b6ae122ffe..f27df1d10e 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-list-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-list-usage.golden index ab67df1f29..18ff3286f2 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-update-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-update-usage.golden index b2526498c6..33ef0cb5d1 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-update-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-secret-version-usage.golden b/cmd/scw/testdata/test-all-usage-secret-version-usage.golden index 4796b9f9b2..ade77f8475 100644 --- a/cmd/scw/testdata/test-all-usage-secret-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-secret-version-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: update Update metadata of a version FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-shell-usage.golden b/cmd/scw/testdata/test-all-usage-shell-usage.golden index 025c14fb85..938ef9077d 100644 --- a/cmd/scw/testdata/test-all-usage-shell-usage.golden +++ b/cmd/scw/testdata/test-all-usage-shell-usage.golden @@ -6,4 +6,5 @@ USAGE: scw shell FLAGS: - -h, --help help for shell + -h, --help help for shell + --list-sub-commands List all subcommands diff --git a/cmd/scw/testdata/test-all-usage-tem-blocklists-create-usage.golden b/cmd/scw/testdata/test-all-usage-tem-blocklists-create-usage.golden index 10e8481411..dd6d07a104 100644 --- a/cmd/scw/testdata/test-all-usage-tem-blocklists-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-blocklists-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-blocklists-delete-usage.golden b/cmd/scw/testdata/test-all-usage-tem-blocklists-delete-usage.golden index 6d942a6009..4a9c502951 100644 --- a/cmd/scw/testdata/test-all-usage-tem-blocklists-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-blocklists-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-blocklists-list-usage.golden b/cmd/scw/testdata/test-all-usage-tem-blocklists-list-usage.golden index 9b93272ff8..967c5b843c 100644 --- a/cmd/scw/testdata/test-all-usage-tem-blocklists-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-blocklists-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-blocklists-usage.golden b/cmd/scw/testdata/test-all-usage-tem-blocklists-usage.golden index 251c45e65d..3fcd7a952b 100644 --- a/cmd/scw/testdata/test-all-usage-tem-blocklists-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-blocklists-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List blocklists FLAGS: - -h, --help help for blocklists + -h, --help help for blocklists + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-check-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-check-usage.golden index d07ede8870..242495bd09 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-check-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-check-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for check + -h, --help help for check + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-create-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-create-usage.golden index f608588080..22f7892463 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-create-usage.golden @@ -15,7 +15,8 @@ DEPRECATED ARGS: [accept-tos] Deprecated. Accept Scaleway's Terms of Service FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-get-last-status-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-get-last-status-usage.golden index 8d4a0310f4..1643f8e9c0 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-get-last-status-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-get-last-status-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-last-status + -h, --help help for get-last-status + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-get-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-get-usage.golden index dc5bc71868..2dc8cfe378 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-list-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-list-usage.golden index 9c7665b279..3d93a87043 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-revoke-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-revoke-usage.golden index 6314effa97..fc7ed3cf36 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-revoke-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-revoke-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for revoke + -h, --help help for revoke + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-update-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-update-usage.golden index 3e402c1bc5..6333351963 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-domain-usage.golden b/cmd/scw/testdata/test-all-usage-tem-domain-usage.golden index 0f8cbdef20..fe050625c9 100644 --- a/cmd/scw/testdata/test-all-usage-tem-domain-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-domain-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: update Update a domain FLAGS: - -h, --help help for domain + -h, --help help for domain + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-email-cancel-usage.golden b/cmd/scw/testdata/test-all-usage-tem-email-cancel-usage.golden index 3094cd4eff..e73f58200b 100644 --- a/cmd/scw/testdata/test-all-usage-tem-email-cancel-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-email-cancel-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for cancel + -h, --help help for cancel + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-email-create-usage.golden b/cmd/scw/testdata/test-all-usage-tem-email-create-usage.golden index 68d5f21275..56711a742b 100644 --- a/cmd/scw/testdata/test-all-usage-tem-email-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-email-create-usage.golden @@ -27,7 +27,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-email-get-statistics-usage.golden b/cmd/scw/testdata/test-all-usage-tem-email-get-statistics-usage.golden index 305a4b410e..ac290d9681 100644 --- a/cmd/scw/testdata/test-all-usage-tem-email-get-statistics-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-email-get-statistics-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get-statistics + -h, --help help for get-statistics + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-email-get-usage.golden b/cmd/scw/testdata/test-all-usage-tem-email-get-usage.golden index fd990e12f5..0cd6eff694 100644 --- a/cmd/scw/testdata/test-all-usage-tem-email-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-email-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-email-list-usage.golden b/cmd/scw/testdata/test-all-usage-tem-email-list-usage.golden index 3c9f38dbc6..2f29851d42 100644 --- a/cmd/scw/testdata/test-all-usage-tem-email-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-email-list-usage.golden @@ -24,7 +24,8 @@ DEPRECATED ARGS: [mail-to] Deprecated. List emails sent to this recipient's email address FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-email-usage.golden b/cmd/scw/testdata/test-all-usage-tem-email-usage.golden index 58fd210eb6..ad2e1dfee6 100644 --- a/cmd/scw/testdata/test-all-usage-tem-email-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-email-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: list List emails FLAGS: - -h, --help help for email + -h, --help help for email + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-offers-list-usage.golden b/cmd/scw/testdata/test-all-usage-tem-offers-list-usage.golden index 121747bf7f..0291ae7101 100644 --- a/cmd/scw/testdata/test-all-usage-tem-offers-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-offers-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-offers-update-usage.golden b/cmd/scw/testdata/test-all-usage-tem-offers-update-usage.golden index 89076f72d6..1243a3eff5 100644 --- a/cmd/scw/testdata/test-all-usage-tem-offers-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-offers-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-offers-usage.golden b/cmd/scw/testdata/test-all-usage-tem-offers-usage.golden index d502b3cd8c..652b82b424 100644 --- a/cmd/scw/testdata/test-all-usage-tem-offers-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-offers-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: update Update a subscribed offer FLAGS: - -h, --help help for offers + -h, --help help for offers + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-project-consumption-get-usage.golden b/cmd/scw/testdata/test-all-usage-tem-project-consumption-get-usage.golden index 52facc3715..cd4d959ced 100644 --- a/cmd/scw/testdata/test-all-usage-tem-project-consumption-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-project-consumption-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-project-consumption-usage.golden b/cmd/scw/testdata/test-all-usage-tem-project-consumption-usage.golden index 2822504d6c..81c0cc3802 100644 --- a/cmd/scw/testdata/test-all-usage-tem-project-consumption-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-project-consumption-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: get Get project resource consumption. FLAGS: - -h, --help help for project-consumption + -h, --help help for project-consumption + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-project-settings-usage.golden b/cmd/scw/testdata/test-all-usage-tem-project-settings-usage.golden index f25e139c03..47f358e0e7 100644 --- a/cmd/scw/testdata/test-all-usage-tem-project-settings-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-project-settings-usage.golden @@ -6,7 +6,8 @@ USAGE: scw tem project-settings FLAGS: - -h, --help help for project-settings + -h, --help help for project-settings + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-usage.golden b/cmd/scw/testdata/test-all-usage-tem-usage.golden index 86a19b64eb..004e1caab9 100644 --- a/cmd/scw/testdata/test-all-usage-tem-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: webhook Webhook management commands FLAGS: - -h, --help help for tem + -h, --help help for tem + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-create-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-create-usage.golden index 2c44eec896..c891be8c81 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-delete-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-delete-usage.golden index 179e61fe9b..09d2152dcd 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-get-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-get-usage.golden index 8a696a6268..8e30dcfa53 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-list-events-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-list-events-usage.golden index 173e34a027..9a3373723b 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-list-events-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-list-events-usage.golden @@ -17,7 +17,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list-events + -h, --help help for list-events + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-list-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-list-usage.golden index 64440c5447..a0cc1f976a 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-update-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-update-usage.golden index e2fc550ccd..876bf65847 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-tem-webhook-usage.golden b/cmd/scw/testdata/test-all-usage-tem-webhook-usage.golden index 2d813b93bf..0a98562008 100644 --- a/cmd/scw/testdata/test-all-usage-tem-webhook-usage.golden +++ b/cmd/scw/testdata/test-all-usage-tem-webhook-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update a Webhook FLAGS: - -h, --help help for webhook + -h, --help help for webhook + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-version-usage.golden b/cmd/scw/testdata/test-all-usage-version-usage.golden index 59076ec4f0..da00299171 100644 --- a/cmd/scw/testdata/test-all-usage-version-usage.golden +++ b/cmd/scw/testdata/test-all-usage-version-usage.golden @@ -6,7 +6,8 @@ USAGE: scw version FLAGS: - -h, --help help for version + -h, --help help for version + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dh-cpusage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dh-cpusage.golden index f71742a48d..348ea68e6c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dh-cpusage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dh-cpusage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update Update a DHCP configuration FLAGS: - -h, --help help for dhcp + -h, --help help for dhcp + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-create-usage.golden index ab7c0599f6..81b3f64231 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-create-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-delete-usage.golden index 7b3a0cdb29..3ecafd6252 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-create-usage.golden index c4aeec0372..0a37a60e78 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-delete-usage.golden index 412be544ba..d2e7396c7c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-get-usage.golden index 3996e4ef81..bd15fa0588 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-list-usage.golden index 0af027ea3a..016c096355 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-set-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-set-usage.golden index 9d62d2b342..e5bde46d60 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-set-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-update-usage.golden index 804b6296ec..af730ee6bc 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-update-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-usage.golden index 5ab4526ac6..e6dc78b139 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-entry-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update a DHCP entry FLAGS: - -h, --help help for dhcp-entry + -h, --help help for dhcp-entry + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-get-usage.golden index 4a71fb2419..f353e4ed45 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-list-usage.golden index aad213514e..5da51a8326 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-list-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-update-usage.golden index 330f28861f..3eb1d7cdcc 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-dhcp-update-usage.golden @@ -23,7 +23,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-create-usage.golden index 251e348adf..4730f08b10 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-create-usage.golden @@ -18,8 +18,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the gateway is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the gateway is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-delete-usage.golden index 80fd2ba5cd..f1e3e08d7d 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-get-usage.golden index 8eb2a0de32..3df74b77ad 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-list-usage.golden index 9553ff5450..049145bc35 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-list-usage.golden @@ -17,7 +17,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-migrate-to-v2-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-migrate-to-v2-usage.golden index 0c56910c03..7387f7d7c2 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-migrate-to-v2-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-migrate-to-v2-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for migrate-to-v2 + -h, --help help for migrate-to-v2 + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-create-usage.golden index e9bae635fe..1a504afbcd 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-create-usage.golden @@ -17,8 +17,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create - -w, --wait wait until the gateway-network is ready + -h, --help help for create + --list-sub-commands List all subcommands + -w, --wait wait until the gateway-network is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-delete-usage.golden index 856af57a4f..f5e3abb8ca 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-delete-usage.golden @@ -11,8 +11,9 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete - -w, --wait wait until the gateway-network is ready + -h, --help help for delete + --list-sub-commands List all subcommands + -w, --wait wait until the gateway-network is ready GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-get-usage.golden index 3742a18b54..7c6f77cd09 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-list-usage.golden index 6552109ba1..a2c2adb4d1 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-update-usage.golden index 1930b685f2..5d016d240b 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage#01.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage#01.golden index 213fffe9c5..5452c0aa3d 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage#01.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update-v2 Update a Public Gateway's connection to a Private Network FLAGS: - -h, --help help for gateway-network + -h, --help help for gateway-network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage.golden index 213fffe9c5..5452c0aa3d 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-network-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update-v2 Update a Public Gateway's connection to a Private Network FLAGS: - -h, --help help for gateway-network + -h, --help help for gateway-network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-refresh-ssh-keys-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-refresh-ssh-keys-usage.golden index 033e5ae1a4..e004a1115c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-refresh-ssh-keys-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-refresh-ssh-keys-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for refresh-ssh-keys + -h, --help help for refresh-ssh-keys + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-list-usage.golden index 5f39215674..32dd68aa97 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage#01.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage#01.golden index 7ddd06f0f0..ea48b18b9b 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage#01.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list-v2 List Public Gateway types FLAGS: - -h, --help help for gateway-type + -h, --help help for gateway-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage.golden index 7ddd06f0f0..ea48b18b9b 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-type-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list-v2 List Public Gateway types FLAGS: - -h, --help help for gateway-type + -h, --help help for gateway-type + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-update-usage.golden index bc3d5be403..5af2d67c10 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-update-usage.golden @@ -16,7 +16,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-upgrade-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-upgrade-usage.golden index 52eec10c5b..a6def8fc5c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-upgrade-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-upgrade-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for upgrade + -h, --help help for upgrade + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage#01.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage#01.golden index 5e830ecae4..22af45db61 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage#01.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: upgrade-v2 Upgrade a Public Gateway to the latest version and/or to a different commercial offer type FLAGS: - -h, --help help for gateway + -h, --help help for gateway + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage.golden index 5e830ecae4..22af45db61 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-gateway-usage.golden @@ -16,7 +16,8 @@ AVAILABLE COMMANDS: upgrade-v2 Upgrade a Public Gateway to the latest version and/or to a different commercial offer type FLAGS: - -h, --help help for gateway + -h, --help help for gateway + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-create-usage.golden index 0f19036b24..db4575d89c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-create-usage.golden @@ -11,7 +11,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-delete-usage.golden index bc955fcb9a..4869fa328b 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-get-usage.golden index 754c0f5389..b27d2289ba 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-list-usage.golden index 15a34a0abe..490b2506f5 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-list-usage.golden @@ -15,7 +15,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-update-usage.golden index d29d093a9a..06df401e6b 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage#01.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage#01.golden index 3f59475df3..639afac6fd 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage#01.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update-v2 Update an IP FLAGS: - -h, --help help for ip + -h, --help help for ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage.golden index 3f59475df3..639afac6fd 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-ip-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: update-v2 Update an IP FLAGS: - -h, --help help for ip + -h, --help help for ip + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-create-usage.golden index 7e310d00c2..f01aa70552 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-delete-usage.golden index bbeef41458..c8c78361f0 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-edit-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-edit-usage.golden index ce3880cd08..e113040337 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-edit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-edit-usage.golden @@ -12,7 +12,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config FLAGS: - -h, --help help for edit + -h, --help help for edit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-get-usage.golden index 420d6dcfc0..1844010eff 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-list-usage.golden index 3c3689ace0..c5d854873d 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-list-usage.golden @@ -13,7 +13,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3 | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-set-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-set-usage.golden index 001cecaaa1..6ab9aa0155 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-set-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-update-usage.golden index 3bccb1731b..680ab06313 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-update-usage.golden @@ -14,7 +14,8 @@ ARGS: [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | nl-ams-1 | nl-ams-2 | nl-ams-3 | pl-waw-1 | pl-waw-2 | pl-waw-3) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage#01.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage#01.golden index e86e3c415b..feae2731d4 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage#01.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: update-v2 Update a PAT rule FLAGS: - -h, --help help for pat-rule + -h, --help help for pat-rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage.golden index e86e3c415b..feae2731d4 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-pat-rule-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: update-v2 Update a PAT rule FLAGS: - -h, --help help for pat-rule + -h, --help help for pat-rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-usage#01.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-usage#01.golden index 8e3272589e..4e925decd7 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-usage#01.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-usage#01.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: pat-rule PAT rules management FLAGS: - -h, --help help for vpc-gw + -h, --help help for vpc-gw + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-gw-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-gw-usage.golden index 8e3272589e..4e925decd7 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-gw-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-gw-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: pat-rule PAT rules management FLAGS: - -h, --help help for vpc-gw + -h, --help help for vpc-gw + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-create-usage.golden index 194ee9db6d..4c4aa8a27c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-create-usage.golden @@ -15,7 +15,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-delete-usage.golden index 84e269e52a..ffec359112 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-enable-dh-cpusage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-enable-dh-cpusage.golden index fb7f40d92d..e472417667 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-enable-dh-cpusage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-enable-dh-cpusage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for enable-dhcp + -h, --help help for enable-dhcp + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-get-usage.golden index d598ccae9a..8ed66f2210 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-list-usage.golden index 0dc2662d8e..b47ec927d5 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-list-usage.golden @@ -17,7 +17,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-update-usage.golden index e7fda378e4..97293d9e2b 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-update-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-private-network-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-private-network-usage.golden index 8371cbb827..65da42d925 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-private-network-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-private-network-usage.golden @@ -17,7 +17,8 @@ AVAILABLE COMMANDS: update Update Private Network FLAGS: - -h, --help help for private-network + -h, --help help for private-network + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-create-usage.golden index ecbc1b2a17..12d0736737 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-create-usage.golden @@ -12,10 +12,12 @@ ARGS: [destination] Destination of the Route [nexthop-resource-id] ID of the nexthop resource [nexthop-private-network-id] ID of the nexthop private network + [nexthop-vpc-connector-id] ID of the nexthop VPC Connector [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-delete-usage.golden index 1c83ffa10c..018b982de9 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-enable-routing-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-enable-routing-usage.golden index 56cbdad74b..c388eb1323 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-enable-routing-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-enable-routing-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for enable-routing + -h, --help help for enable-routing + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-get-usage.golden index ba0ab5a309..16f7c8f607 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-list-usage.golden index 982dc62ada..ab1224caf7 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-list-usage.golden @@ -11,13 +11,15 @@ ARGS: [nexthop-resource-id] Next hop resource ID to filter for. Only routes with a matching next hop resource ID will be returned [nexthop-private-network-id] Next hop private network ID to filter for. Only routes with a matching next hop private network ID will be returned [nexthop-resource-type] Next hop resource type to filter for. Only Routes with a matching next hop resource type will be returned (unknown_type | vpc_gateway_network | instance_private_nic | baremetal_private_nic | apple_silicon_private_nic) + [nexthop-vpc-connector-id] Next hop VPC connector ID to filter for. Only routes with a matching next hop VPC connector ID will be returned [contains] Only routes whose destination is contained in this subnet will be returned [tags.{index}] Tags to filter for, only routes with one or more matching tags will be returned [is-ipv6] Only routes with an IPv6 destination will be returned [region=fr-par] Region to target. If none is passed will use default region from the config (all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-update-usage.golden index 18ad529954..59ce8c46be 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-update-usage.golden @@ -12,10 +12,12 @@ ARGS: [destination] Destination of the Route [nexthop-resource-id] ID of the nexthop resource [nexthop-private-network-id] ID of the nexthop private network + [nexthop-vpc-connector-id] ID of the nexthop VPC connector [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-route-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-route-usage.golden index 24b213b590..3f0c7efeaa 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-route-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-route-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update Route FLAGS: - -h, --help help for route + -h, --help help for route + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-rule-edit-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-rule-edit-usage.golden index bcb62be09c..72ea9c7ee6 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-rule-edit-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-rule-edit-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config FLAGS: - -h, --help help for edit + -h, --help help for edit + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-rule-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-rule-get-usage.golden index 05243b55e5..0aec492fdc 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-rule-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-rule-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-rule-set-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-rule-set-usage.golden index 2e0e59d80a..3fe317de1c 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-rule-set-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-rule-set-usage.golden @@ -21,7 +21,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for set + -h, --help help for set + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-rule-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-rule-usage.golden index a5c62b954f..09aadb1924 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-rule-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-rule-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: set Set VPC ACL rules FLAGS: - -h, --help help for rule + -h, --help help for rule + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-usage.golden index e7c8a470db..1bdc0de3b7 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: vpc VPC management command FLAGS: - -h, --help help for vpc + -h, --help help for vpc + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-vpc-create-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-vpc-create-usage.golden index ca31dd040f..d03ea4c9eb 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-vpc-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-vpc-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-vpc-delete-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-vpc-delete-usage.golden index 9592dbabd5..b696982620 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-vpc-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-vpc-delete-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-vpc-get-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-vpc-get-usage.golden index 52c3241bd7..00e993e604 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-vpc-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-vpc-get-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-vpc-list-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-vpc-list-usage.golden index b02c4ad3b4..c1d280b0c3 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-vpc-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-vpc-list-usage.golden @@ -16,7 +16,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-vpc-update-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-vpc-update-usage.golden index 4fa7f5a3a2..df47ef293e 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-vpc-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-vpc-update-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-vpc-vpc-usage.golden b/cmd/scw/testdata/test-all-usage-vpc-vpc-usage.golden index cfa905b016..5854f94aae 100644 --- a/cmd/scw/testdata/test-all-usage-vpc-vpc-usage.golden +++ b/cmd/scw/testdata/test-all-usage-vpc-vpc-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: update Update VPC FLAGS: - -h, --help help for vpc + -h, --help help for vpc + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-get-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-get-usage.golden index ae79af18d3..fbee35f274 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-item-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-item-list-usage.golden index 1811ab1241..8a1d66f21c 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-item-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-item-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-item-restore-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-item-restore-usage.golden index bed41080ca..a4c2ee4798 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-item-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-item-restore-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for restore + -h, --help help for restore + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-item-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-item-usage.golden index 58622becc6..e2044f327d 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-item-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-item-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: restore Restore specific items from a backup (e.g., a database or mailbox). FLAGS: - -h, --help help for backup-item + -h, --help help for backup-item + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-list-usage.golden index 83c09251ab..c902eb1deb 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-restore-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-restore-usage.golden index fe77e338d1..39ca1eec17 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-restore-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-restore-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for restore + -h, --help help for restore + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-backup-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-backup-usage.golden index 35671d5cb7..826b9a15bb 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-backup-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-backup-usage.golden @@ -13,7 +13,8 @@ AVAILABLE COMMANDS: restore Restore an entire backup to your hosting environment. FLAGS: - -h, --help help for backup + -h, --help help for backup + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-control-panel-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-control-panel-list-usage.golden index a24116f232..d8dec05f64 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-control-panel-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-control-panel-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-control-panel-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-control-panel-usage.golden index 3d9953f9e9..a20888ab27 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-control-panel-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-control-panel-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list "List the control panels type: cpanel or plesk." FLAGS: - -h, --help help for control-panel + -h, --help help for control-panel + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-create-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-create-usage.golden index 519c2185a1..41d025de74 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-create-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-delete-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-delete-usage.golden index b8101314ae..8c0ab18e16 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-get-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-get-usage.golden index 2387b0fc06..056776ed04 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-list-usage.golden index aab421949e..7c7d4f1d5b 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-usage.golden index b968fbd4ee..e84c127e0d 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list "List all databases within your hosting plan" FLAGS: - -h, --help help for database + -h, --help help for database + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-assign-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-assign-usage.golden index 228ef07e34..9b8f7c25b1 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-assign-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-assign-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for assign + -h, --help help for assign + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-change-password-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-change-password-usage.golden index 82f629fa23..d755b6e45d 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-change-password-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-change-password-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for change-password + -h, --help help for change-password + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-create-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-create-usage.golden index d5d7d9fad4..53211f9466 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-create-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-delete-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-delete-usage.golden index cc62180232..50bdfd8c2e 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-get-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-get-usage.golden index 61060e15c4..7f7e9987da 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-list-usage.golden index 542d2d17c4..8ceba988d1 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-unassign-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-unassign-usage.golden index ad23355eac..322dfac028 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-unassign-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-unassign-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for unassign + -h, --help help for unassign + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-database-user-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-database-user-usage.golden index b57f619f0f..889dd73b12 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-database-user-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-database-user-usage.golden @@ -15,7 +15,8 @@ AVAILABLE COMMANDS: unassign "Unassign a database user from a database" FLAGS: - -h, --help help for database-user + -h, --help help for database-user + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-dns-records-get-dns-records-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-dns-records-get-dns-records-usage.golden index dd480a204f..f0746e9416 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-dns-records-get-dns-records-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-dns-records-get-dns-records-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get-dns-records + -h, --help help for get-dns-records + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-dns-records-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-dns-records-usage.golden index e10ecb1d1b..18c3372247 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-dns-records-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-dns-records-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: get-dns-records Get DNS records FLAGS: - -h, --help help for dns-records + -h, --help help for dns-records + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-search-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-search-usage.golden index c21ba59f7d..42908bf8e7 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-search-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-search-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for search + -h, --help help for search + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-usage.golden index 40bcf3a1b0..2a4aee1676 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-domain-availability-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: search Search for available domains based on domain name. FLAGS: - -h, --help help for domain-availability + -h, --help help for domain-availability + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-domain-check-ownership-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-domain-check-ownership-usage.golden index f6f2c38293..8547d3263c 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-domain-check-ownership-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-domain-check-ownership-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for check-ownership + -h, --help help for check-ownership + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-domain-get-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-domain-get-usage.golden index 92a0e81f0e..3a8ac4b79a 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-domain-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-domain-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-domain-sync-dns-records-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-domain-sync-dns-records-usage.golden index c4a60329c7..2e5ddcf612 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-domain-sync-dns-records-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-domain-sync-dns-records-usage.golden @@ -23,7 +23,8 @@ DEPRECATED ARGS: [update-nameservers] Whether or not to synchronize domain nameservers (deprecated, use auto_config_domain_dns). FLAGS: - -h, --help help for sync-dns-records + -h, --help help for sync-dns-records + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-domain-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-domain-usage.golden index a984c324eb..b044c20159 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-domain-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-domain-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: sync-dns-records Synchronize your DNS records on the Elements Console and on cPanel. FLAGS: - -h, --help help for domain + -h, --help help for domain + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-freedomain-check-availability-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-freedomain-check-availability-usage.golden index 56ca13ad44..9ad2269e78 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-freedomain-check-availability-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-freedomain-check-availability-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for check-availability + -h, --help help for check-availability + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-freedomain-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-freedomain-list-usage.golden index d2e7d8b4d4..00ae32bfcc 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-freedomain-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-freedomain-list-usage.golden @@ -9,7 +9,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-freedomain-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-freedomain-usage.golden index 8e645f2f76..01a81f946a 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-freedomain-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-freedomain-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list Retrieve the list of free root domains available for a Web Hosting. FLAGS: - -h, --help help for freedomain + -h, --help help for freedomain + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-create-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-create-usage.golden index 14bab2be57..1c6bb40877 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-delete-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-delete-usage.golden index 1d2b724e75..b2dd0afc30 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-delete-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-list-usage.golden index 90c25ae2b5..b82e11b30a 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-usage.golden index 6eb8837e62..22a65a5331 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-ftp-account-usage.golden @@ -11,7 +11,8 @@ AVAILABLE COMMANDS: list List all FTP accounts within your hosting plan. FLAGS: - -h, --help help for ftp-account + -h, --help help for ftp-account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-session-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-session-usage.golden index 7b37385b84..5f696ee18f 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-session-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-session-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create-session + -h, --help help for create-session + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-usage.golden index 8eca9d2414..ebcd82a61e 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-create-usage.golden @@ -28,7 +28,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-delete-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-delete-usage.golden index c5e53e7078..ec6b13323e 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-delete-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-get-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-get-usage.golden index 25f3a219ab..4b68d06ec6 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-get-usage.golden @@ -14,7 +14,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-list-usage.golden index 8c7a22d5f0..fd772920a0 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-list-usage.golden @@ -21,7 +21,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-update-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-update-usage.golden index 33fd883882..ad2d39ee74 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-update-usage.golden @@ -23,7 +23,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for update + -h, --help help for update + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-hosting-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-hosting-usage.golden index 2e91bdb8e6..e61c592c57 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-hosting-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-hosting-usage.golden @@ -14,7 +14,8 @@ AVAILABLE COMMANDS: update Update a Web Hosting plan FLAGS: - -h, --help help for hosting + -h, --help help for hosting + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-change-password-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-change-password-usage.golden index 2966e8e09e..45e75c0290 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-change-password-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-change-password-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for change-password + -h, --help help for change-password + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-create-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-create-usage.golden index 82d8fa4017..dbc2660af9 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-create-usage.golden @@ -13,7 +13,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for create + -h, --help help for create + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-delete-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-delete-usage.golden index 55f872b420..5fe49668d4 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-delete-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for delete + -h, --help help for delete + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-list-usage.golden index ccebd49e98..ef1c14de7b 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-usage.golden index 3d9a7e40df..556d0a25bf 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-mail-account-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-mail-account-usage.golden @@ -12,7 +12,8 @@ AVAILABLE COMMANDS: list List all mail accounts within your hosting plan. FLAGS: - -h, --help help for mail-account + -h, --help help for mail-account + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-offer-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-offer-list-usage.golden index 2f3131c71b..a646140743 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-offer-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-offer-list-usage.golden @@ -12,7 +12,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-offer-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-offer-usage.golden index fa6a85eb7b..8b3912f8fe 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-offer-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-offer-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List all available hosting offers along with their specific options. FLAGS: - -h, --help help for offer + -h, --help help for offer + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-progress-get-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-progress-get-usage.golden index 2b7a684cb0..f5378fe482 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-progress-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-progress-get-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for get + -h, --help help for get + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-progress-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-progress-list-usage.golden index 2e558c5366..d98d93a537 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-progress-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-progress-list-usage.golden @@ -10,7 +10,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-progress-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-progress-usage.golden index 687ceaa453..91796da4ab 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-progress-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-progress-usage.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: list List recent progresses associated with a specific backup, grouped by type. FLAGS: - -h, --help help for progress + -h, --help help for progress + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-usage.golden index 1c880d0ebd..f411faf890 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-usage.golden @@ -23,7 +23,8 @@ AVAILABLE COMMANDS: website Website FLAGS: - -h, --help help for webhosting + -h, --help help for webhosting + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-website-list-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-website-list-usage.golden index 397ba98bf3..defce49994 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-website-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-website-list-usage.golden @@ -11,7 +11,8 @@ ARGS: [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-all-usage-webhosting-website-usage.golden b/cmd/scw/testdata/test-all-usage-webhosting-website-usage.golden index 9d06da2300..583594fc71 100644 --- a/cmd/scw/testdata/test-all-usage-webhosting-website-usage.golden +++ b/cmd/scw/testdata/test-all-usage-webhosting-website-usage.golden @@ -9,7 +9,8 @@ AVAILABLE COMMANDS: list List all websites for a specific hosting. FLAGS: - -h, --help help for website + -h, --help help for website + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/cmd/scw/testdata/test-main-usage-usage.golden b/cmd/scw/testdata/test-main-usage-usage.golden index 06efce5ab6..93553c55ed 100644 --- a/cmd/scw/testdata/test-main-usage-usage.golden +++ b/cmd/scw/testdata/test-main-usage-usage.golden @@ -6,6 +6,9 @@ USAGE: AI COMMANDS: inference This API allows you to handle your Managed Inference services +AVAILABLE COMMANDS: + datalab Data Lab API for Apache Spark™ + BAREMETAL COMMANDS: apple-silicon Apple silicon API baremetal Elastic Metal API @@ -30,10 +33,12 @@ COST COMMANDS: billing This API allows you to manage and query your Scaleway billing and consumption DATABASE COMMANDS: + datawarehouse This API allows you to manage your Data Warehouse mongodb This API allows you to manage your Managed Databases for MongoDB® rdb This API allows you to manage your Managed Databases for PostgreSQL and MySQL redis This API allows you to manage your Managed Databases for Redis™ sdb-sql This API allows you to manage your Serverless SQL Databases + searchdb Cloud Essentials for Opensearch API DOMAIN & WEBHOSTING COMMANDS: dns This API allows you to manage your domains, DNS zones and records @@ -53,6 +58,7 @@ NETWORK COMMANDS: interlink This API allows you to manage your InterLink services ipam This API allows you to manage your Scaleway IP addresses with our IP Address Management tool lb This API allows you to manage your Scaleway Load Balancer services + s2s-vpn This API allows you to manage your Site-to-Site VPN vpc This API allows you to manage your Virtual Private Clouds (VPCs) and Private Networks vpc-gw This API allows you to manage your Public Gateways @@ -82,10 +88,11 @@ UTILITY COMMANDS: version Display cli version FLAGS: - -c, --config string The path to the config file - -D, --debug Enable debug mode - -h, --help help for scw - -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") - -p, --profile string The config profile to use + -c, --config string The path to the config file + -D, --debug Enable debug mode + -h, --help help for scw + --list-sub-commands List all subcommands + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use Use "scw [command] --help" for more information about a command. diff --git a/commands/commands.go b/commands/commands.go index 6b27036253..bc7da9cfdd 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -15,6 +15,8 @@ import ( "github.com/scaleway/scaleway-cli/v2/internal/namespaces/cockpit/v1" configNamespace "github.com/scaleway/scaleway-cli/v2/internal/namespaces/config" container "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1" + datalab "github.com/scaleway/scaleway-cli/v2/internal/namespaces/datalab/v1beta1" + datawarehouse "github.com/scaleway/scaleway-cli/v2/internal/namespaces/datawarehouse/v1beta1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/dedibox/v1" domain "github.com/scaleway/scaleway-cli/v2/internal/namespaces/domain/v2beta1" edgeservices "github.com/scaleway/scaleway-cli/v2/internal/namespaces/edge_services/v1beta1" @@ -31,7 +33,7 @@ import ( interlink "github.com/scaleway/scaleway-cli/v2/internal/namespaces/interlink/v1beta1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/iot/v1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/ipam/v1" - jobs "github.com/scaleway/scaleway-cli/v2/internal/namespaces/jobs/v1alpha1" + jobs "github.com/scaleway/scaleway-cli/v2/internal/namespaces/jobs/v1alpha2" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/k8s/v1" keymanager "github.com/scaleway/scaleway-cli/v2/internal/namespaces/key_manager/v1alpha1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/lb/v1" @@ -43,6 +45,8 @@ import ( "github.com/scaleway/scaleway-cli/v2/internal/namespaces/rdb/v1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/redis/v1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/registry/v1" + s2s_vpn "github.com/scaleway/scaleway-cli/v2/internal/namespaces/s2s_vpn/v1alpha1" + searchdb "github.com/scaleway/scaleway-cli/v2/internal/namespaces/searchdb/v1alpha1" secret "github.com/scaleway/scaleway-cli/v2/internal/namespaces/secret/v1beta1" serverless_sqldb "github.com/scaleway/scaleway-cli/v2/internal/namespaces/serverless_sqldb/v1alpha1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/shell" @@ -112,6 +116,10 @@ func GetCommands() *core.Commands { mongodb.GetCommands(), audit_trail.GetCommands(), interlink.GetCommands(), + s2s_vpn.GetCommands(), + searchdb.GetCommands(), + datalab.GetCommands(), + datawarehouse.GetCommands(), ) if beta { diff --git a/core/arg_specs.go b/core/arg_specs.go index c554b3625e..c5f7e822bb 100644 --- a/core/arg_specs.go +++ b/core/arg_specs.go @@ -3,6 +3,7 @@ package core import ( "context" "fmt" + "slices" "strings" "time" @@ -72,7 +73,7 @@ func (s *ArgSpecs) DeleteByName(name string) { func (s *ArgSpecs) AddBefore(name string, argSpec *ArgSpec) { for i, spec := range *s { if spec.Name == name { - newSpecs := ArgSpecs(nil) + newSpecs := make(ArgSpecs, 0, len(*s)+1) newSpecs = append(newSpecs, (*s)[:i]...) newSpecs = append(newSpecs, argSpec) newSpecs = append(newSpecs, (*s)[i:]...) @@ -140,7 +141,7 @@ func (a *ArgSpec) DebugString() string { type DefaultFunc func(ctx context.Context) (value string, doc string) func ZoneArgSpec(zones ...scw.Zone) *ArgSpec { - enumValues := []string(nil) + enumValues := make([]string, 0, len(zones)) for _, zone := range zones { enumValues = append(enumValues, zone.String()) } @@ -150,10 +151,8 @@ func ZoneArgSpec(zones ...scw.Zone) *ArgSpec { Short: "Zone to target. If none is passed will use default zone from the config", EnumValues: enumValues, ValidateFunc: func(_ *ArgSpec, value any) error { - for _, zone := range zones { - if value.(scw.Zone) == zone { - return nil - } + if slices.Contains(zones, value.(scw.Zone)) { + return nil } if validation.IsZone(value.(scw.Zone).String()) { return nil @@ -174,7 +173,7 @@ func ZoneArgSpec(zones ...scw.Zone) *ArgSpec { } func RegionArgSpec(regions ...scw.Region) *ArgSpec { - enumValues := []string(nil) + enumValues := make([]string, 0, len(regions)) for _, region := range regions { enumValues = append(enumValues, region.String()) } @@ -184,10 +183,8 @@ func RegionArgSpec(regions ...scw.Region) *ArgSpec { Short: "Region to target. If none is passed will use default region from the config", EnumValues: enumValues, ValidateFunc: func(_ *ArgSpec, value any) error { - for _, region := range regions { - if value.(scw.Region) == region { - return nil - } + if slices.Contains(regions, value.(scw.Region)) { + return nil } if validation.IsRegion(value.(scw.Region).String()) { return nil diff --git a/core/cobra_builder.go b/core/cobra_builder.go index e51e79bc31..d076a070e3 100644 --- a/core/cobra_builder.go +++ b/core/cobra_builder.go @@ -2,6 +2,8 @@ package core import ( "context" + "fmt" + "sort" "strings" "github.com/spf13/cobra" @@ -104,6 +106,37 @@ func (b *cobraBuilder) build() *cobra.Command { // hydrateCobra hydrates a cobra command from a *Command. // Field like Short, Long will be copied over. // More complex field like PreRun or Run will also be generated if needed. +// printAllSubCommands prints all subcommands of a given cobra command in a hierarchical format +func printAllSubCommands(cmd *cobra.Command, level int) { + indent := strings.Repeat(" ", level) + + // Format the command name and description + var desc string + if cmd.Short != "" { + desc = " - " + cmd.Short + } + fmt.Printf("%s%s%s\n", indent, cmd.Name(), desc) + + // Collect and sort subcommands alphabetically + var subCommands []*cobra.Command + for _, subCmd := range cmd.Commands() { + if !subCmd.IsAvailableCommand() || subCmd.Hidden { + continue + } + subCommands = append(subCommands, subCmd) + } + + // Sort subcommands by name + sort.Slice(subCommands, func(i, j int) bool { + return subCommands[i].Name() < subCommands[j].Name() + }) + + // Recursively print all subcommands + for _, subCmd := range subCommands { + printAllSubCommands(subCmd, level+1) + } +} + func (b *cobraBuilder) hydrateCobra( cobraCmd *cobra.Command, cmd *Command, @@ -186,6 +219,9 @@ func (b *cobraBuilder) hydrateCobra( if commandHasWeb(cmd) { cobraCmd.PersistentFlags().Bool("web", false, "open console page for the current resource") } + + // Add --list-sub-commands flag to list all subcommands + cobraCmd.PersistentFlags().Bool("list-sub-commands", false, "List all subcommands") } const usageTemplate = `USAGE: diff --git a/core/cobra_utils.go b/core/cobra_utils.go index fc7a2f1808..9a6b670175 100644 --- a/core/cobra_utils.go +++ b/core/cobra_utils.go @@ -20,6 +20,14 @@ func cobraRun(ctx context.Context, cmd *Command) func(*cobra.Command, []string) meta := extractMeta(ctx) meta.command = cmd + // Check if --list-sub-commands flag is set + listSubCommandsFlag, err := cobraCmd.PersistentFlags().GetBool("list-sub-commands") + if err == nil && listSubCommandsFlag { + printAllSubCommands(cobraCmd, 0) + + return nil + } + sentry.AddCommandContext(cmd.GetCommandLine("scw")) // If command requires authentication and the client was not directly provided in the bootstrap config, we create a new client and overwrite the existing one @@ -251,16 +259,22 @@ func handleUnmarshalErrors(cmd *Command, unmarshalErr *args.UnmarshalArgError) e switch e.Err.(type) { //nolint:gocritic case *args.CannotParseBoolError: return &CliError{ - Err: errors.New(""), - Message: fmt.Sprintf("invalid value for '%s' argument: invalid boolean value", unmarshalErr.ArgName), - Hint: "Possible values: true, false", + Err: errors.New(""), + Message: fmt.Sprintf( + "invalid value for '%s' argument: invalid boolean value", + unmarshalErr.ArgName, + ), + Hint: "Possible values: true, false", } case *args.CannotParseDateError: dateErr := e.Err.(*args.CannotParseDateError) return &CliError{ - Err: fmt.Errorf("date parsing error: %s", dateErr.ArgValue), - Message: fmt.Sprintf("could not parse %s as either an absolute time (RFC3339) nor a relative time (+/-)RFC3339", dateErr.ArgValue), + Err: fmt.Errorf("date parsing error: %s", dateErr.ArgValue), + Message: fmt.Sprintf( + "could not parse %s as either an absolute time (RFC3339) nor a relative time (+/-)RFC3339", + dateErr.ArgValue, + ), Details: fmt.Sprintf(`Absolute time error: %s Relative time error: %s `, dateErr.AbsoluteTimeParseError, dateErr.RelativeTimeParseError), @@ -312,6 +326,14 @@ func cobraRunHelp(cmd *Command) func(cmd *cobra.Command, args []string) error { return nil } + // Check if --list-sub-commands flag is set + listSubCommandsFlag, err := cobraCmd.PersistentFlags().GetBool("list-sub-commands") + if err == nil && listSubCommandsFlag { + printAllSubCommands(cobraCmd, 0) + + return nil + } + err = cobraCmd.Help() if err != nil { return err diff --git a/core/command_interceptor.go b/core/command_interceptor.go index 81d1ce290b..1e81fb914b 100644 --- a/core/command_interceptor.go +++ b/core/command_interceptor.go @@ -50,8 +50,12 @@ func sdkStdErrorInterceptor( switch sdkError := err.(type) { case *scw.ResourceNotFoundError: return nil, &CliError{ - Message: fmt.Sprintf("cannot find resource '%v' with ID '%v'", sdkError.Resource, sdkError.ResourceID), - Err: err, + Message: fmt.Sprintf( + "cannot find resource '%v' with ID '%v'", + sdkError.Resource, + sdkError.ResourceID, + ), + Err: err, } case *scw.ResponseError: return nil, &CliError{ @@ -86,7 +90,12 @@ func sdkStdErrorInterceptor( invalidArgs := make([]string, len(sdkError.Details)) resources := make([]string, len(sdkError.Details)) for i, d := range sdkError.Details { - invalidArgs[i] = fmt.Sprintf("- %s has reached its quota (%d/%d)", d.Resource, d.Current, d.Quota) + invalidArgs[i] = fmt.Sprintf( + "- %s has reached its quota (%d/%d)", + d.Resource, + d.Current, + d.Quota, + ) resources[i] = fmt.Sprintf("'%v'", d.Resource) } @@ -118,9 +127,14 @@ func sdkStdErrorInterceptor( } return nil, &CliError{ - Message: fmt.Sprintf("resource %s with ID %s expired since %s", sdkError.Resource, sdkError.ResourceID, sdkError.ExpiredSince.String()), - Err: err, - Hint: hint, + Message: fmt.Sprintf( + "resource %s with ID %s expired since %s", + sdkError.Resource, + sdkError.ResourceID, + sdkError.ExpiredSince.String(), + ), + Err: err, + Hint: hint, } } diff --git a/core/default.go b/core/default.go index 670d39668e..7c1880a39a 100644 --- a/core/default.go +++ b/core/default.go @@ -38,7 +38,7 @@ func ApplyDefaultValues(ctx context.Context, argSpecs ArgSpecs, rawArgs args.Raw for _, part := range parts[1 : len(parts)-1] { switch part { case sliceSchema, mapSchema: - newPrefixes := []string(nil) + newPrefixes := make([]string, 0, len(prefixes)) for _, prefix := range prefixes { for _, key := range rawArgs.GetSliceOrMapKeys(prefix) { newPrefixes = append(newPrefixes, prefix+"."+key) diff --git a/core/example.go b/core/example.go index 8fb79219d1..7eec4ed0c9 100644 --- a/core/example.go +++ b/core/example.go @@ -56,13 +56,11 @@ func (e *Example) GetCommandLine(binaryName string, cmd *Command) string { } // Build command line example. - commandParts := []string{ - binaryName, - cmd.Namespace, - cmd.Resource, - cmd.Verb, - } - commandParts = append(commandParts, cmdArgsAsStrings...) + commandParts := append(append( + []string{}, + binaryName, cmd.Namespace, cmd.Resource, cmd.Verb), + cmdArgsAsStrings..., + ) return strings.Join(commandParts, " ") default: diff --git a/core/human/marshal.go b/core/human/marshal.go index 37dd6b862d..d0824a0f49 100644 --- a/core/human/marshal.go +++ b/core/human/marshal.go @@ -257,7 +257,7 @@ func GetStructFieldsIndex(v reflect.Type) [][]int { } recFunc(v, []int(nil)) - result := [][]int(nil) + result := make([][]int, 0, len(found)) for _, value := range found { result = append(result, value) } @@ -461,8 +461,7 @@ func computeMaxCols(grid [][]string) int { func getDefaultFieldsOpt(t reflect.Type) []*MarshalFieldOpt { results := []*MarshalFieldOpt(nil) // Loop through all struct field - for fieldIdx := range t.NumField() { - field := t.Field(fieldIdx) + for field := range t.Fields() { fieldType := field.Type if field.Anonymous { diff --git a/core/reflect.go b/core/reflect.go index 9c2e0f9823..ac98e88b5b 100644 --- a/core/reflect.go +++ b/core/reflect.go @@ -15,26 +15,26 @@ import ( // becomes struct{FieldName string `json:"field_name"`} func newObjectWithForcedJSONTags(t reflect.Type) any { structFieldsCopy := []reflect.StructField(nil) - for i := range t.NumField() { - fieldCopy := t.Field(i) + for fieldCopy := range t.Fields() { if fieldCopy.Anonymous { anonymousType := fieldCopy.Type if anonymousType.Kind() == reflect.Ptr { anonymousType = anonymousType.Elem() } - for i := range anonymousType.NumField() { - fieldCopy := anonymousType.Field(i) - fieldCopy.Tag = reflect.StructTag( + for field := range anonymousType.Fields() { + field.Tag = reflect.StructTag( `json:"` + strings.ReplaceAll( - strcase.ToBashArg(fieldCopy.Name), + strcase.ToBashArg(field.Name), "-", "_", ) + `"`, ) - structFieldsCopy = append(structFieldsCopy, fieldCopy) + structFieldsCopy = append(structFieldsCopy, field) } } else { - fieldCopy.Tag = reflect.StructTag(`json:"` + strings.ReplaceAll(strcase.ToBashArg(fieldCopy.Name), "-", "_") + `"`) + fieldCopy.Tag = reflect.StructTag( + `json:"` + strings.ReplaceAll(strcase.ToBashArg(fieldCopy.Name), "-", "_") + `"`, + ) structFieldsCopy = append(structFieldsCopy, fieldCopy) } } diff --git a/core/reflect_test.go b/core/reflect_test.go index 3ee9b27e7c..ec7c9c0f62 100644 --- a/core/reflect_test.go +++ b/core/reflect_test.go @@ -95,7 +95,11 @@ func Test_getValuesForFieldByName(t *testing.T) { if err != nil { assert.Equal(t, tc.expectedError, err.Error()) } else if tc.expectedValues != nil && !reflect.DeepEqual(tc.expectedValues[0].Interface(), values[0].Interface()) { - t.Errorf("Expected %v, got %v", tc.expectedValues[0].Interface(), values[0].Interface()) + t.Errorf( + "Expected %v, got %v", + tc.expectedValues[0].Interface(), + values[0].Interface(), + ) } }, }, @@ -127,7 +131,11 @@ func Test_getValuesForFieldByName(t *testing.T) { if err != nil { assert.Equal(t, tc.expectedError, err.Error()) } else if tc.expectedValues != nil && !reflect.DeepEqual(tc.expectedValues[0].Interface(), values[0].Interface()) { - t.Errorf("Expected %v, got %v", tc.expectedValues[0].Interface(), values[0].Interface()) + t.Errorf( + "Expected %v, got %v", + tc.expectedValues[0].Interface(), + values[0].Interface(), + ) } }, }, @@ -172,7 +180,11 @@ func Test_getValuesForFieldByName(t *testing.T) { if err != nil { assert.Nil(t, err.Error()) } else if tc.expectedValues != nil && !reflect.DeepEqual(tc.expectedValues[0].Interface(), values[0].Interface()) { - t.Errorf("Expected %v, got %v", tc.expectedValues[0].Interface(), values[0].Interface()) + t.Errorf( + "Expected %v, got %v", + tc.expectedValues[0].Interface(), + values[0].Interface(), + ) } }, }, diff --git a/core/testdata/test-check-version-up-to-date-version.cassette.yaml b/core/testdata/test-check-version-up-to-date-version.cassette.yaml index c1afdc4658..1a883d1a01 100644 --- a/core/testdata/test-check-version-up-to-date-version.cassette.yaml +++ b/core/testdata/test-check-version-up-to-date-version.cassette.yaml @@ -2,21 +2,91 @@ version: 1 interactions: - request: - body: "" + body: '{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/276717999","assets_url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/276717999/assets","upload_url":"https://uploads.github.com/repos/scaleway/scaleway-cli/releases/276717999/assets{?name,label}","html_url":"https://github.com/scaleway/scaleway-cli/releases/tag/v2.50.0","id":276717999,"author":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"node_id":"RE_kwDOAfEQr84QfmGv","tag_name":"v2.50.0","target_commitish":"master","name":"v2.50.0","draft":false,"immutable":false,"prerelease":false,"created_at":"2026-01-14T12:26:51Z","updated_at":"2026-01-14T13:22:00Z","published_at":"2026-01-14T13:22:00Z","assets":[{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440813","id":340440813,"node_id":"RA_kwDOAfEQr84USrbt","name":"scaleway-cli_2.50.0_darwin_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":54860752,"digest":"sha256:61dbe90647f77f22fe51d51d2440e6481355c98363fbfc15d223431b19231892","download_count":2,"created_at":"2026-01-14T13:09:33Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_darwin_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440829","id":340440829,"node_id":"RA_kwDOAfEQr84USrb9","name":"scaleway-cli_2.50.0_darwin_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":51078354,"digest":"sha256:2fa4837e01b2598653cf3b8a1500e9252e2300dcfbd12bf436e94e795b06a613","download_count":2,"created_at":"2026-01-14T13:09:35Z","updated_at":"2026-01-14T13:09:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_darwin_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440828","id":340440828,"node_id":"RA_kwDOAfEQr84USrb8","name":"scaleway-cli_2.50.0_freebsd_386","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":30249154,"digest":"sha256:8f15f50e8051ede33a3a484b8964f38a3ee3ce0b2d24bf9ace40063b31580bb1","download_count":1,"created_at":"2026-01-14T13:09:35Z","updated_at":"2026-01-14T13:09:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_freebsd_386"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440818","id":340440818,"node_id":"RA_kwDOAfEQr84USrby","name":"scaleway-cli_2.50.0_freebsd_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":32014530,"digest":"sha256:391ac950470c3ad8adee778df85385853a1989b050254dd30caadd45eff621bb","download_count":1,"created_at":"2026-01-14T13:09:34Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_freebsd_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440807","id":340440807,"node_id":"RA_kwDOAfEQr84USrbn","name":"scaleway-cli_2.50.0_freebsd_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":30277826,"digest":"sha256:f241a0bd8dc69e20edbb436ce640dbfc3b1a7434275da4143797f2595315c55e","download_count":1,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:32Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_freebsd_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440830","id":340440830,"node_id":"RA_kwDOAfEQr84USrb-","name":"scaleway-cli_2.50.0_linux_386","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":50270392,"digest":"sha256:b733ea7a19c4486f4cab7acee6d5b4b40fac11f6d7d7bd7d31f383c4de9b6187","download_count":1,"created_at":"2026-01-14T13:09:35Z","updated_at":"2026-01-14T13:09:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_linux_386"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440819","id":340440819,"node_id":"RA_kwDOAfEQr84USrbz","name":"scaleway-cli_2.50.0_linux_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":53608632,"digest":"sha256:7d46e2d0eb613a72fc948d8fa2b3ff10725f67612f3d9330328444f9899d41e1","download_count":1861,"created_at":"2026-01-14T13:09:34Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_linux_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440816","id":340440816,"node_id":"RA_kwDOAfEQr84USrbw","name":"scaleway-cli_2.50.0_linux_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":49545400,"digest":"sha256:7b71dd98f472b656f2f07eea0008bbc0b413b603f5a276aed1397cf74964bb7a","download_count":29,"created_at":"2026-01-14T13:09:33Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_linux_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440808","id":340440808,"node_id":"RA_kwDOAfEQr84USrbo","name":"scaleway-cli_2.50.0_windows_386.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":51716608,"digest":"sha256:2f41d3bb6188af1d7e42917febbcf913b185116ad234aa4ace30936a0f86350e","download_count":1,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_windows_386.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440809","id":340440809,"node_id":"RA_kwDOAfEQr84USrbp","name":"scaleway-cli_2.50.0_windows_amd64.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":54917632,"digest":"sha256:832e532ce89de79ff4826ac75f9542738b0c85a8b098585f9a5bc97fd5365409","download_count":7,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_windows_amd64.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440810","id":340440810,"node_id":"RA_kwDOAfEQr84USrbq","name":"scaleway-cli_2.50.0_windows_arm64.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":50111488,"digest":"sha256:73dd7712aa5d142f3719eca61f475f11a9f4f87fa744b4f2b0035627165f99bf","download_count":1,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_windows_arm64.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440831","id":340440831,"node_id":"RA_kwDOAfEQr84USrb_","name":"SHA256SUMS","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":1098,"digest":"sha256:0cad4d61c10f739c8c2e7080aa7c5e92afbd43a1ba612073dd92f2361da4448f","download_count":98,"created_at":"2026-01-14T13:09:36Z","updated_at":"2026-01-14T13:09:36Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/SHA256SUMS"}],"tarball_url":"https://api.github.com/repos/scaleway/scaleway-cli/tarball/v2.50.0","zipball_url":"https://api.github.com/repos/scaleway/scaleway-cli/zipball/v2.50.0","body":"## + Changelog\r\n\r\n### Feat\r\n\r\n* 533c357d243fe863bad8ac0846f5d00b830c455f: + feat(apple_silicon): enabled kext (#5247) (@scaleway-bot)\r\n* bcce216649b033a98aca4e034428be2df541e6b9: + feat(audit_trail): add resource types for VPC (#5235) (@scaleway-bot)\r\n* 59803e6cc46fceda93888830f3c3e2e82babb9c1: + feat(audit_trail): add vpc-gw resources info (#5270) (@scaleway-bot)\r\n* 8a4b571c9820ed6d9181fd7aa2faef0a5155d8f6: + feat(edge_services): add doc and cli for head stage (#5264) (@scaleway-bot)\r\n* + 06a7549dcc9ee0a55bfad2b87ffbac8932167866: feat(edge_services): add serverless + function backend (#5246) (@scaleway-bot)\r\n* ba5dd25af3c709a66bde11d2f7703e1c81be75a6: + feat(redis): add cluster connect command (#5211) (@jremy42)\r\n\r\n### Fixes\r\n\r\n* + 40e574298fd157886c6e758c60f2b8b2775f30d1: fix(instance): change scratch volume + logic (#5276) (@remyleone)\r\n* 6fd3389d90f09d25aa29e25b033c9ad8edb8f9b3: fix(instance): + fix image listing zone handling (#5262) (@remyleone)\r\n* 72f9b02b7a99cba5675faf7bb69c64975ef60f4f: + fix(instance/v1): revert \"remove field export_uri on the Instance API (#5237) + (@scaleway-bot)\r\n\r\n\r\n### Docs\r\n\r\n* 35aa2aa208ac780b9e46945112f8c638f9a59ddc: + docs(rdb): add database migration method across regions (#5103) (@jremy42)\r\n\r\n### + Chore\r\n\r\n* 0ea6b3305d2baa6212c1aecf22df64926e19c514: chore(k8s): remove + deprecated features from the cli (#5241) (@scaleway-bot)\r\n* bd6a3817fc21448f404002b56d7030540a7d1b7f: + chore(cockpit): change documentation order + required field + data-exporter + rework (#5254) (@scaleway-bot)\r\n* 0b8823ac7fa81f50a9a4a01b10d1be0e19edf484: + chore(deps): bump alpine from 3.22 to 3.23 (#5249) (@dependabot[bot])\r\n* fcfe42027309c0d065b5d1c7b8bb3ca71b5389c3: + chore(deps): bump crate-ci/typos from 1.40.0 to 1.41.0 (#5248) (@dependabot[bot])\r\n* + 1f4e07f86fb3326f778496fac58989f386c0c3ee: chore(deps): bump github.com/aws/aws-sdk-go-v2 + from 1.41.0 to 1.41.1 (#5267) (@dependabot[bot])\r\n* c796412609c21ef95bd26dde74a72396cff437cb: + chore(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.94.0 to 1.95.0 + (#5245) (@dependabot[bot])\r\n* b77f9e305a84fa381299c617d07151d885190acf: chore(deps): + bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.95.0 to 1.95.1 (#5268) (@dependabot[bot])\r\n* + 5776e302f1ba2a8cf3895d30b1911ec82ca2eb07: chore(deps): bump golang.org/x/crypto + from 0.46.0 to 0.47.0 (#5273) (@dependabot[bot])\r\n* 3cfe8727948f48cd5844726f637a76c9ce6fca39: + chore(deps): bump golang.org/x/term from 0.38.0 to 0.39.0 (#5266) (@dependabot[bot])\r\n* + c734eb42f6f495fe14ec0305e126be480d7d4d72: chore(deps): bump golang.org/x/text + from 0.32.0 to 0.33.0 (#5265) (@dependabot[bot])\r\n* 0b2724175ef8aee353411f8ef2e358a6c66fd688: + chore(deps-dev): bump prettier from 3.7.3 to 3.7.4 in /wasm (#5251) (@dependabot[bot])\r\n* + d83f57b40d43bd81abfc2627fbf3310b13171070: chore(deps-dev): bump vitest and @vitest/browser + in /wasm (#5250) (@dependabot[bot])\r\n* 6953eac0618bdd4da63d847fa4a01740c8f2fdc7: + chore(k8s): add MigratePoolsToNewImagesRequest (#5261) (@scaleway-bot)\r\n* + c278ab47ad20c019b9601610c505aa575cc3d15a: chore: add support for setup buildx + (#5277) (@remyleone)\r\n* 3680a603ce8b953383c55b6a8f5db211193bd7e7: chore: bump + sdk (#5243) (@scaleway-bot)\r\n* a9d52a19eaf8296d9e2cd78503edd4a777d232d8: chore: + fix lint (#5263) (@remyleone)\r\n* 6dc27032d635e4a9f053a75e23cf12acbb36dc8f: + chore: migrate goreleaser docker manifest to v2 (#5236) (@remyleone)\r\n\r\n","mentions_count":4}' form: {} headers: {} url: https://api.github.com/repos/scaleway/scaleway-cli/releases/latest method: GET response: - body: '{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/71206020","assets_url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/71206020/assets","upload_url":"https://uploads.github.com/repos/scaleway/scaleway-cli/releases/71206020/assets{?name,label}","html_url":"https://github.com/scaleway/scaleway-cli/releases/tag/v2.5.4","id":71206020,"author":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"node_id":"RE_kwDOAfEQr84EPoSE","tag_name":"v2.5.4","target_commitish":"master","name":"v2.5.4","draft":false,"prerelease":false,"created_at":"2022-07-04T12:41:22Z","published_at":"2022-07-04T14:43:07Z","assets":[{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528211","id":70528211,"node_id":"RA_kwDOAfEQr84ENCzT","name":"scaleway-cli_2.5.4_darwin_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16821520,"download_count":22,"created_at":"2022-07-04T14:27:35Z","updated_at":"2022-07-04T14:27:36Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_darwin_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528210","id":70528210,"node_id":"RA_kwDOAfEQr84ENCzS","name":"scaleway-cli_2.5.4_darwin_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17291122,"download_count":21,"created_at":"2022-07-04T14:27:34Z","updated_at":"2022-07-04T14:27:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_darwin_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528213","id":70528213,"node_id":"RA_kwDOAfEQr84ENCzV","name":"scaleway-cli_2.5.4_freebsd_386","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":15309314,"download_count":3,"created_at":"2022-07-04T14:27:35Z","updated_at":"2022-07-04T14:27:36Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_freebsd_386"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528204","id":70528204,"node_id":"RA_kwDOAfEQr84ENCzM","name":"scaleway-cli_2.5.4_freebsd_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":17654660,"download_count":2,"created_at":"2022-07-04T14:27:32Z","updated_at":"2022-07-04T14:27:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_freebsd_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528202","id":70528202,"node_id":"RA_kwDOAfEQr84ENCzK","name":"scaleway-cli_2.5.4_freebsd_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16652145,"download_count":5,"created_at":"2022-07-04T14:27:31Z","updated_at":"2022-07-04T14:27:32Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_freebsd_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528214","id":70528214,"node_id":"RA_kwDOAfEQr84ENCzW","name":"scaleway-cli_2.5.4_linux_386","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":15413498,"download_count":4,"created_at":"2022-07-04T14:27:36Z","updated_at":"2022-07-04T14:27:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_linux_386"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528205","id":70528205,"node_id":"RA_kwDOAfEQr84ENCzN","name":"scaleway-cli_2.5.4_linux_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16950501,"download_count":492,"created_at":"2022-07-04T14:27:33Z","updated_at":"2022-07-04T14:27:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_linux_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528209","id":70528209,"node_id":"RA_kwDOAfEQr84ENCzR","name":"scaleway-cli_2.5.4_linux_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":16685867,"download_count":27,"created_at":"2022-07-04T14:27:33Z","updated_at":"2022-07-04T14:27:34Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_linux_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528215","id":70528215,"node_id":"RA_kwDOAfEQr84ENCzX","name":"scaleway-cli_2.5.4_windows_386.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/x-ms-dos-executable","state":"uploaded","size":16158208,"download_count":32,"created_at":"2022-07-04T14:27:36Z","updated_at":"2022-07-04T14:27:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_windows_386.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528221","id":70528221,"node_id":"RA_kwDOAfEQr84ENCzd","name":"scaleway-cli_2.5.4_windows_amd64.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/x-ms-dos-executable","state":"uploaded","size":17436672,"download_count":109,"created_at":"2022-07-04T14:27:37Z","updated_at":"2022-07-04T14:27:38Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_windows_amd64.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528200","id":70528200,"node_id":"RA_kwDOAfEQr84ENCzI","name":"scaleway-cli_2.5.4_windows_arm64.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/x-ms-dos-executable","state":"uploaded","size":17083904,"download_count":20,"created_at":"2022-07-04T14:27:31Z","updated_at":"2022-07-04T14:27:32Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/scaleway-cli_2.5.4_windows_arm64.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/70528201","id":70528201,"node_id":"RA_kwDOAfEQr84ENCzJ","name":"SHA256SUMS","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":1087,"download_count":1998,"created_at":"2022-07-04T14:27:31Z","updated_at":"2022-07-04T14:27:31Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.5.4/SHA256SUMS"}],"tarball_url":"https://api.github.com/repos/scaleway/scaleway-cli/tarball/v2.5.4","zipball_url":"https://api.github.com/repos/scaleway/scaleway-cli/zipball/v2.5.4","body":"## - Changelog\r\n\r\n### feat\r\n\r\n* 2ae28a0786517fe08dc0a56d2c7a80b8e5775a3e: - feat(iam): add iam commands with beta flag (#2378) (@Codelax)\r\n* f971117904dc9e56c39205ca624d590cf5792b02: - feat(redis): add support for fr-par-1 and nl-ams-1 (#2359) (@scaleway-bot)\r\n\r\n### - fix\r\n\r\n* 364f6488e5ad8f3924c30a3aee4f0e0af2db171d: fix(server_create): pass - down error on bad image label (#2370) (@Codelax)\r\n\r\n### docs\r\n\r\n* 95f1c19e178fbb2e615891cf0f9dd8e7696e245e: - docs(iam): specify fields limits (#2394) (@scaleway-bot)\r\n\r\n### bump\r\n\r\n* - 691bf24bb49ee3f206af459125657b9aed6537a8: bump: sdk-go with fix custom_security_group - type and update goldens (#2357) (@Monitob)\r\n\r\n\r\n","mentions_count":3}' + body: '{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/276717999","assets_url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/276717999/assets","upload_url":"https://uploads.github.com/repos/scaleway/scaleway-cli/releases/276717999/assets{?name,label}","html_url":"https://github.com/scaleway/scaleway-cli/releases/tag/v2.50.0","id":276717999,"author":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"node_id":"RE_kwDOAfEQr84QfmGv","tag_name":"v2.50.0","target_commitish":"master","name":"v2.50.0","draft":false,"immutable":false,"prerelease":false,"created_at":"2026-01-14T12:26:51Z","updated_at":"2026-01-14T13:22:00Z","published_at":"2026-01-14T13:22:00Z","assets":[{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440813","id":340440813,"node_id":"RA_kwDOAfEQr84USrbt","name":"scaleway-cli_2.50.0_darwin_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":54860752,"digest":"sha256:61dbe90647f77f22fe51d51d2440e6481355c98363fbfc15d223431b19231892","download_count":2,"created_at":"2026-01-14T13:09:33Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_darwin_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440829","id":340440829,"node_id":"RA_kwDOAfEQr84USrb9","name":"scaleway-cli_2.50.0_darwin_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":51078354,"digest":"sha256:2fa4837e01b2598653cf3b8a1500e9252e2300dcfbd12bf436e94e795b06a613","download_count":2,"created_at":"2026-01-14T13:09:35Z","updated_at":"2026-01-14T13:09:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_darwin_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440828","id":340440828,"node_id":"RA_kwDOAfEQr84USrb8","name":"scaleway-cli_2.50.0_freebsd_386","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":30249154,"digest":"sha256:8f15f50e8051ede33a3a484b8964f38a3ee3ce0b2d24bf9ace40063b31580bb1","download_count":1,"created_at":"2026-01-14T13:09:35Z","updated_at":"2026-01-14T13:09:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_freebsd_386"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440818","id":340440818,"node_id":"RA_kwDOAfEQr84USrby","name":"scaleway-cli_2.50.0_freebsd_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":32014530,"digest":"sha256:391ac950470c3ad8adee778df85385853a1989b050254dd30caadd45eff621bb","download_count":1,"created_at":"2026-01-14T13:09:34Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_freebsd_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440807","id":340440807,"node_id":"RA_kwDOAfEQr84USrbn","name":"scaleway-cli_2.50.0_freebsd_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":30277826,"digest":"sha256:f241a0bd8dc69e20edbb436ce640dbfc3b1a7434275da4143797f2595315c55e","download_count":1,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:32Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_freebsd_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440830","id":340440830,"node_id":"RA_kwDOAfEQr84USrb-","name":"scaleway-cli_2.50.0_linux_386","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":50270392,"digest":"sha256:b733ea7a19c4486f4cab7acee6d5b4b40fac11f6d7d7bd7d31f383c4de9b6187","download_count":1,"created_at":"2026-01-14T13:09:35Z","updated_at":"2026-01-14T13:09:37Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_linux_386"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440819","id":340440819,"node_id":"RA_kwDOAfEQr84USrbz","name":"scaleway-cli_2.50.0_linux_amd64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":53608632,"digest":"sha256:7d46e2d0eb613a72fc948d8fa2b3ff10725f67612f3d9330328444f9899d41e1","download_count":1861,"created_at":"2026-01-14T13:09:34Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_linux_amd64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440816","id":340440816,"node_id":"RA_kwDOAfEQr84USrbw","name":"scaleway-cli_2.50.0_linux_arm64","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":49545400,"digest":"sha256:7b71dd98f472b656f2f07eea0008bbc0b413b603f5a276aed1397cf74964bb7a","download_count":29,"created_at":"2026-01-14T13:09:33Z","updated_at":"2026-01-14T13:09:35Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_linux_arm64"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440808","id":340440808,"node_id":"RA_kwDOAfEQr84USrbo","name":"scaleway-cli_2.50.0_windows_386.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":51716608,"digest":"sha256:2f41d3bb6188af1d7e42917febbcf913b185116ad234aa4ace30936a0f86350e","download_count":1,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_windows_386.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440809","id":340440809,"node_id":"RA_kwDOAfEQr84USrbp","name":"scaleway-cli_2.50.0_windows_amd64.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":54917632,"digest":"sha256:832e532ce89de79ff4826ac75f9542738b0c85a8b098585f9a5bc97fd5365409","download_count":7,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_windows_amd64.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440810","id":340440810,"node_id":"RA_kwDOAfEQr84USrbq","name":"scaleway-cli_2.50.0_windows_arm64.exe","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/x-msdownload","state":"uploaded","size":50111488,"digest":"sha256:73dd7712aa5d142f3719eca61f475f11a9f4f87fa744b4f2b0035627165f99bf","download_count":1,"created_at":"2026-01-14T13:09:31Z","updated_at":"2026-01-14T13:09:33Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/scaleway-cli_2.50.0_windows_arm64.exe"},{"url":"https://api.github.com/repos/scaleway/scaleway-cli/releases/assets/340440831","id":340440831,"node_id":"RA_kwDOAfEQr84USrb_","name":"SHA256SUMS","label":"","uploader":{"login":"github-actions[bot]","id":41898282,"node_id":"MDM6Qm90NDE4OTgyODI=","avatar_url":"https://avatars.githubusercontent.com/in/15368?v=4","gravatar_id":"","url":"https://api.github.com/users/github-actions%5Bbot%5D","html_url":"https://github.com/apps/github-actions","followers_url":"https://api.github.com/users/github-actions%5Bbot%5D/followers","following_url":"https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/github-actions%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/github-actions%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/github-actions%5Bbot%5D/repos","events_url":"https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/github-actions%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"content_type":"application/octet-stream","state":"uploaded","size":1098,"digest":"sha256:0cad4d61c10f739c8c2e7080aa7c5e92afbd43a1ba612073dd92f2361da4448f","download_count":98,"created_at":"2026-01-14T13:09:36Z","updated_at":"2026-01-14T13:09:36Z","browser_download_url":"https://github.com/scaleway/scaleway-cli/releases/download/v2.50.0/SHA256SUMS"}],"tarball_url":"https://api.github.com/repos/scaleway/scaleway-cli/tarball/v2.50.0","zipball_url":"https://api.github.com/repos/scaleway/scaleway-cli/zipball/v2.50.0","body":"## + Changelog\r\n\r\n### Feat\r\n\r\n* 533c357d243fe863bad8ac0846f5d00b830c455f: + feat(apple_silicon): enabled kext (#5247) (@scaleway-bot)\r\n* bcce216649b033a98aca4e034428be2df541e6b9: + feat(audit_trail): add resource types for VPC (#5235) (@scaleway-bot)\r\n* 59803e6cc46fceda93888830f3c3e2e82babb9c1: + feat(audit_trail): add vpc-gw resources info (#5270) (@scaleway-bot)\r\n* 8a4b571c9820ed6d9181fd7aa2faef0a5155d8f6: + feat(edge_services): add doc and cli for head stage (#5264) (@scaleway-bot)\r\n* + 06a7549dcc9ee0a55bfad2b87ffbac8932167866: feat(edge_services): add serverless + function backend (#5246) (@scaleway-bot)\r\n* ba5dd25af3c709a66bde11d2f7703e1c81be75a6: + feat(redis): add cluster connect command (#5211) (@jremy42)\r\n\r\n### Fixes\r\n\r\n* + 40e574298fd157886c6e758c60f2b8b2775f30d1: fix(instance): change scratch volume + logic (#5276) (@remyleone)\r\n* 6fd3389d90f09d25aa29e25b033c9ad8edb8f9b3: fix(instance): + fix image listing zone handling (#5262) (@remyleone)\r\n* 72f9b02b7a99cba5675faf7bb69c64975ef60f4f: + fix(instance/v1): revert \"remove field export_uri on the Instance API (#5237) + (@scaleway-bot)\r\n\r\n\r\n### Docs\r\n\r\n* 35aa2aa208ac780b9e46945112f8c638f9a59ddc: + docs(rdb): add database migration method across regions (#5103) (@jremy42)\r\n\r\n### + Chore\r\n\r\n* 0ea6b3305d2baa6212c1aecf22df64926e19c514: chore(k8s): remove + deprecated features from the cli (#5241) (@scaleway-bot)\r\n* bd6a3817fc21448f404002b56d7030540a7d1b7f: + chore(cockpit): change documentation order + required field + data-exporter + rework (#5254) (@scaleway-bot)\r\n* 0b8823ac7fa81f50a9a4a01b10d1be0e19edf484: + chore(deps): bump alpine from 3.22 to 3.23 (#5249) (@dependabot[bot])\r\n* fcfe42027309c0d065b5d1c7b8bb3ca71b5389c3: + chore(deps): bump crate-ci/typos from 1.40.0 to 1.41.0 (#5248) (@dependabot[bot])\r\n* + 1f4e07f86fb3326f778496fac58989f386c0c3ee: chore(deps): bump github.com/aws/aws-sdk-go-v2 + from 1.41.0 to 1.41.1 (#5267) (@dependabot[bot])\r\n* c796412609c21ef95bd26dde74a72396cff437cb: + chore(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.94.0 to 1.95.0 + (#5245) (@dependabot[bot])\r\n* b77f9e305a84fa381299c617d07151d885190acf: chore(deps): + bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.95.0 to 1.95.1 (#5268) (@dependabot[bot])\r\n* + 5776e302f1ba2a8cf3895d30b1911ec82ca2eb07: chore(deps): bump golang.org/x/crypto + from 0.46.0 to 0.47.0 (#5273) (@dependabot[bot])\r\n* 3cfe8727948f48cd5844726f637a76c9ce6fca39: + chore(deps): bump golang.org/x/term from 0.38.0 to 0.39.0 (#5266) (@dependabot[bot])\r\n* + c734eb42f6f495fe14ec0305e126be480d7d4d72: chore(deps): bump golang.org/x/text + from 0.32.0 to 0.33.0 (#5265) (@dependabot[bot])\r\n* 0b2724175ef8aee353411f8ef2e358a6c66fd688: + chore(deps-dev): bump prettier from 3.7.3 to 3.7.4 in /wasm (#5251) (@dependabot[bot])\r\n* + d83f57b40d43bd81abfc2627fbf3310b13171070: chore(deps-dev): bump vitest and @vitest/browser + in /wasm (#5250) (@dependabot[bot])\r\n* 6953eac0618bdd4da63d847fa4a01740c8f2fdc7: + chore(k8s): add MigratePoolsToNewImagesRequest (#5261) (@scaleway-bot)\r\n* + c278ab47ad20c019b9601610c505aa575cc3d15a: chore: add support for setup buildx + (#5277) (@remyleone)\r\n* 3680a603ce8b953383c55b6a8f5db211193bd7e7: chore: bump + sdk (#5243) (@scaleway-bot)\r\n* a9d52a19eaf8296d9e2cd78503edd4a777d232d8: chore: + fix lint (#5263) (@remyleone)\r\n* 6dc27032d635e4a9f053a75e23cf12acbb36dc8f: + chore: migrate goreleaser docker manifest to v2 (#5236) (@remyleone)\r\n\r\n","mentions_count":4}' headers: Accept-Ranges: - bytes @@ -34,39 +104,81 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 19 Aug 2022 13:30:55 GMT + - Fri, 16 Jan 2026 13:48:08 GMT Etag: - - W/"d295c954e141955c348ec88a0b698832c930903f2053538dbc8d98850a0a1ad4" + - W/"a9f74e95fe8cacf81a4e052a74a6362e2af0412a8d23a4bd317d1558c29a2d0f" Last-Modified: - - Mon, 04 Jul 2022 14:43:07 GMT + - Wed, 14 Jan 2026 13:22:00 GMT Referrer-Policy: - origin-when-cross-origin, strict-origin-when-cross-origin Server: - - GitHub.com + - github.com Strict-Transport-Security: - max-age=31536000; includeSubdomains; preload Vary: - - Accept, Accept-Encoding, Accept, X-Requested-With + - Accept,Accept-Encoding, Accept, X-Requested-With X-Content-Type-Options: - nosniff X-Frame-Options: - deny + X-Github-Api-Version-Selected: + - "2022-11-28" X-Github-Media-Type: - github.v3; format=json X-Github-Request-Id: - - 8B8A:176C:533AA7:55D40C:62FF90A0 + - EBE9:1AEE76:1EB53F3:1B71C2A:696A4198 X-Ratelimit-Limit: - "60" X-Ratelimit-Remaining: - - "54" + - "44" X-Ratelimit-Reset: - - "1660919456" + - "1768572817" X-Ratelimit-Resource: - core X-Ratelimit-Used: - - "6" + - "16" X-Xss-Protection: - "0" status: 200 OK code: 200 duration: "" +- request: + body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"rleone-macbook", + "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2025-09-08T15:21:36.563446Z", + "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW363CZ5SRN5YHQBGXY + method: GET + response: + body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"rleone-macbook", + "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2025-09-08T15:21:36.563446Z", + "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' + headers: + Content-Length: + - "387" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 16 Jan 2026 13:48:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 733b4938-3491-48a5-b476-753fdd77b106 + status: 200 OK + code: 200 + duration: "" diff --git a/core/testdata/test-deprecated-command#00.golden b/core/testdata/test-deprecated-command#00.golden index b648375ff6..1b26ac8e21 100644 --- a/core/testdata/test-deprecated-command#00.golden +++ b/core/testdata/test-deprecated-command#00.golden @@ -10,7 +10,8 @@ AVAILABLE COMMANDS: engine short engine (Deprecated) FLAGS: - -h, --help help for instance + -h, --help help for instance + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/core/testdata/test-positional-arg-full-command#01.golden b/core/testdata/test-positional-arg-full-command#01.golden index 46289b57f9..0627650b67 100644 --- a/core/testdata/test-positional-arg-full-command#01.golden +++ b/core/testdata/test-positional-arg-full-command#01.golden @@ -8,7 +8,8 @@ ARGS: [tag] FLAGS: - -h, --help help for positional + -h, --help help for positional + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/core/testdata/test-unknown-command-unknown-resource.golden b/core/testdata/test-unknown-command-unknown-resource.golden index 4e6a769709..fc117722d1 100644 --- a/core/testdata/test-unknown-command-unknown-resource.golden +++ b/core/testdata/test-unknown-command-unknown-resource.golden @@ -7,7 +7,8 @@ AVAILABLE COMMANDS: server FLAGS: - -h, --help help for instance + -h, --help help for instance + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/core/testdata/test-unknown-command-unknown-verb.golden b/core/testdata/test-unknown-command-unknown-verb.golden index 87681ee3cc..aa5d8a181f 100644 --- a/core/testdata/test-unknown-command-unknown-verb.golden +++ b/core/testdata/test-unknown-command-unknown-verb.golden @@ -4,7 +4,8 @@ USAGE: scw instance server FLAGS: - -h, --help help for server + -h, --help help for server + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/core/testing.go b/core/testing.go index a76720c0a0..90e57248a1 100644 --- a/core/testing.go +++ b/core/testing.go @@ -14,6 +14,7 @@ import ( "path" "path/filepath" "regexp" + "slices" "strconv" "strings" "testing" @@ -320,13 +321,8 @@ func folderUsesVCRv4(fullFolderPath string) bool { fullPathSplit := strings.Split(fullFolderPath, string(os.PathSeparator)) folder := fullPathSplit[len(fullPathSplit)-2] - for _, migratedFolder := range foldersUsingVCRv4 { - if migratedFolder == folder { - return true - } - } - return false + return slices.Contains(foldersUsingVCRv4, folder) } // Run a CLI integration test. See TestConfig for configuration option @@ -347,7 +343,7 @@ func Test(config *TestConfig) func(t *testing.T) { } // We need to set up this variable to ensure that relative date parsing stay consistent - args.TestForceNow = scw.TimePtr(time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC)) + args.TestForceNow = new(time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC)) // Because human marshal of date is relative (e.g 3 minutes ago) we must make sure it stay consistent for golden to works. // Here we return a constant string. We may need to find a better place to put this. diff --git a/core/validate.go b/core/validate.go index 7f32222dc0..6c139dc75c 100644 --- a/core/validate.go +++ b/core/validate.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "reflect" + "slices" "strconv" "strings" @@ -225,13 +226,7 @@ func DefaultArgSpecValidateFunc() ArgSpecValidateFunc { } func stringExists(strs []string, s string) bool { - for _, s2 := range strs { - if s == s2 { - return true - } - } - - return false + return slices.Contains(strs, s) } // ValidateSecretKey validates a secret key ID. diff --git a/core/validate_test.go b/core/validate_test.go index 0296b5a1d2..977d7eda31 100644 --- a/core/validate_test.go +++ b/core/validate_test.go @@ -569,7 +569,14 @@ func TestValidateRequiredOneOfGroups(t *testing.T) { if tt.expectedError == "" { assert.NoError(t, err, "Expected no error, got %v", err) } else { - assert.EqualError(t, err, tt.expectedError, "Expected error message '%s', got '%v'", tt.expectedError, err) + assert.EqualError( + t, + err, + tt.expectedError, + "Expected error message '%s', got '%v'", + tt.expectedError, + err, + ) } }) } @@ -714,7 +721,14 @@ func TestValidateUniqueOneOfGroups(t *testing.T) { if tt.expectedError == "" { assert.NoError(t, err, "Expected no error, got %v", err) } else { - assert.EqualError(t, err, tt.expectedError, "Expected error message '%s', got '%v'", tt.expectedError, err) + assert.EqualError( + t, + err, + tt.expectedError, + "Expected error message '%s', got '%v'", + tt.expectedError, + err, + ) } }) } diff --git a/docs/commands/apple-silicon.md b/docs/commands/apple-silicon.md index 8db3272277..963c7bc634 100644 --- a/docs/commands/apple-silicon.md +++ b/docs/commands/apple-silicon.md @@ -329,6 +329,7 @@ scw apple-silicon server create [arg=value ...] | runner-configuration.token | | | | runner-configuration.provider | One of: `unknown_provider`, `github`, `gitlab` | | | applied-runner-configurations.runner-configuration-ids.{index} | | | +| enable-kext | | Enable kernel extensions | | zone | Default: `fr-par-1`
One of: `fr-par-3` | Zone to target. If none is passed will use default zone from the config | @@ -432,6 +433,7 @@ scw apple-silicon server reinstall [arg=value ...] |------|---|-------------| | server-id | Required | UUID of the server you want to reinstall | | os-id | | Reinstall the server with the OS corresponding to the os_id | +| enable-kext | | Enable kernel extensions | | zone | Default: `fr-par-1`
One of: `fr-par-3` | Zone to target. If none is passed will use default zone from the config | diff --git a/docs/commands/audit-trail.md b/docs/commands/audit-trail.md index 41b085d970..7aff6d05a1 100644 --- a/docs/commands/audit-trail.md +++ b/docs/commands/audit-trail.md @@ -29,7 +29,7 @@ scw audit-trail event list [arg=value ...] | Name | | Description | |------|---|-------------| | project-id | | (Optional) ID of the Project containing the Audit Trail events | -| resource-type | One of: `unknown_type`, `secm_secret`, `secm_secret_version`, `kube_cluster`, `kube_pool`, `kube_node`, `kube_acl`, `keym_key`, `iam_user`, `iam_application`, `iam_group`, `iam_policy`, `iam_api_key`, `iam_ssh_key`, `iam_rule`, `iam_saml`, `iam_saml_certificate`, `iam_scim`, `iam_scim_token`, `secret_manager_secret`, `secret_manager_version`, `key_manager_key`, `account_user`, `account_organization`, `account_project`, `account_contract_signature`, `instance_server`, `instance_placement_group`, `instance_security_group`, `instance_volume`, `instance_snapshot`, `instance_image`, `instance_template`, `apple_silicon_server`, `baremetal_server`, `baremetal_setting`, `ipam_ip`, `sbs_volume`, `sbs_snapshot`, `load_balancer_lb`, `load_balancer_ip`, `load_balancer_frontend`, `load_balancer_backend`, `load_balancer_route`, `load_balancer_acl`, `load_balancer_certificate`, `sfs_filesystem`, `vpc_private_network`, `edge_services_plan`, `edge_services_pipeline`, `edge_services_dns_stage`, `edge_services_tls_stage`, `edge_services_cache_stage`, `edge_services_route_stage`, `edge_services_route_rules`, `edge_services_waf_stage`, `edge_services_backend_stage`, `s2s_vpn_gateway`, `s2s_customer_gateway`, `s2s_routing_policy`, `s2s_connection` | (Optional) Type of the Scaleway resource | +| resource-type | One of: `unknown_type`, `secm_secret`, `secm_secret_version`, `kube_cluster`, `kube_pool`, `kube_node`, `kube_acl`, `keym_key`, `iam_user`, `iam_application`, `iam_group`, `iam_policy`, `iam_api_key`, `iam_ssh_key`, `iam_rule`, `iam_saml`, `iam_saml_certificate`, `iam_scim`, `iam_scim_token`, `secret_manager_secret`, `secret_manager_version`, `key_manager_key`, `account_user`, `account_organization`, `account_project`, `account_contract_signature`, `instance_server`, `instance_placement_group`, `instance_security_group`, `instance_volume`, `instance_snapshot`, `instance_image`, `instance_template`, `apple_silicon_server`, `baremetal_server`, `baremetal_setting`, `ipam_ip`, `sbs_volume`, `sbs_snapshot`, `load_balancer_lb`, `load_balancer_ip`, `load_balancer_frontend`, `load_balancer_backend`, `load_balancer_route`, `load_balancer_acl`, `load_balancer_certificate`, `sfs_filesystem`, `vpc_private_network`, `vpc_vpc`, `vpc_subnet`, `vpc_route`, `vpc_acl`, `edge_services_plan`, `edge_services_pipeline`, `edge_services_dns_stage`, `edge_services_tls_stage`, `edge_services_cache_stage`, `edge_services_route_stage`, `edge_services_route_rules`, `edge_services_waf_stage`, `edge_services_backend_stage`, `s2s_vpn_gateway`, `s2s_customer_gateway`, `s2s_routing_policy`, `s2s_connection`, `vpc_gw_gateway`, `vpc_gw_gateway_network`, `vpc_gw_dhcp`, `vpc_gw_dhcp_entry`, `vpc_gw_pat_rule`, `vpc_gw_ip`, `audit_trail_export_job`, `rdb_instance`, `rdb_instance_backup`, `rdb_instance_endpoint`, `rdb_instance_logs`, `rdb_instance_read_replica`, `rdb_instance_snapshot` | (Optional) Type of the Scaleway resource | | method-name | | (Optional) Name of the method of the API call performed | | status | | (Optional) HTTP status code of the request. Returns either `200` if the request was successful or `403` if the permission was denied | | recorded-after | | (Optional) The `recorded_after` parameter defines the earliest timestamp from which Audit Trail events are retrieved. Returns `one hour ago` by default | diff --git a/docs/commands/block.md b/docs/commands/block.md index e39c4e1f50..f392a0e824 100644 --- a/docs/commands/block.md +++ b/docs/commands/block.md @@ -205,7 +205,7 @@ scw block snapshot wait [arg=value ...] | timeout | Default: `5m0s` | Timeout of the wait | | snapshot-id | Required | ID of the snapshot affected by the action. | | terminal-status | One of: `unknown_status`, `creating`, `available`, `error`, `deleting`, `deleted`, `in_use`, `locked`, `exporting` | Expected terminal status, will wait until this status is reached. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -359,7 +359,7 @@ scw block volume wait [arg=value ...] | timeout | Default: `5m0s` | Timeout of the wait | | volume-id | Required | ID of the volume affected by the action. | | terminal-status | One of: `unknown_status`, `creating`, `available`, `in_use`, `deleting`, `deleted`, `resizing`, `error`, `snapshotting`, `locked`, `updating` | Expected terminal status, will wait until this status is reached. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** diff --git a/docs/commands/cockpit.md b/docs/commands/cockpit.md index afe9d36879..1fdbb9bcda 100644 --- a/docs/commands/cockpit.md +++ b/docs/commands/cockpit.md @@ -201,8 +201,8 @@ scw cockpit data-source create [arg=value ...] | Name | | Description | |------|---|-------------| | project-id | | Project ID to use. If none is passed the default project ID will be used | -| name | | Data source name | -| type | One of: `unknown_type`, `metrics`, `logs`, `traces` | Data source type | +| name | Required | Data source name | +| type | Required
One of: `unknown_type`, `metrics`, `logs`, `traces` | Data source type | | retention-days | | Duration for which the data will be retained in the data source | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -263,10 +263,10 @@ scw cockpit data-source list [arg=value ...] | Name | | Description | |------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `type_asc`, `type_desc` | Sort order for data sources in the response | | project-id | | Project ID to use. If none is passed the default project ID will be used | | origin | One of: `unknown_origin`, `scaleway`, `external`, `custom` | Origin to filter for, only data sources with matching origin will be returned. If omitted, all types will be returned | | types.{index} | One of: `unknown_type`, `metrics`, `logs`, `traces` | Types to filter for (metrics, logs, traces), only data sources with matching types will be returned. If omitted, all types will be returned | +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `type_asc`, `type_desc` | Sort order for data sources in the response | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | @@ -601,7 +601,7 @@ scw cockpit token create [arg=value ...] | Name | | Description | |------|---|-------------| | project-id | | Project ID to use. If none is passed the default project ID will be used | -| name | | Name of the token | +| name | Required | Name of the token | | token-scopes.{index} | One of: `unknown_scope`, `read_only_metrics`, `write_only_metrics`, `full_access_metrics_rules`, `read_only_logs`, `write_only_logs`, `full_access_logs_rules`, `full_access_alert_manager`, `read_only_traces`, `write_only_traces` | Token permission scopes | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -663,9 +663,9 @@ scw cockpit token list [arg=value ...] | Name | | Description | |------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | Order in which to return results | | project-id | | Project ID to use. If none is passed the default project ID will be used | | token-scopes.{index} | One of: `unknown_scope`, `read_only_metrics`, `write_only_metrics`, `full_access_metrics_rules`, `read_only_logs`, `write_only_logs`, `full_access_logs_rules`, `full_access_alert_manager`, `read_only_traces`, `write_only_traces` | Token scopes to filter for | +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | Order in which to return results | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | diff --git a/docs/commands/config.md b/docs/commands/config.md index 7543ff5318..751f137c43 100644 --- a/docs/commands/config.md +++ b/docs/commands/config.md @@ -264,8 +264,8 @@ scw config set [arg=value ...] | insecure | | Set to true to allow insecure HTTPS connections | | default-organization-id | | A default Scaleway organization id | | default-project-id | | A default Scaleway project id | -| default-region | One of: `fr-par`, `nl-ams`, `pl-waw` | A default Scaleway region | -| default-zone | One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | A default Scaleway zone | +| default-region | One of: `fr-par`, `nl-ams`, `pl-waw`, `it-mil` | A default Scaleway region | +| default-zone | One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | A default Scaleway zone | | send-telemetry | | Set to false to disable telemetry | diff --git a/docs/commands/container.md b/docs/commands/container.md index 7257fd65b2..f578387057 100644 --- a/docs/commands/container.md +++ b/docs/commands/container.md @@ -203,7 +203,7 @@ scw container container update [arg=value ...] | memory-limit | | Memory limit of the container in MB | | cpu-limit | | CPU limit of the container in mvCPU | | timeout | | Processing time limit for the container | -| redeploy | | Defines whether to redeploy failed containers | +| ~~redeploy~~ | Deprecated | Defines whether to redeploy failed containers | | privacy | One of: `unknown_privacy`, `public`, `private` | Privacy settings of the container | | description | | Description of the container | | registry-image | | Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag"). | @@ -361,6 +361,7 @@ scw container deploy [arg=value ...] |------|---|-------------| | name | | Name of the application (defaults to build-source's directory name) | | builder | Default: `paketobuildpacks/builder-jammy-base:latest` | Builder image to use | +| run-image | Default: `paketobuildpacks/run-jammy-base:latest` | Run image to use | | dockerfile | Default: `Dockerfile` | Path to the Dockerfile | | force-builder | Default: `false` | Force the use of the builder image (even if a Dockerfile is present) | | build-source | Default: `.` | Path to the build context | diff --git a/docs/commands/datalab.md b/docs/commands/datalab.md new file mode 100644 index 0000000000..9ae9b0a501 --- /dev/null +++ b/docs/commands/datalab.md @@ -0,0 +1,219 @@ + +# Documentation for `scw datalab` +Data Lab API. + +- [](#) + - [List datalab resources](#list-datalab-resources) +- [](#) + - [Create datalab resources](#create-datalab-resources) + - [Delete datalab resources](#delete-datalab-resources) + - [Get datalab resources](#get-datalab-resources) + - [List datalab resources](#list-datalab-resources) + - [Update datalab resources](#update-datalab-resources) +- [](#) + - [List datalab resources](#list-datalab-resources) +- [](#) + - [List datalab resources](#list-datalab-resources) + + +## + +Lists the Spark versions available for Data Lab creation. + + +### List datalab resources + +List datalab resources. + +**Usage:** + +``` +scw datalab cluster-version list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `name_asc`, `name_desc` | The order by field. | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +## + +Manage your Data Labs. + + +### Create datalab resources + +Create datalab resources. + +**Usage:** + +``` +scw datalab datalab create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | | The name of the Data Lab. | +| description | | The description of the Data Lab. | +| tags.{index} | | The tags of the Data Lab. | +| main.node-type | | | +| worker.node-type | | | +| worker.node-count | | | +| has-notebook | | Select this option to include a notebook as part of the Data Lab. | +| spark-version | | The version of Spark running inside the Data Lab, available options can be viewed at ListClusterVersions. | +| total-storage.type | One of: `unknown_type`, `sbs_5k` | | +| total-storage.size | | | +| private-network-id | | The unique identifier of the private network the Data Lab will be attached to. | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete datalab resources + +Delete datalab resources. + +**Usage:** + +``` +scw datalab datalab delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| datalab-id | Required | The unique identifier of the Data Lab. | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Get datalab resources + +Get datalab resources. + +**Usage:** + +``` +scw datalab datalab get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| datalab-id | Required | The unique identifier of the Data Lab | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### List datalab resources + +List datalab resources. + +**Usage:** + +``` +scw datalab datalab list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | The unique identifier of the project whose Data Labs you want to list. | +| name | | The name of the Data Lab you want to list. | +| tags.{index} | | The tags associated with the Data Lab you want to list. | +| order-by | One of: `name_asc`, `name_desc`, `created_at_asc`, `created_at_desc`, `updated_at_asc`, `updated_at_desc` | The order by field, available options are `name_asc`, `name_desc`, `created_at_asc`, `created_at_desc`, `updated_at_asc`, `updated_at_desc`. | +| organization-id | | The unique identifier of the organization whose Data Labs you want to list. | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update datalab resources + +Update datalab resources. + +**Usage:** + +``` +scw datalab datalab update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| datalab-id | Required | The unique identifier of the Data Lab. | +| name | | The updated name of the Data Lab. | +| description | | The updated description of the Data Lab. | +| tags.{index} | | The updated tags of the Data Lab. | +| node-count | | The updated node count of the Data Lab. Scale up or down the number of worker nodes. | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## + +List available node types. + + +### List datalab resources + +List datalab resources. + +**Usage:** + +``` +scw datalab node-type list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `name_asc`, `name_desc`, `vcpus_asc`, `vcpus_desc`, `memory_gigabytes_asc`, `memory_gigabytes_desc`, `vram_bytes_asc`, `vram_bytes_desc`, `gpus_asc`, `gpus_desc` | The order by field. Available fields are `name_asc`, `name_desc`, `vcpus_asc`, `vcpus_desc`, `memory_gigabytes_asc`, `memory_gigabytes_desc`, `vram_bytes_asc`, `vram_bytes_desc`, `gpus_asc`, `gpus_desc`. | +| targets.{index} | One of: `unknown_target`, `notebook`, `worker` | Filter based on the target of the nodes. Allows to filter the nodes based on their purpose which can be main or worker node. | +| resource-type | One of: `all`, `gpu`, `cpu` | Filter based on node type ( `cpu`/`gpu`/`all` ). | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +## + +List available notebook versions. + + +### List datalab resources + +List datalab resources. + +**Usage:** + +``` +scw datalab notebook-version list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `name_asc`, `name_desc` | The order by field. Available options are `name_asc` and `name_desc`. | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + diff --git a/docs/commands/datawarehouse.md b/docs/commands/datawarehouse.md new file mode 100644 index 0000000000..a6b42117fc --- /dev/null +++ b/docs/commands/datawarehouse.md @@ -0,0 +1,430 @@ + +# Documentation for `scw datawarehouse` +Data Warehouse API. + +- [Database management commands](#database-management-commands) + - [Create a new database within a deployment](#create-a-new-database-within-a-deployment) + - [Delete a database from a deployment](#delete-a-database-from-a-deployment) + - [List databases within a deployment](#list-databases-within-a-deployment) +- [Deployment management commands](#deployment-management-commands) + - [Create a deployment](#create-a-deployment) + - [Delete a deployment](#delete-a-deployment) + - [Get a deployment](#get-a-deployment) + - [Get deployment TLS certificate](#get-deployment-tls-certificate) + - [List deployments](#list-deployments) + - [Update a deployment](#update-a-deployment) +- [Endpoint management commands](#endpoint-management-commands) + - [Create a new endpoint for a deployment](#create-a-new-endpoint-for-a-deployment) + - [Delete an endpoint from a deployment](#delete-an-endpoint-from-a-deployment) +- [List available presets](#list-available-presets) + - [List available presets](#list-available-presets) +- [User management commands](#user-management-commands) + - [Create a new user for a deployment](#create-a-new-user-for-a-deployment) + - [Delete a user from a deployment](#delete-a-user-from-a-deployment) + - [List users associated with a deployment](#list-users-associated-with-a-deployment) + - [Update an existing user for a deployment](#update-an-existing-user-for-a-deployment) +- [List available Clickhouse® versions](#list-available-clickhouse®-versions) + - [List available ClickHouse® versions](#list-available-clickhouse®-versions) + + +## Database management commands + +Manage databases within a deployment. + + +### Create a new database within a deployment + +Create a new database within a deployment. + +**Usage:** + +``` +scw datawarehouse database create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | | Name of the database | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete a database from a deployment + +Delete a database from a deployment. + +**Usage:** + +``` +scw datawarehouse database delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | Required | Name of the database to delete | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### List databases within a deployment + +List databases within a deployment. + +**Usage:** + +``` +scw datawarehouse database list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | | Name of the database to filter by | +| order-by | One of: `name_asc`, `name_desc`, `size_asc`, `size_desc` | Criteria to use when ordering database listings | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +## Deployment management commands + +A deployment is composed of one or multiple replicas. + + +### Create a deployment + +Create a new deployment. + +**Usage:** + +``` +scw datawarehouse deployment create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | | Name of the deployment | +| tags.{index} | | Tags to apply to the deployment | +| version | | ClickHouse® version to use for the deployment | +| replica-count | | Number of replicas for the deployment | +| password | | Password for the initial user | +| cpu-min | | Minimum CPU count for the deployment | +| cpu-max | | Maximum CPU count for the deployment | +| endpoints.{index}.private-network.private-network-id | | UUID of the Private Network | +| ram-per-cpu | | RAM per CPU count for the deployment (in GB) | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete a deployment + +Delete a given deployment, specified by the `region` and `deployment_id` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, all your data will be lost. + +**Usage:** + +``` +scw datawarehouse deployment delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment to delete | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Get a deployment + +Retrieve information about a given deployment, specified by the `region` and `deployment_id` parameters. Its full details, including name, status are returned in the response object. + +**Usage:** + +``` +scw datawarehouse deployment get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Get deployment TLS certificate + +Retrieve the TLS certificate associated with a deployment. + +**Usage:** + +``` +scw datawarehouse deployment get-certificate [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### List deployments + +List all deployments in the specified region, for a given Scaleway Project. By default, the deployments returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. You can define additional parameters for your query, such as `tags` and `name`. For the `name` parameter, the value you provide will be checked against the whole name string to see if it includes the string you put in the parameter. + +**Usage:** + +``` +scw datawarehouse deployment list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| tags.{index} | | List deployments with a given tag | +| name | | Lists deployments that match a name pattern | +| order-by | One of: `created_at_desc`, `created_at_asc`, `name_asc`, `name_desc` | Criteria to use when ordering deployment listings | +| project-id | | Project ID the deployment belongs to | +| organization-id | | Organization ID the deployment belongs to | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update a deployment + +Update the parameters of a deployment. + +**Usage:** + +``` +scw datawarehouse deployment update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment to update | +| name | | Name of the deployment | +| tags.{index} | | Tags of a deployment | +| cpu-min | | Minimum CPU count for the deployment | +| cpu-max | | Maximum CPU count for the deployment | +| replica-count | | Number of replicas for the deployment | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## Endpoint management commands + +Manage endpoints associated with a deployment. + + +### Create a new endpoint for a deployment + +Create a new endpoint for a deployment. + +**Usage:** + +``` +scw datawarehouse endpoint create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | | UUID of the deployment | +| endpoint.private-network.private-network-id | | UUID of the Private Network | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete an endpoint from a deployment + +Delete an endpoint from a deployment. + +**Usage:** + +``` +scw datawarehouse endpoint delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| endpoint-id | Required | UUID of the Endpoint to delete | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## List available presets + +Data Warehouse preset to help you choose the best configuration. + + +### List available presets + +List available presets. + +**Usage:** + +``` +scw datawarehouse preset list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +## User management commands + +Manage users associated with a deployment. + + +### Create a new user for a deployment + +Create a new user for a deployment. + +**Usage:** + +``` +scw datawarehouse user create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | | Name of the user | +| password | | Password for the user | +| is-admin | | Indicates if the user is an administrator | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete a user from a deployment + +Delete a user from a deployment. + +**Usage:** + +``` +scw datawarehouse user delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | Required | Name of the user to delete | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### List users associated with a deployment + +List users associated with a deployment. + +**Usage:** + +``` +scw datawarehouse user list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | | Name of the user to filter by | +| order-by | One of: `name_asc`, `name_desc` | Criteria to use when ordering user listings | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update an existing user for a deployment + +Update an existing user for a deployment. + +**Usage:** + +``` +scw datawarehouse user update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment | +| name | Required | Name of the user | +| password | | New password for the user | +| is-admin | | Updates the user administrator permissions | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## List available Clickhouse® versions + +ClickHouse® versions powering your deployment. + + +### List available ClickHouse® versions + +List available ClickHouse® versions. + +**Usage:** + +``` +scw datawarehouse version list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| version | | | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + diff --git a/docs/commands/edge-services.md b/docs/commands/edge-services.md index a4bf436456..37aecbab90 100644 --- a/docs/commands/edge-services.md +++ b/docs/commands/edge-services.md @@ -25,6 +25,8 @@ Edge Services API - [Delete pipeline](#delete-pipeline) - [Get pipeline](#get-pipeline) - [List pipelines](#list-pipelines) + - [List Head stage for your pipeline.](#list-head-stage-for-your-pipeline.) + - [Configure a entry point to your pipeline. You must specify a `head stage` to form a stage-chain that goes all the way to the backend stage (origin), so the HTTP request will be processed according to the stages you created.](#configure-a-entry-point-to-your-pipeline.-you-must-specify-a-`head-stage`-to-form-a-stage-chain-that-goes-all-the-way-to-the-backend-stage-(origin),-so-the-http-request-will-be-processed-according-to-the-stages-you-created.) - [Update pipeline](#update-pipeline) - [Purge-request management commands](#purge-request-management-commands) - [Create purge request](#create-purge-request) @@ -32,6 +34,7 @@ Edge Services API - [List purge requests](#list-purge-requests) - [Route-rules management commands](#route-rules-management-commands) - [Add route rules](#add-route-rules) + - [Edit all route rules of a route stage](#edit-all-route-rules-of-a-route-stage) - [List route rules](#list-route-rules) - [Set route rules](#set-route-rules) - [Route-stage management commands](#route-stage-management-commands) @@ -84,8 +87,6 @@ scw edge-services backend-stage create [arg=value ...] | scaleway-lb.lbs.{index}.domain-name | | Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer | | scaleway-lb.lbs.{index}.has-websocket | | Defines whether to forward websocket requests to the load balancer | | pipeline-id | Required | Pipeline ID the Backend stage belongs to | -| scaleway-serverless-container.region | | | -| scaleway-serverless-container.container-id | | | @@ -176,8 +177,6 @@ scw edge-services backend-stage update [arg=value ...] | scaleway-lb.lbs.{index}.domain-name | | Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer | | scaleway-lb.lbs.{index}.has-websocket | | Defines whether to forward websocket requests to the load balancer | | pipeline-id | | Pipeline ID the Backend stage belongs to | -| scaleway-serverless-container.region | | | -| scaleway-serverless-container.container-id | | | @@ -489,6 +488,48 @@ scw edge-services pipeline list [arg=value ...] +### List Head stage for your pipeline. + +List Head stage for your pipeline. + +**Usage:** + +``` +scw edge-services pipeline list-head [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| pipeline-id | Required | ID of the pipeline to update | + + + +### Configure a entry point to your pipeline. You must specify a `head stage` to form a stage-chain that goes all the way to the backend stage (origin), so the HTTP request will be processed according to the stages you created. + +You must specify either a `add_new_head_stage` (to add a new head stage), `remove_head_stage` (to remove a head stage) or `swap_head_stage` (to replace a head stage). + +**Usage:** + +``` +scw edge-services pipeline set-head [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| pipeline-id | Required | ID of the pipeline to update | +| add-new-head-stage.new-stage-id | | | +| remove-head-stage.remove-stage-id | | | +| swap-head-stage.new-stage-id | | | +| swap-head-stage.current-stage-id | | | + + + ### Update pipeline Update the parameters of an existing pipeline, specified by its `pipeline_id`. Parameters which can be updated include the `name`, `description` and `dns_stage_id`. @@ -607,6 +648,30 @@ scw edge-services route-rules add [arg=value ...] +### Edit all route rules of a route stage + +Edit all route rules of a route stage. + +If backend-stage-id is provided, the editor will only show rule_http_match fields and the specified backend will be applied to all rules automatically. +Otherwise, opens the editor with full rules including backend_stage_id for each rule. + +**Usage:** + +``` +scw edge-services route-rules edit [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| route-stage-id | Required | ID of the route stage to edit | +| backend-stage-id | | ID of the backend stage to apply to all rules (simplifies editing when using a single backend) | +| mode | Default: `yaml`
One of: `yaml`, `json` | marshaling used when editing data | + + + ### List route rules List all route rules of an existing route stage, specified by its `route_stage_id`. diff --git a/docs/commands/instance.md b/docs/commands/instance.md index be208d4a16..edf17dd75b 100644 --- a/docs/commands/instance.md +++ b/docs/commands/instance.md @@ -308,7 +308,7 @@ scw instance image wait [arg=value ...] | Name | | Description | |------|---|-------------| | image-id | Required | ID of the image. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | | timeout | Default: `1h0m0s` | Timeout of the wait | @@ -348,7 +348,7 @@ scw instance ip attach [arg=value ...] |------|---|-------------| | ip | Required | IP or UUID of the IP. | | server-id | Required | UUID of the server to attach the IP to | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -462,7 +462,7 @@ scw instance ip detach [arg=value ...] | Name | | Description | |------|---|-------------| | ip | Required | IP or UUID of the IP. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1096,7 +1096,7 @@ scw instance security-group clear [arg=value ...] | Name | | Description | |------|---|-------------| | security-group-id | Required | ID of the security group to reset. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1307,7 +1307,7 @@ scw instance security-group edit [arg=value ...] |------|---|-------------| | security-group-id | Required | ID of the security group to reset. | | mode | Default: `yaml`
One of: `yaml`, `json` | marshaling used when editing data | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | @@ -1556,7 +1556,7 @@ scw instance server action [arg=value ...] |------|---|-------------| | action | Required | The raw API action to perform, as listed with 'scw instance server list-actions' | | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1608,7 +1608,7 @@ scw instance server attach-ip [arg=value ...] |------|---|-------------| | server-id | Required | ID of the server | | ip | Required | UUID of the IP to attach or its UUID | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1675,7 +1675,7 @@ scw instance server backup [arg=value ...] | server-id | Required | ID of the server to backup. | | name | Default: `` | Name of your backup. | | unified | | Whether or not the type of the snapshot is unified. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1705,7 +1705,7 @@ scw instance server console [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | Server ID to connect to | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | | ws-url | | WebSocket URL to connect to (overrides default) | @@ -1741,7 +1741,7 @@ scw instance server create [arg=value ...] | boot-type | Default: `local`
One of: `local`, `bootscript`, `rescue` | The boot type to use, if empty the local boot will be used. Will be overwritten to bootscript if bootscript-id is set. | | admin-password-encryption-ssh-key-id | | ID of the IAM SSH Key used to encrypt generated admin password. Required when creating a windows server. | | project-id | | Project ID to use. If none is passed the default project ID will be used | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | | organization-id | | Organization ID to use. If none is passed the default organization ID will be used | @@ -1816,7 +1816,7 @@ scw instance server delete [arg=value ...] | with-volumes | Default: `all`
One of: `none`, `local`, `block`, `root`, `all` | Delete the volumes attached to the server | | with-ip | | Delete the IP attached to the server | | force-shutdown | | Force shutdown of the instance server before deleting it | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1872,7 +1872,7 @@ scw instance server detach-ip [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | UUID of the server. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -1926,7 +1926,7 @@ scw instance server enable-routed-ip [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2110,7 +2110,7 @@ scw instance server reboot [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2148,7 +2148,7 @@ scw instance server ssh [arg=value ...] | username | Default: `root` | Username used for the SSH connection | | port | Default: `22` | Port used for the SSH connection | | command | | Command to execute on the remote server | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | @@ -2168,7 +2168,7 @@ scw instance server standby [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2203,7 +2203,7 @@ scw instance server start [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2238,7 +2238,7 @@ scw instance server stop [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2275,7 +2275,7 @@ scw instance server terminate [arg=value ...] | server-id | Required | | | with-ip | | Delete the IP attached to the server | | with-block | Default: `prompt`
One of: `prompt`, `true`, `false` | Delete the Block Storage volumes attached to the server | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2386,7 +2386,7 @@ scw instance server wait [arg=value ...] |------|---|-------------| | timeout | Default: `10m0s` | Timeout of the wait | | server-id | Required | ID of the server affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** @@ -2750,7 +2750,7 @@ scw instance snapshot wait [arg=value ...] | Name | | Description | |------|---|-------------| | snapshot-id | Required | ID of the snapshot. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | | timeout | Default: `1h0m0s` | Timeout of the wait | @@ -2792,7 +2792,7 @@ scw instance ssh add-key [arg=value ...] |------|---|-------------| | server-id | | Server to add your key to | | public-key | | Public key you want to add to your server | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | @@ -2816,7 +2816,7 @@ scw instance ssh fetch-keys [arg=value ...] |------|---|-------------| | project-id | | Fetch the keys on all servers in the given Project | | username | Default: `root` | Username used for the SSH connection | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | @@ -2837,7 +2837,7 @@ scw instance ssh install-config [arg=value ...] | Name | | Description | |------|---|-------------| | project-id | | Project ID to use. If none is passed the default project ID will be used | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `all` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1`, `all` | Zone to target. If none is passed will use default zone from the config | @@ -2859,7 +2859,7 @@ scw instance ssh list-keys [arg=value ...] | Name | | Description | |------|---|-------------| | server-id | Required | Server which keys are to be listed | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | @@ -2883,7 +2883,7 @@ scw instance ssh remove-key [arg=value ...] | server-id | Required | Server to add your key to | | name | | Name of the key you want to remove, has to be the key comment or the index | | public-key | | Public key you want to remove | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | @@ -3256,7 +3256,7 @@ scw instance volume wait [arg=value ...] |------|---|-------------| | timeout | Default: `10m0s` | Timeout of the wait | | volume-id | Required | ID of the volume affected by the action. | -| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3` | Zone to target. If none is passed will use default zone from the config | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `nl-ams-3`, `pl-waw-1`, `pl-waw-2`, `pl-waw-3`, `it-mil-1` | Zone to target. If none is passed will use default zone from the config | **Examples:** diff --git a/docs/commands/jobs.md b/docs/commands/jobs.md index d91b631889..551b64baca 100644 --- a/docs/commands/jobs.md +++ b/docs/commands/jobs.md @@ -7,12 +7,12 @@ This API allows you to manage your Serverless Jobs. - [Delete an existing job definition by its unique identifier](#delete-an-existing-job-definition-by-its-unique-identifier) - [Get a job definition by its unique identifier](#get-a-job-definition-by-its-unique-identifier) - [List all your job definitions with filters](#list-all-your-job-definitions-with-filters) - - [Run an existing job definition by its unique identifier. This will create a new job run](#run-an-existing-job-definition-by-its-unique-identifier.-this-will-create-a-new-job-run) + - [Run an existing job definition using its unique identifier and create a new job run](#run-an-existing-job-definition-using-its-unique-identifier-and-create-a-new-job-run) - [Update an existing job definition associated with the specified unique identifier](#update-an-existing-job-definition-associated-with-the-specified-unique-identifier) - [](#) - [Get a job run by its unique identifier](#get-a-job-run-by-its-unique-identifier) - [List all job runs with filters](#list-all-job-runs-with-filters) - - [Stop a job run by its unique identifier](#stop-a-job-run-by-its-unique-identifier) + - [Stop a job run using its unique identifier](#stop-a-job-run-using-its-unique-identifier) - [Wait for a job run to reach a stable state](#wait-for-a-job-run-to-reach-a-stable-state) - [](#) - [Create a secret reference within a job definition](#create-a-secret-reference-within-a-job-definition) @@ -43,11 +43,13 @@ scw jobs definition create [arg=value ...] | Name | | Description | |------|---|-------------| | name | Required
Default: `` | Name of the job definition | -| cpu-limit | Required | CPU limit of the job | +| cpu-limit | Required | CPU limit of the job (in mvCPU) | | memory-limit | Required | Memory limit of the job (in MiB) | | local-storage-capacity | | Local storage capacity of the job (in MiB) | | image-uri | Required | Image to use for the job | -| command | | Startup command. If empty or not defined, the image's default command is used. | +| ~~command~~ | Deprecated | Startup command. If empty or not defined, the image's default command is used. | +| startup-command.{index} | | Job startup command. Overrides the default defined in the job image. | +| args.{index} | | Job arguments. Overrides the default arguments defined in the job image. | | project-id | | Project ID to use. If none is passed the default project ID will be used | | environment-variables.{key} | | Environment variables of the job | | description | | Description of the job | @@ -120,9 +122,9 @@ scw jobs definition list [arg=value ...] -### Run an existing job definition by its unique identifier. This will create a new job run +### Run an existing job definition using its unique identifier and create a new job run -Run an existing job definition by its unique identifier. This will create a new job run. +Run an existing job definition using its unique identifier and create a new job run. **Usage:** @@ -136,7 +138,9 @@ scw jobs definition start [arg=value ...] | Name | | Description | |------|---|-------------| | job-definition-id | Required | UUID of the job definition to start | -| command | | Contextual startup command for this specific job run | +| ~~command~~ | Deprecated | Contextual startup command for this specific job run. | +| startup-command.{index} | | Contextual startup command for this specific job run. | +| args.{index} | | Contextual arguments for this specific job run. | | environment-variables.{key} | | Contextual environment variables for this specific job run | | replicas | | Number of jobs to run | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -160,11 +164,13 @@ scw jobs definition update [arg=value ...] |------|---|-------------| | job-definition-id | Required | UUID of the job definition to update | | name | | Name of the job definition | -| cpu-limit | | CPU limit of the job | +| cpu-limit | | CPU limit of the job (in mvCPU) | | memory-limit | | Memory limit of the job (in MiB) | | local-storage-capacity | | Local storage capacity of the job (in MiB) | | image-uri | | Image to use for the job | -| command | | Startup command | +| ~~command~~ | Deprecated | Startup command. If empty or not defined, the image's default command is used. | +| startup-command.{index} | | Job startup command. Overrides the default defined in the job image. | +| args.{index} | | Job arguments. Overrides the default arguments defined in the job image. | | environment-variables.{key} | | Environment variables of the job | | description | | Description of the job | | job-timeout | | Timeout of the job in seconds | @@ -217,21 +223,22 @@ scw jobs run list [arg=value ...] | order-by | One of: `created_at_asc`, `created_at_desc` | | | job-definition-id | | | | project-id | | | -| state | One of: `unknown_state`, `queued`, `scheduled`, `running`, `succeeded`, `failed`, `canceled`, `internal_error` | | -| states.{index} | One of: `unknown_state`, `queued`, `scheduled`, `running`, `succeeded`, `failed`, `canceled`, `internal_error` | | +| state | One of: `unknown_state`, `initialized`, `validated`, `queued`, `running`, `succeeded`, `failed`, `interrupting`, `interrupted`, `retrying` | | +| states.{index} | One of: `unknown_state`, `initialized`, `validated`, `queued`, `running`, `succeeded`, `failed`, `interrupting`, `interrupted`, `retrying` | | +| reasons.{index} | One of: `unknown_reason`, `invalid_request`, `timeout`, `cancellation`, `technical_error`, `image_not_found`, `invalid_image`, `memory_usage_exceeded`, `storage_usage_exceeded`, `exited_with_error`, `secret_disabled`, `secret_not_found`, `quota_exceeded` | | | organization-id | | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | -### Stop a job run by its unique identifier +### Stop a job run using its unique identifier -Stop a job run by its unique identifier. +Stop a job run using its unique identifier. **Usage:** ``` -scw jobs run stop [arg=value ...] +scw jobs run stop [arg=value ...] ``` @@ -308,7 +315,6 @@ scw jobs secret delete [arg=value ...] | Name | | Description | |------|---|-------------| -| job-definition-id | Required | UUID of the job definition | | secret-id | Required | UUID of the secret reference within the job | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -329,7 +335,6 @@ scw jobs secret get [arg=value ...] | Name | | Description | |------|---|-------------| -| job-definition-id | Required | UUID of the job definition | | secret-id | Required | UUID of the secret reference within the job | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -370,7 +375,6 @@ scw jobs secret update [arg=value ...] | Name | | Description | |------|---|-------------| -| job-definition-id | Required | UUID of the job definition | | secret-id | Required | UUID of the secret reference within the job | | secret-manager-version | | Version of the secret in Secret Manager | | path | | Path of the secret to mount inside the job (either `path` or `env_var_name` must be set) | diff --git a/docs/commands/k8s.md b/docs/commands/k8s.md index a37e4a8290..2a29fea562 100644 --- a/docs/commands/k8s.md +++ b/docs/commands/k8s.md @@ -38,7 +38,6 @@ This API allows you to manage Kubernetes Kapsule and Kosmos clusters. - [Delete a Pool in a Cluster](#delete-a-pool-in-a-cluster) - [Get a Pool in a Cluster](#get-a-pool-in-a-cluster) - [List Pools in a Cluster](#list-pools-in-a-cluster) - - [Migrate specific pools or all pools of a cluster to new images.](#migrate-specific-pools-or-all-pools-of-a-cluster-to-new-images.) - [Update a Pool in a Cluster](#update-a-pool-in-a-cluster) - [Upgrade a Pool in a Cluster](#upgrade-a-pool-in-a-cluster) - [Wait for a pool to reach a stable state](#wait-for-a-pool-to-reach-a-stable-state) @@ -184,16 +183,23 @@ scw k8s cluster create [arg=value ...] | pools.{index}.root-volume-size | | System volume disk size | | pools.{index}.public-ip-disabled | | Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway | | pools.{index}.security-group-id | | Security group ID in which all the nodes of the pool will be created. If unset, the pool will use default Kapsule security group in current zone | -| autoscaler-config.scale-down-disabled | | Disable the cluster autoscaler | +| pools.{index}.labels.{key} | | Kubernetes labels applied and reconciled on the nodes | +| pools.{index}.taints.{index}.key | | The taint key to be applied to a node | +| pools.{index}.taints.{index}.value | | The taint value corresponding to the taint key | +| pools.{index}.taints.{index}.effect | One of: `NoSchedule`, `PreferNoSchedule`, `NoExecute` | Effect defines the effects of Taint | +| pools.{index}.startup-taints.{index}.key | | The taint key to be applied to a node | +| pools.{index}.startup-taints.{index}.value | | The taint value corresponding to the taint key | +| pools.{index}.startup-taints.{index}.effect | One of: `NoSchedule`, `PreferNoSchedule`, `NoExecute` | Effect defines the effects of Taint | +| autoscaler-config.scale-down-disabled | | Forbid cluster autoscaler to scale down the cluster, defaults to false | | autoscaler-config.scale-down-delay-after-add | | How long after scale up the scale down evaluation resumes | | autoscaler-config.estimator | One of: `unknown_estimator`, `binpacking` | Type of resource estimator to be used in scale up | -| autoscaler-config.expander | One of: `unknown_expander`, `random`, `most_pods`, `least_waste`, `priority`, `price` | Type of node group expander to be used in scale up | -| autoscaler-config.ignore-daemonsets-utilization | | Ignore DaemonSet pods when calculating resource utilization for scaling down | -| autoscaler-config.balance-similar-node-groups | | Detect similar node groups and balance the number of nodes between them | +| autoscaler-config.expander | One of: `unknown_expander`, `random`, `most_pods`, `least_waste`, `priority`, `price` | Kubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details | +| autoscaler-config.ignore-daemonsets-utilization | | Ignore DaemonSet pods when calculating resource utilization for scaling down, defaults to false | +| autoscaler-config.balance-similar-node-groups | | Detect similar node groups and balance the number of nodes between them, defaults to false | | autoscaler-config.expendable-pods-priority-cutoff | | Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they won't cause scale up. Pods with null priority (PodPriority disabled) are non expendable | -| autoscaler-config.scale-down-unneeded-time | | How long a node should be unneeded before it is eligible to be scaled down | -| autoscaler-config.scale-down-utilization-threshold | | Node utilization level, defined as a sum of requested resources divided by capacity, below which a node can be considered for scale down | -| autoscaler-config.max-graceful-termination-sec | | Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node | +| autoscaler-config.scale-down-unneeded-time | | How long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes | +| autoscaler-config.scale-down-utilization-threshold | | Node utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down | +| autoscaler-config.max-graceful-termination-sec | | Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes) | | auto-upgrade.enable | | Defines whether auto upgrade is enabled for the cluster | | auto-upgrade.maintenance-window.start-hour | | Start time of the two-hour maintenance window | | auto-upgrade.maintenance-window.day | One of: `any`, `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday` | Day of the week for the maintenance window | @@ -483,16 +489,16 @@ scw k8s cluster update [arg=value ...] | name | | New external name for the cluster | | description | | New description for the cluster | | tags.{index} | | New tags associated with the cluster | -| autoscaler-config.scale-down-disabled | | Disable the cluster autoscaler | +| autoscaler-config.scale-down-disabled | | Forbid cluster autoscaler to scale down the cluster, defaults to false | | autoscaler-config.scale-down-delay-after-add | | How long after scale up the scale down evaluation resumes | | autoscaler-config.estimator | One of: `unknown_estimator`, `binpacking` | Type of resource estimator to be used in scale up | -| autoscaler-config.expander | One of: `unknown_expander`, `random`, `most_pods`, `least_waste`, `priority`, `price` | Type of node group expander to be used in scale up | -| autoscaler-config.ignore-daemonsets-utilization | | Ignore DaemonSet pods when calculating resource utilization for scaling down | -| autoscaler-config.balance-similar-node-groups | | Detect similar node groups and balance the number of nodes between them | +| autoscaler-config.expander | One of: `unknown_expander`, `random`, `most_pods`, `least_waste`, `priority`, `price` | Kubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details | +| autoscaler-config.ignore-daemonsets-utilization | | Ignore DaemonSet pods when calculating resource utilization for scaling down, defaults to false | +| autoscaler-config.balance-similar-node-groups | | Detect similar node groups and balance the number of nodes between them, defaults to false | | autoscaler-config.expendable-pods-priority-cutoff | | Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they won't cause scale up. Pods with null priority (PodPriority disabled) are non expendable | -| autoscaler-config.scale-down-unneeded-time | | How long a node should be unneeded before it is eligible to be scaled down | -| autoscaler-config.scale-down-utilization-threshold | | Node utilization level, defined as a sum of requested resources divided by capacity, below which a node can be considered for scale down | -| autoscaler-config.max-graceful-termination-sec | | Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node | +| autoscaler-config.scale-down-unneeded-time | | How long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes | +| autoscaler-config.scale-down-utilization-threshold | | Node utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down | +| autoscaler-config.max-graceful-termination-sec | | Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes) | | auto-upgrade.enable | | Defines whether auto upgrade is enabled for the cluster | | auto-upgrade.maintenance-window.start-hour | | Start time of the two-hour maintenance window | | auto-upgrade.maintenance-window.day | One of: `any`, `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday` | Day of the week for the maintenance window | @@ -1015,6 +1021,13 @@ scw k8s pool create [arg=value ...] | root-volume-size | | System volume disk size | | public-ip-disabled | | Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway | | security-group-id | | Security group ID in which all the nodes of the pool will be created. If unset, the pool will use default Kapsule security group in current zone | +| labels.{key} | | Kubernetes labels applied and reconciled on the nodes | +| taints.{index}.key | | The taint key to be applied to a node | +| taints.{index}.value | | The taint value corresponding to the taint key | +| taints.{index}.effect | One of: `NoSchedule`, `PreferNoSchedule`, `NoExecute` | Effect defines the effects of Taint | +| startup-taints.{index}.key | | The taint key to be applied to a node | +| startup-taints.{index}.value | | The taint value corresponding to the taint key | +| startup-taints.{index}.effect | One of: `NoSchedule`, `PreferNoSchedule`, `NoExecute` | Effect defines the effects of Taint | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -1147,42 +1160,6 @@ scw k8s pool list cluster-id=11111111-1111-1111-1111-111111111111 order-by=creat -### Migrate specific pools or all pools of a cluster to new images. - -If no pool is specified, all pools of the cluster will be migrated to new images. - -**Usage:** - -``` -scw k8s pool migrate-to-new-images [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| cluster-id | Required | | -| pool-ids.{index} | | | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | - - -**Examples:** - - -Migrate all pools of a cluster to new images -``` -scw k8s pool migrate-to-new-images cluster-id=11111111-1111-1111-1111-111111111111 -``` - -Migrate a specific pool of a cluster to new images -``` -scw k8s pool migrate-to-new-images cluster-id=11111111-1111-1111-1111-111111111111 pools.0=22222222-2222-2222-2222-222222222222 -``` - - - - ### Update a Pool in a Cluster Update the attributes of a specific pool, such as its desired size, autoscaling settings, and tags. To upgrade a pool, you will need to use the dedicated endpoint. @@ -1208,6 +1185,7 @@ scw k8s pool update [arg=value ...] | kubelet-args.{key} | | New Kubelet arguments to be used by this pool. Note that this feature is experimental | | upgrade-policy.max-unavailable | | | | upgrade-policy.max-surge | | | +| security-group-id | | Security group ID in which all the nodes of the pool will be moved | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | diff --git a/docs/commands/redis.md b/docs/commands/redis.md index 24f03c771c..d2ff8f1faf 100644 --- a/docs/commands/redis.md +++ b/docs/commands/redis.md @@ -9,6 +9,7 @@ This API allows you to manage your Managed Databases for Redis™. - [Set ACL rules for a cluster](#set-acl-rules-for-a-cluster) - [Update an ACL rule for a Redis™ Database Instance (network rule)](#update-an-acl-rule-for-a-redis™-database-instance-(network-rule)) - [Cluster management commands](#cluster-management-commands) + - [Connect to a Redis cluster using locally installed redis-cli](#connect-to-a-redis-cluster-using-locally-installed-redis-cli) - [Create a Redis™ Database Instance](#create-a-redis™-database-instance) - [Delete a Redis™ Database Instance](#delete-a-redis™-database-instance) - [Get a Redis™ Database Instance](#get-a-redis™-database-instance) @@ -153,6 +154,44 @@ scw redis acl update [arg=value ...] A Redis™ Database Instance, also known as a Redis™ cluster, consists of either one standalone node or a cluster composed of three to six nodes. The cluster uses partitioning to split the keyspace. Each partition is replicated and can be reassigned or elected as the primary when necessary. Standalone mode creates a standalone database provisioned on a single node. +### Connect to a Redis cluster using locally installed redis-cli + +Connect to a Redis cluster using locally installed redis-cli. The command will check if redis-cli is installed, download the certificate if TLS is enabled, and prompt for the password. + +**Usage:** + +``` +scw redis cluster connect [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| private-network | Default: `false` | Connect by the private network endpoint attached. | +| cluster-id | Required | UUID of the cluster | +| cli-redis | | Command line tool to use, default to redis-cli | +| cli-args | | Additional arguments to pass to redis-cli | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `nl-ams-1`, `nl-ams-2`, `pl-waw-1`, `pl-waw-2` | Zone to target. If none is passed will use default zone from the config | + + +**Examples:** + + +Connect to a Redis cluster +``` +scw redis cluster connect 11111111-1111-1111-1111-111111111111 +``` + +Connect to a Redis cluster via private network +``` +scw redis cluster connect 11111111-1111-1111-1111-111111111111 private-network=true +``` + + + + ### Create a Redis™ Database Instance Create a new Redis™ Database Instance (Redis™ cluster). You must set the `zone`, `project_id`, `version`, `node_type`, `user_name` and `password` parameters. Optionally you can define `acl_rules`, `endpoints`, `tls_enabled` and `cluster_settings`. diff --git a/docs/commands/registry.md b/docs/commands/registry.md index 10b43fa7bd..07d5755303 100644 --- a/docs/commands/registry.md +++ b/docs/commands/registry.md @@ -165,7 +165,7 @@ scw registry login [arg=value ...] | Name | | Description | |------|---|-------------| | program | Default: `docker`
One of: `docker`, `podman` | Program used to log in to the namespace | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `it-mil` | Region to target. If none is passed will use default region from the config | diff --git a/docs/commands/s2s-vpn.md b/docs/commands/s2s-vpn.md new file mode 100644 index 0000000000..5e39affbc4 --- /dev/null +++ b/docs/commands/s2s-vpn.md @@ -0,0 +1,673 @@ + +# Documentation for `scw s2s-vpn` +This API allows you to manage your Site-to-Site VPN. + +- [A connection represents the IPsec tunnel between VPN gateway and customer gateway.](#a-connection-represents-the-ipsec-tunnel-between-vpn-gateway-and-customer-gateway.) + - [Create a connection](#create-a-connection) + - [Delete a connection](#delete-a-connection) + - [Detach a routing policy](#detach-a-routing-policy) + - [Disable route propagation](#disable-route-propagation) + - [Enable route propagation](#enable-route-propagation) + - [Get a connection](#get-a-connection) + - [List connections](#list-connections) + - [Renew pre-shared key](#renew-pre-shared-key) + - [Set a new routing policy](#set-a-new-routing-policy) + - [Update a connection](#update-a-connection) +- [A customer gateway represents a Scaleway client's device that communicates with a VPN gateway.](#a-customer-gateway-represents-a-scaleway-client's-device-that-communicates-with-a-vpn-gateway.) + - [Create a customer gateway](#create-a-customer-gateway) + - [Delete a customer gateway](#delete-a-customer-gateway) + - [Get a customer gateway](#get-a-customer-gateway) + - [List customer gateways](#list-customer-gateways) + - [Update a customer gateway](#update-a-customer-gateway) +- [By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow.](#by-default,-all-routes-across-the-site-to-site-vpn-(between-vpn-gateway-and-customer-gateway)-are-blocked.-routing-policies-allow-you-to-set-filters-to-define-the-ip-prefixes-to-allow.) + - [Create a routing policy](#create-a-routing-policy) + - [Delete a routing policy](#delete-a-routing-policy) + - [Get routing policy](#get-routing-policy) + - [List routing policies](#list-routing-policies) + - [Update a routing policy](#update-a-routing-policy) +- [A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways.](#a-vpn-gateway-is-an-ipsec-peer-managed-by-scaleway.-it-can-support-multiple-connections-to-customer-gateways.) + - [Create VPN gateway](#create-vpn-gateway) + - [Delete a VPN gateway](#delete-a-vpn-gateway) + - [Get a VPN gateway](#get-a-vpn-gateway) + - [List VPN gateways](#list-vpn-gateways) + - [Update a VPN gateway](#update-a-vpn-gateway) +- [VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway.](#vpn-gateways-come-in-various-shapes,-sizes-and-prices,-which-are--described-by-vpn-gateway-types.-they-represent-the-different-commercial--offer-types-for-vpn-gateways-available-at-scaleway.) + - [List VPN gateway types](#list-vpn-gateway-types) + + +## A connection represents the IPsec tunnel between VPN gateway and customer gateway. + +A connection represents the IPsec tunnel between VPN gateway and customer gateway. + + +### Create a connection + +Create a connection. + +**Usage:** + +``` +scw s2s-vpn connection create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | Required | Name of the connection | +| tags.{index} | | List of tags to apply to the connection | +| is-ipv6 | | Defines IP version of the IPSec Tunnel | +| initiation-policy | Required
One of: `unknown_initiation_policy`, `vpn_gateway`, `customer_gateway` | Who initiates the IPsec tunnel | +| ikev2-ciphers.{index}.encryption | One of: `unknown_encryption`, `aes128`, `aes192`, `aes256`, `aes128gcm`, `aes192gcm`, `aes256gcm`, `aes128ccm`, `aes256ccm`, `chacha20poly1305` | | +| ikev2-ciphers.{index}.integrity | One of: `unknown_integrity`, `sha256`, `sha384`, `sha512` | | +| ikev2-ciphers.{index}.dh-group | One of: `unknown_dhgroup`, `modp2048`, `modp3072`, `modp4096`, `ecp256`, `ecp384`, `ecp521`, `curve25519` | | +| esp-ciphers.{index}.encryption | One of: `unknown_encryption`, `aes128`, `aes192`, `aes256`, `aes128gcm`, `aes192gcm`, `aes256gcm`, `aes128ccm`, `aes256ccm`, `chacha20poly1305` | | +| esp-ciphers.{index}.integrity | One of: `unknown_integrity`, `sha256`, `sha384`, `sha512` | | +| esp-ciphers.{index}.dh-group | One of: `unknown_dhgroup`, `modp2048`, `modp3072`, `modp4096`, `ecp256`, `ecp384`, `ecp521`, `curve25519` | | +| enable-route-propagation | | Defines whether route propagation is enabled or not. | +| vpn-gateway-id | Required | ID of the VPN gateway to attach to the connection | +| customer-gateway-id | Required | ID of the customer gateway to attach to the connection | +| bgp-config-ipv4.routing-policy-id | | | +| bgp-config-ipv4.private-ip | | | +| bgp-config-ipv4.peer-private-ip | | | +| bgp-config-ipv6.routing-policy-id | | | +| bgp-config-ipv6.private-ip | | | +| bgp-config-ipv6.peer-private-ip | | | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Delete a connection + +Delete an existing connection, specified by its connection ID. + +**Usage:** + +``` +scw s2s-vpn connection delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection to delete | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Detach a routing policy + +Detach an existing routing policy from a connection, specified by its connection ID. + +**Usage:** + +``` +scw s2s-vpn connection detach-routing-policy [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection from which routing policy is being detached | +| routing-policy-v4 | | ID of the routing policy to detach from the BGP IPv4 session | +| routing-policy-v6 | | ID of the routing policy to detach from the BGP IPv6 session | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Disable route propagation + +Prevent any prefixes from being announced in the BGP session. Traffic will not be able to flow over the VPN Gateway until route propagation is re-enabled. + +**Usage:** + +``` +scw s2s-vpn connection disable-route-propagation [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection on which to disable route propagation | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Enable route propagation + +Enable all allowed prefixes (defined in a routing policy) to be announced in the BGP session. This allows traffic to flow between the attached VPC and the on-premises infrastructure along the announced routes. Note that by default, even when route propagation is enabled, all routes are blocked. It is essential to attach a routing policy to define the ranges of routes to announce. + +**Usage:** + +``` +scw s2s-vpn connection enable-route-propagation [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection on which to enable route propagation | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Get a connection + +Get a connection for the given connection ID. The response object includes information about the connection's various configuration details. + +**Usage:** + +``` +scw s2s-vpn connection get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the requested connection | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### List connections + +List all your connections. A number of filters are available, including Project ID, name, tags and status. + +**Usage:** + +``` +scw s2s-vpn connection list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `status_asc`, `status_desc` | Order in which to return results | +| project-id | | Project ID to filter for | +| name | | Connection name to filter for | +| tags.{index} | | Tags to filter for | +| statuses.{index} | One of: `unknown_status`, `active`, `limited_connectivity`, `down`, `locked` | Connection statuses to filter for | +| is-ipv6 | | Filter connections with IP version of IPSec tunnel | +| routing-policy-ids.{index} | | Filter for connections using these routing policies | +| route-propagation-enabled | | Filter for connections with route propagation enabled | +| vpn-gateway-ids.{index} | | Filter for connections attached to these VPN gateways | +| customer-gateway-ids.{index} | | Filter for connections attached to these customer gateways | +| organization-id | | Organization ID to filter for | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Renew pre-shared key + +Renew pre-shared key for a given connection. + +**Usage:** + +``` +scw s2s-vpn connection renew-psk [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection to renew the PSK | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Set a new routing policy + +Set a new routing policy on a connection, overriding the existing one if present, specified by its connection ID. + +**Usage:** + +``` +scw s2s-vpn connection set-routing-policy [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection whose routing policy is being updated | +| routing-policy-v4 | | ID of the routing policy to set for the BGP IPv4 session | +| routing-policy-v6 | | ID of the routing policy to set for the BGP IPv6 session | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Update a connection + +Update an existing connection, specified by its connection ID. + +**Usage:** + +``` +scw s2s-vpn connection update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| connection-id | Required | ID of the connection to update | +| name | | Name of the connection | +| tags.{index} | | List of tags to apply to the connection | +| initiation-policy | One of: `unknown_initiation_policy`, `vpn_gateway`, `customer_gateway` | Who initiates the IPsec tunnel | +| ikev2-ciphers.{index}.encryption | One of: `unknown_encryption`, `aes128`, `aes192`, `aes256`, `aes128gcm`, `aes192gcm`, `aes256gcm`, `aes128ccm`, `aes256ccm`, `chacha20poly1305` | | +| ikev2-ciphers.{index}.integrity | One of: `unknown_integrity`, `sha256`, `sha384`, `sha512` | | +| ikev2-ciphers.{index}.dh-group | One of: `unknown_dhgroup`, `modp2048`, `modp3072`, `modp4096`, `ecp256`, `ecp384`, `ecp521`, `curve25519` | | +| esp-ciphers.{index}.encryption | One of: `unknown_encryption`, `aes128`, `aes192`, `aes256`, `aes128gcm`, `aes192gcm`, `aes256gcm`, `aes128ccm`, `aes256ccm`, `chacha20poly1305` | | +| esp-ciphers.{index}.integrity | One of: `unknown_integrity`, `sha256`, `sha384`, `sha512` | | +| esp-ciphers.{index}.dh-group | One of: `unknown_dhgroup`, `modp2048`, `modp3072`, `modp4096`, `ecp256`, `ecp384`, `ecp521`, `curve25519` | | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +## A customer gateway represents a Scaleway client's device that communicates with a VPN gateway. + +A customer gateway represents a Scaleway client's device that communicates with a VPN gateway. + + +### Create a customer gateway + +Create a customer gateway. + +**Usage:** + +``` +scw s2s-vpn customer-gateway create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | Required | Name of the customer gateway | +| tags.{index} | | List of tags to apply to the customer gateway | +| ipv4-public | | Public IPv4 address of the customer gateway | +| ipv6-public | | Public IPv6 address of the customer gateway | +| asn | Required | AS Number of the customer gateway | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Delete a customer gateway + +Delete an existing customer gateway, specified by its customer gateway ID. + +**Usage:** + +``` +scw s2s-vpn customer-gateway delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| gateway-id | Required | ID of the customer gateway to delete | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Get a customer gateway + +Get a customer gateway for the given customer gateway ID. + +**Usage:** + +``` +scw s2s-vpn customer-gateway get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| gateway-id | Required | ID of the requested customer gateway | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### List customer gateways + +List all your customer gateways. A number of filters are available, including Project ID, name, and tags. + +**Usage:** + +``` +scw s2s-vpn customer-gateway list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | Order in which to return results | +| project-id | | Project ID to filter for | +| name | | Customer gateway name to filter for | +| tags.{index} | | Tags to filter for | +| organization-id | | Organization ID to filter for | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update a customer gateway + +Update an existing customer gateway, specified by its customer gateway ID. You can update its name, tags, public IPv4 & IPv6 address and AS Number. + +**Usage:** + +``` +scw s2s-vpn customer-gateway update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| gateway-id | Required | ID of the customer gateway to update | +| name | | Name of the customer gateway | +| tags.{index} | | List of tags to apply to the customer gateway | +| ipv4-public | | Public IPv4 address of the customer gateway | +| ipv6-public | | Public IPv6 address of the customer gateway | +| asn | | AS Number of the customer gateway | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +## By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow. + +By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow. + + +### Create a routing policy + +Create a routing policy. Routing policies allow you to set IP prefix filters to define the incoming route announcements to accept from the customer gateway, and the outgoing routes to announce to the customer gateway. + +**Usage:** + +``` +scw s2s-vpn routing-policy create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | Required | Name of the routing policy | +| tags.{index} | | List of tags to apply to the routing policy | +| is-ipv6 | | IP prefixes version of the routing policy | +| prefix-filter-in.{index} | | IP prefixes to accept from the peer (ranges of route announcements to accept) | +| prefix-filter-out.{index} | | IP prefix filters to advertise to the peer (ranges of routes to advertise) | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Delete a routing policy + +Delete an existing routing policy, specified by its routing policy ID. + +**Usage:** + +``` +scw s2s-vpn routing-policy delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| routing-policy-id | Required | ID of the routing policy to delete | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Get routing policy + +Get a routing policy for the given routing policy ID. The response object gives information including the policy's name, tags and prefix filters. + +**Usage:** + +``` +scw s2s-vpn routing-policy get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| routing-policy-id | Required | ID of the routing policy to get | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### List routing policies + +List all routing policies in a given region. A routing policy can be attached to one or multiple connections (S2S VPN connections). + +**Usage:** + +``` +scw s2s-vpn routing-policy list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | Order in which to return results | +| project-id | | Project ID to filter for | +| name | | Routing policy name to filter for | +| tags.{index} | | Tags to filter for | +| ipv6 | | Filter for the routing policies based on IP prefixes version | +| organization-id | | Organization ID to filter for | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update a routing policy + +Update an existing routing policy, specified by its routing policy ID. Its name, tags and incoming/outgoing prefix filters can be updated. + +**Usage:** + +``` +scw s2s-vpn routing-policy update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| routing-policy-id | Required | ID of the routing policy to update | +| name | | Name of the routing policy | +| tags.{index} | | List of tags to apply to the routing policy | +| prefix-filter-in.{index} | | IP prefixes to accept from the peer (ranges of route announcements to accept) | +| prefix-filter-out.{index} | | IP prefix filters for routes to advertise to the peer (ranges of routes to advertise) | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +## A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways. + +A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways. + + +### Create VPN gateway + +Create VPN gateway. + +**Usage:** + +``` +scw s2s-vpn vpn-gateway create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | Required | Name of the VPN gateway | +| tags.{index} | | List of tags to apply to the VPN gateway | +| gateway-type | Required | VPN gateway type (commercial offer type) | +| public-config.ipam-ipv4-id | | | +| public-config.ipam-ipv6-id | | | +| private-network-id | Required | ID of the Private Network to attach to the VPN gateway | +| public-tunnel-config.single-ipv4-tunnel.ipam-id | | | +| public-tunnel-config.single-ipv6-tunnel.ipam-id | | | +| public-tunnel-config.dual-ipv4v6-tunnel.ipam-ipv4-id | | | +| public-tunnel-config.dual-ipv4v6-tunnel.ipam-ipv6-id | | | +| ipam-private-ipv4-id | | ID of the IPAM private IPv4 address to attach to the VPN gateway | +| ipam-private-ipv6-id | | ID of the IPAM private IPv6 address to attach to the VPN gateway | +| zone | | Availability Zone where the VPN gateway should be provisioned. If no zone is specified, the VPN gateway will be automatically placed. | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Delete a VPN gateway + +Delete an existing VPN gateway, specified by its VPN gateway ID. + +**Usage:** + +``` +scw s2s-vpn vpn-gateway delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| gateway-id | Required | ID of the VPN gateway to delete | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### Get a VPN gateway + +Get a VPN gateway for the given VPN gateway ID. + +**Usage:** + +``` +scw s2s-vpn vpn-gateway get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| gateway-id | Required | ID of the requested VPN gateway | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +### List VPN gateways + +List all your VPN gateways. A number of filters are available, including Project ID, name, tags and status. + +**Usage:** + +``` +scw s2s-vpn vpn-gateway list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `type_asc`, `type_desc`, `status_asc`, `status_desc` | Order in which to return results | +| project-id | | Project ID to filter for | +| name | | VPN gateway name to filter for | +| tags.{index} | | Tags to filter for | +| statuses.{index} | One of: `unknown_status`, `configuring`, `failed`, `provisioning`, `active`, `deprovisioning`, `locked` | VPN gateway statuses to filter for | +| gateway-types.{index} | | Filter for VPN gateways of these types | +| private-network-ids.{index} | | Filter for VPN gateways attached to these private networks | +| organization-id | | Organization ID to filter for | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update a VPN gateway + +Update an existing VPN gateway, specified by its VPN gateway ID. Only its name and tags can be updated. + +**Usage:** + +``` +scw s2s-vpn vpn-gateway update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| gateway-id | Required | ID of the VPN gateway to update | +| name | | Name of the VPN gateway | +| tags.{index} | | List of tags to apply to the VPN Gateway | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + +## VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway. + +VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway. + + +### List VPN gateway types + +List the different VPN gateway commercial offer types available at Scaleway. The response is an array of objects describing the name and technical details of each available VPN gateway type. + +**Usage:** + +``` +scw s2s-vpn vpn-gateway-type list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | + + + diff --git a/docs/commands/searchdb.md b/docs/commands/searchdb.md new file mode 100644 index 0000000000..2ea70be400 --- /dev/null +++ b/docs/commands/searchdb.md @@ -0,0 +1,358 @@ + +# Documentation for `scw searchdb` +Cloud Essentials for Opensearch API. + +- [](#) + - [Create a new Cloud Essentials for OpenSearch deployment](#create-a-new-cloud-essentials-for-opensearch-deployment) + - [Delete a Cloud Essentials for OpenSearch deployment](#delete-a-cloud-essentials-for-opensearch-deployment) + - [Retrieve a specific Cloud Essentials for OpenSearch deployment](#retrieve-a-specific-cloud-essentials-for-opensearch-deployment) + - [Retrieve a list of Cloud Essentials for OpenSearch deployments](#retrieve-a-list-of-cloud-essentials-for-opensearch-deployments) + - [Update a Cloud Essentials for OpenSearch deployment](#update-a-cloud-essentials-for-opensearch-deployment) + - [Upgrade a Cloud Essentials for OpenSearch deployment](#upgrade-a-cloud-essentials-for-opensearch-deployment) +- [](#) + - [Create a new endpoint on a deployment](#create-a-new-endpoint-on-a-deployment) + - [Delete an existing endpoint](#delete-an-existing-endpoint) +- [](#) + - [Retrieve a list of available node types](#retrieve-a-list-of-available-node-types) +- [](#) + - [Create a new user](#create-a-new-user) + - [Delete an existing user](#delete-an-existing-user) + - [Retrieve a list of deployment users](#retrieve-a-list-of-deployment-users) + - [Update an existing user](#update-an-existing-user) +- [](#) + - [List available Cloud Essentials for OpenSearch versions](#list-available-cloud-essentials-for-opensearch-versions) + + +## + +Manage your Cloud Essentials for OpenSearch deployment. + + +### Create a new Cloud Essentials for OpenSearch deployment + +Create a new Cloud Essentials for OpenSearch deployment. + +**Usage:** + +``` +scw searchdb deployment create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | | Name of the deployment | +| tags.{index} | | Tags | +| node-amount | | Number of nodes | +| node-type | | Node type | +| user-name | | Username for the deployment user | +| password | | Password for the deployment user | +| volume.type | One of: `unknown_type`, `sbs_5k`, `sbs_15k` | Define the type of the Volume | +| volume.size-bytes | | Define the size of the Volume | +| endpoints.{index}.private-network.private-network-id | | | +| version | | The Opensearch version to use | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete a Cloud Essentials for OpenSearch deployment + +Delete a Cloud Essentials for OpenSearch deployment. + +**Usage:** + +``` +scw searchdb deployment delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | ID of the deployment | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Retrieve a specific Cloud Essentials for OpenSearch deployment + +Retrieve a specific Cloud Essentials for OpenSearch deployment. + +**Usage:** + +``` +scw searchdb deployment get [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | ID of the deployment | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Retrieve a list of Cloud Essentials for OpenSearch deployments + +Retrieve a list of Cloud Essentials for OpenSearch deployments. + +**Usage:** + +``` +scw searchdb deployment list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| project-id | | ID of the Project containing the deployments | +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc`, `updated_at_asc`, `updated_at_desc` | Define the order of the returned deployments | +| tags.{index} | | Filter by tag, only deployments with one or more matching tags will be returned | +| name | | Deployment name to filter for | +| version | | Engine version to filter for | +| organization-id | | ID of the Organization containing the deployments | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update a Cloud Essentials for OpenSearch deployment + +Update a Cloud Essentials for OpenSearch deployment. + +**Usage:** + +``` +scw searchdb deployment update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the deployment to update | +| name | | Name of the deployment | +| tags.{index} | | Tags of a deployment | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Upgrade a Cloud Essentials for OpenSearch deployment + +Upgrade a Cloud Essentials for OpenSearch deployment. + +**Usage:** + +``` +scw searchdb deployment upgrade [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | UUID of the Deployment to upgrade | +| node-amount | | Amount of node upgrade target | +| volume-size-bytes | | Volume size upgrade target | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## + +Manage your Cloud Essentials for OpenSearch deployment endpoint. + + +### Create a new endpoint on a deployment + +Create a new endpoint on a deployment. + +**Usage:** + +``` +scw searchdb endpoint create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | | ID of the deployment for which to create an endpoint | +| endpoint-spec.private-network.private-network-id | | | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete an existing endpoint + +Delete an existing endpoint. + +**Usage:** + +``` +scw searchdb endpoint delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| endpoint-id | Required | ID of the endpoint to delete | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## + +List available node types. + + +### Retrieve a list of available node types + +Retrieve a list of available node types. + +**Usage:** + +``` +scw searchdb node-types list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `name_asc`, `name_desc`, `vcpus_asc`, `vcpus_desc`, `memory_asc`, `memory_desc` | Sort order of nodes in the response (name, vcpus or memory) | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +## + +Manage your Cloud Essentials for OpenSearch deployment users. + + +### Create a new user + +Create a new user. + +**Usage:** + +``` +scw searchdb user create [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | ID of the deployment in which to create the user | +| username | | Username of the deployment user | +| password | | Password of the deployment user | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Delete an existing user + +Delete an existing user. + +**Usage:** + +``` +scw searchdb user delete [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | ID of the deployment in which to create the user | +| username | Required | Username of the deployment user | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +### Retrieve a list of deployment users + +Retrieve a list of deployment users. + +**Usage:** + +``` +scw searchdb user list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `name_asc`, `name_desc` | | +| name | | | +| deployment-id | Required | | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + +### Update an existing user + +Update an existing user. + +**Usage:** + +``` +scw searchdb user update [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| deployment-id | Required | ID of the deployment in which to create the user | +| username | Required | Username of the deployment user | +| password | | Password of the deployment user | +| region | Default: `fr-par`
One of: `fr-par` | Region to target. If none is passed will use default region from the config | + + + +## + +List your Cloud Essentials for OpenSearch versions. + + +### List available Cloud Essentials for OpenSearch versions + +List available Cloud Essentials for OpenSearch versions. + +**Usage:** + +``` +scw searchdb versions list [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| order-by | One of: `version_asc`, `version_desc` | Define the order of the returned version | +| version | | Filter by version | +| region | Default: `fr-par`
One of: `fr-par`, `all` | Region to target. If none is passed will use default region from the config | + + + diff --git a/docs/commands/vpc.md b/docs/commands/vpc.md index 43a41de660..674656ee00 100644 --- a/docs/commands/vpc.md +++ b/docs/commands/vpc.md @@ -197,6 +197,7 @@ scw vpc route create [arg=value ...] | destination | | Destination of the Route | | nexthop-resource-id | | ID of the nexthop resource | | nexthop-private-network-id | | ID of the nexthop private network | +| nexthop-vpc-connector-id | | ID of the nexthop VPC Connector | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -281,6 +282,7 @@ scw vpc route list [arg=value ...] | nexthop-resource-id | | Next hop resource ID to filter for. Only routes with a matching next hop resource ID will be returned | | nexthop-private-network-id | | Next hop private network ID to filter for. Only routes with a matching next hop private network ID will be returned | | nexthop-resource-type | One of: `unknown_type`, `vpc_gateway_network`, `instance_private_nic`, `baremetal_private_nic`, `apple_silicon_private_nic` | Next hop resource type to filter for. Only Routes with a matching next hop resource type will be returned | +| nexthop-vpc-connector-id | | Next hop VPC connector ID to filter for. Only routes with a matching next hop VPC connector ID will be returned | | contains | | Only routes whose destination is contained in this subnet will be returned | | tags.{index} | | Tags to filter for, only routes with one or more matching tags will be returned | | is-ipv6 | | Only routes with an IPv6 destination will be returned | @@ -309,6 +311,7 @@ scw vpc route update [arg=value ...] | destination | | Destination of the Route | | nexthop-resource-id | | ID of the nexthop resource | | nexthop-private-network-id | | ID of the nexthop private network | +| nexthop-vpc-connector-id | | ID of the nexthop VPC connector | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | diff --git a/docs/cookbook.md b/docs/cookbook.md index bfeb87ef00..543c0f648a 100644 --- a/docs/cookbook.md +++ b/docs/cookbook.md @@ -88,6 +88,75 @@ scw instance server list zone=all -o template="{{.ID}} zone={{.Zone}}" | xargs - scw rdb backup list -ojson | jq --arg d "$(date -d "7 days ago" --utc --iso-8601=ns)" '.[] | select (.created_at < $d)' ``` +### Restore a backup from another Database Instance (even with different version) + +You can restore a backup from one Database Instance to another, even if they have different PostgreSQL/MySQL versions (e.g., PostgreSQL-15 to PostgreSQL-16). The restore operation works within the same region. + +```bash +# Step 1: Create a backup from the source instance +scw rdb backup create instance-id= database-name= name=cross-instance-backup region= -w + +# Step 2: Get the backup ID +BACKUP_ID=$(scw rdb backup list instance-id= region= -ojson | jq -r '.[0].id') + +# Step 3: Create the target database on the destination instance (if it doesn't exist) +scw rdb database create instance-id= name= region= + +# Step 4: Restore the backup to the target instance +scw rdb backup restore $BACKUP_ID instance-id= region= -w + +# Example: Restore from PostgreSQL-15 to PostgreSQL-16 +SOURCE_ID="325fd68a-a286-4f5c-b56b-3b8d66fcd13d" # PG-15 instance +TARGET_ID="70644724-60c9-411c-a3e2-5276f1cefff1" # PG-16 instance +scw rdb backup create instance-id=$SOURCE_ID database-name=mydb name=upgrade-backup region=fr-par -w +BACKUP_ID=$(scw rdb backup list instance-id=$SOURCE_ID region=fr-par -ojson | jq -r '.[0].id') +scw rdb database create instance-id=$TARGET_ID name=mydb region=fr-par +scw rdb backup restore $BACKUP_ID instance-id=$TARGET_ID region=fr-par -w +``` + +**Note:** This method only works within the same region. For cross-region migrations, see the "Migrate a managed database to another region" section. + +### Migrate a managed database to another region + +**Important:** `scw rdb backup restore` cannot restore backups across different regions (API limitation). Logical backups and snapshots can only be restored within the same region. For cross-region migration, you must export the backup, download it, and manually restore it using database client tools (psql/mysql). + +```bash +# Method 1: Manual migration via backup export (for cross-region migration) + +# Step 1: Create a backup of the source database +scw rdb backup create instance-id= database-name= name=migration-backup region= -w + +# Step 2: Export and download the backup +BACKUP_ID=$(scw rdb backup list instance-id= region= -ojson | jq -r '.[0].id') +scw rdb backup export $BACKUP_ID region= -w +scw rdb backup download $BACKUP_ID region= output=./backup.sql + +# Step 3: Create a new Database Instance in the target region +scw rdb instance create name= engine= user-name= password= node-type= region= -w + +# Step 4: Get connection details for the new instance +NEW_INSTANCE_ID=$(scw rdb instance list name= region= -ojson | jq -r '.[0].id') +ENDPOINT=$(scw rdb instance get $NEW_INSTANCE_ID region= -ojson | jq -r '.endpoints[0].ip + ":" + (.endpoints[0].port | tostring)') + +# Step 5: Manually restore the backup using database client +# For PostgreSQL: +psql -h -p -U -d postgres -f backup.sql +# For MySQL: +mysql -h -P -u -p < backup.sql + +# Method 2: Same-region backup restore (for migration within the same region) + +# Step 1: Create a backup +scw rdb backup create instance-id= database-name= name=same-region-backup region= -w + +# Step 2: Create a database in the target instance +scw rdb database create instance-id= name= region= + +# Step 3: Restore the backup +BACKUP_ID=$(scw rdb backup list instance-id= region= -ojson | jq -r '.[0].id') +scw rdb backup restore $BACKUP_ID instance-id= region= -w +``` + ### Configure password storage for rdb connect The `scw rdb instance connect` command can automatically use stored credentials to avoid typing passwords manually. Here's how to configure it for PostgreSQL and MySQL. diff --git a/go.mod b/go.mod index 4577e40b6f..9e02f2d30b 100644 --- a/go.mod +++ b/go.mod @@ -1,11 +1,11 @@ module github.com/scaleway/scaleway-cli/v2 -go 1.25.3 +go 1.26.0 require ( - github.com/aws/aws-sdk-go-v2 v1.41.0 - github.com/aws/aws-sdk-go-v2/service/s3 v1.93.1 - github.com/buildpacks/pack v0.39.0 + github.com/aws/aws-sdk-go-v2 v1.41.2 + github.com/aws/aws-sdk-go-v2/service/s3 v1.96.1 + github.com/buildpacks/pack v0.39.1 github.com/c-bata/go-prompt v0.2.6 github.com/charmbracelet/bubbletea v1.3.10 github.com/chzyer/readline v1.5.1 @@ -14,24 +14,25 @@ require ( github.com/docker/docker v28.5.2+incompatible github.com/dustin/go-humanize v1.0.1 github.com/fatih/color v1.18.0 - github.com/getsentry/sentry-go v0.40.0 + github.com/getsentry/sentry-go v0.42.0 github.com/ghodss/yaml v1.0.0 github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 github.com/hashicorp/go-version v1.8.0 github.com/karrick/tparse/v2 v2.8.2 github.com/mattn/go-colorable v0.1.14 github.com/mattn/go-isatty v0.0.20 - github.com/moby/buildkit v0.26.2 + github.com/moby/buildkit v0.27.1 + github.com/moby/go-archive v0.2.0 github.com/opencontainers/go-digest v1.0.0 - github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251202131048-1c7b2248aaba + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260224141609-f7be528d57e3 github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 github.com/spf13/cobra v1.10.2 github.com/spf13/pflag v1.0.10 github.com/stretchr/testify v1.11.1 - golang.org/x/crypto v0.45.0 + golang.org/x/crypto v0.48.0 golang.org/x/sync v0.19.0 - golang.org/x/term v0.38.0 - golang.org/x/text v0.32.0 + golang.org/x/term v0.40.0 + golang.org/x/text v0.34.0 ) require ( @@ -53,25 +54,25 @@ require ( github.com/ProtonMail/go-crypto v1.3.0 // indirect github.com/agext/levenshtein v1.2.3 // indirect github.com/apex/log v1.9.0 // indirect - github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4 // indirect + github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.5 // indirect github.com/aws/aws-sdk-go-v2/config v1.32.0 // indirect github.com/aws/aws-sdk-go-v2/credentials v1.19.0 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.14 // indirect - github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.16 // indirect - github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.16 // indirect + github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.18 // indirect + github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.18 // indirect github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect - github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.16 // indirect + github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.18 // indirect github.com/aws/aws-sdk-go-v2/service/ecr v1.51.2 // indirect github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.38.2 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.7 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.16 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.16 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.5 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.9 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.18 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.18 // indirect github.com/aws/aws-sdk-go-v2/service/signin v1.0.1 // indirect github.com/aws/aws-sdk-go-v2/service/sso v1.30.4 // indirect github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.8 // indirect github.com/aws/aws-sdk-go-v2/service/sts v1.41.1 // indirect - github.com/aws/smithy-go v1.24.0 // indirect + github.com/aws/smithy-go v1.24.1 // indirect github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.11.0 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/beorn7/perks v1.0.1 // indirect @@ -88,13 +89,13 @@ require ( github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 // indirect github.com/cloudflare/circl v1.6.1 // indirect github.com/containerd/containerd/api v1.10.0 // indirect - github.com/containerd/containerd/v2 v2.2.0 // indirect + github.com/containerd/containerd/v2 v2.2.1 // indirect github.com/containerd/continuity v0.4.5 // indirect github.com/containerd/errdefs v1.0.0 // indirect github.com/containerd/errdefs/pkg v0.3.0 // indirect github.com/containerd/log v0.1.0 // indirect github.com/containerd/platforms v1.0.0-rc.2 // indirect - github.com/containerd/stargz-snapshotter/estargz v0.17.0 // indirect + github.com/containerd/stargz-snapshotter/estargz v0.18.1 // indirect github.com/containerd/ttrpc v1.2.7 // indirect github.com/containerd/typeurl/v2 v2.2.3 // indirect github.com/cyphar/filepath-securejoin v0.6.0 // indirect @@ -102,9 +103,9 @@ require ( github.com/dimchansky/utfbom v1.1.1 // indirect github.com/distribution/reference v0.6.0 // indirect github.com/dnephin/pflag v1.0.7 // indirect - github.com/docker/cli v28.5.1+incompatible // indirect + github.com/docker/cli v29.2.1+incompatible // indirect github.com/docker/distribution v2.8.3+incompatible // indirect - github.com/docker/docker-credential-helpers v0.9.4 // indirect + github.com/docker/docker-credential-helpers v0.9.5 // indirect github.com/docker/go-connections v0.6.0 // indirect github.com/docker/go-metrics v0.0.1 // indirect github.com/docker/go-units v0.5.0 // indirect @@ -113,10 +114,10 @@ require ( github.com/felixge/httpsnoop v1.0.4 // indirect github.com/fsnotify/fsnotify v1.9.0 // indirect github.com/gdamore/encoding v1.0.1 // indirect - github.com/gdamore/tcell/v2 v2.11.0 // indirect + github.com/gdamore/tcell/v2 v2.12.2 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.6.2 // indirect - github.com/go-git/go-git/v5 v5.16.3 // indirect + github.com/go-git/go-git/v5 v5.16.5 // indirect github.com/go-logr/logr v1.4.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-viper/mapstructure/v2 v2.4.0 // indirect @@ -126,17 +127,17 @@ require ( github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/golang/protobuf v1.5.4 // indirect github.com/google/go-cmp v0.7.0 // indirect - github.com/google/go-containerregistry v0.20.6 // indirect + github.com/google/go-containerregistry v0.20.7 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/google/uuid v1.6.0 // indirect github.com/gorilla/mux v1.8.1 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect github.com/heroku/color v0.0.6 // indirect github.com/in-toto/in-toto-golang v0.9.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/kevinburke/ssh_config v1.4.0 // indirect - github.com/klauspost/compress v1.18.1 // indirect + github.com/klauspost/compress v1.18.3 // indirect github.com/klauspost/cpuid/v2 v2.3.0 // indirect github.com/lucasb-eyer/go-colorful v1.3.0 // indirect github.com/mattn/go-localereader v0.0.1 // indirect @@ -145,8 +146,9 @@ require ( github.com/mitchellh/go-homedir v1.1.0 // indirect github.com/mitchellh/ioprogress v0.0.0-20180201004757-6a23b12fa88e // indirect github.com/moby/docker-image-spec v1.3.1 // indirect - github.com/moby/go-archive v0.1.0 // indirect github.com/moby/locker v1.0.1 // indirect + github.com/moby/moby/api v1.52.0 // indirect + github.com/moby/moby/client v0.1.0 // indirect github.com/moby/patternmatcher v0.6.0 // indirect github.com/moby/sys/atomicwriter v0.1.0 // indirect github.com/moby/sys/sequential v0.6.0 // indirect @@ -160,7 +162,7 @@ require ( github.com/muesli/termenv v0.16.0 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/opencontainers/image-spec v1.1.1 // indirect - github.com/opencontainers/selinux v1.13.0 // indirect + github.com/opencontainers/selinux v1.13.1 // indirect github.com/pjbgf/sha1cd v0.5.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pkg/term v1.2.0-beta.2 // indirect @@ -176,9 +178,9 @@ require ( github.com/secure-systems-lab/go-securesystemslib v0.9.1 // indirect github.com/sergi/go-diff v1.4.0 // indirect github.com/shibumi/go-pathspec v1.3.0 // indirect - github.com/sirupsen/logrus v1.9.3 // indirect + github.com/sirupsen/logrus v1.9.4 // indirect github.com/skeema/knownhosts v1.3.1 // indirect - github.com/tonistiigi/fsutil v0.0.0-20250605211040-586307ad452f // indirect + github.com/tonistiigi/fsutil v0.0.0-20251211185533-a2aa163d723f // indirect github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0 // indirect github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab // indirect @@ -189,8 +191,8 @@ require ( github.com/xeipuuv/gojsonschema v1.2.0 // indirect github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect go.opentelemetry.io/auto/sdk v1.2.1 // indirect - go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.61.0 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.63.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect go.opentelemetry.io/otel v1.38.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect @@ -198,17 +200,18 @@ require ( go.opentelemetry.io/otel/sdk v1.38.0 // indirect go.opentelemetry.io/otel/trace v1.38.0 // indirect go.opentelemetry.io/proto/otlp v1.7.1 // indirect - go.yaml.in/yaml/v2 v2.4.2 // indirect - go.yaml.in/yaml/v4 v4.0.0-rc.3 // indirect - golang.org/x/mod v0.30.0 // indirect - golang.org/x/net v0.47.0 // indirect - golang.org/x/sys v0.39.0 // indirect + go.yaml.in/yaml/v2 v2.4.3 // indirect + go.yaml.in/yaml/v3 v3.0.4 // indirect + go.yaml.in/yaml/v4 v4.0.0-rc.4 // indirect + golang.org/x/mod v0.32.0 // indirect + golang.org/x/net v0.49.0 // indirect + golang.org/x/sys v0.41.0 // indirect golang.org/x/time v0.14.0 // indirect - golang.org/x/tools v0.39.0 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 // indirect + golang.org/x/tools v0.41.0 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20251103181224-f26f9409b101 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20251103181224-f26f9409b101 // indirect google.golang.org/grpc v1.76.0 // indirect - google.golang.org/protobuf v1.36.10 // indirect + google.golang.org/protobuf v1.36.11 // indirect gopkg.in/dnaeon/go-vcr.v4 v4.0.6 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/go.sum b/go.sum index e326899f39..f042fa5871 100644 --- a/go.sum +++ b/go.sum @@ -49,8 +49,8 @@ github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7l github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 h1:aM1rlcoLz8y5B2r4tTLMiVTrMtpfY0O8EScKJxaSaEc= -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092/go.mod h1:rYqSE9HbjzpHTI74vwPvae4ZVYZd1lue2ta6xHPdblA= +github.com/anchore/go-struct-converter v0.1.0 h1:2rDRssAl6mgKBSLNiVCMADgZRhoqtw9dedlWa0OhD30= +github.com/anchore/go-struct-converter v0.1.0/go.mod h1:rYqSE9HbjzpHTI74vwPvae4ZVYZd1lue2ta6xHPdblA= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= github.com/apex/log v1.9.0 h1:FHtw/xuaM8AgmvDDTI9fiwoAL25Sq2cxojnZICUU8l0= @@ -61,38 +61,38 @@ github.com/aphistic/sweet v0.2.0/go.mod h1:fWDlIh/isSE9n6EPsRmC0det+whmX6dJid3st github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/aws/aws-sdk-go v1.20.6/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go-v2 v1.41.0 h1:tNvqh1s+v0vFYdA1xq0aOJH+Y5cRyZ5upu6roPgPKd4= -github.com/aws/aws-sdk-go-v2 v1.41.0/go.mod h1:MayyLB8y+buD9hZqkCW3kX1AKq07Y5pXxtgB+rRFhz0= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4 h1:489krEF9xIGkOaaX3CE/Be2uWjiXrkCH6gUX+bZA/BU= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4/go.mod h1:IOAPF6oT9KCsceNTvvYMNHy0+kMF8akOjeDvPENWxp4= +github.com/aws/aws-sdk-go-v2 v1.41.2 h1:LuT2rzqNQsauaGkPK/7813XxcZ3o3yePY0Iy891T2ls= +github.com/aws/aws-sdk-go-v2 v1.41.2/go.mod h1:IvvlAZQXvTXznUPfRVfryiG1fbzE2NGK6m9u39YQ+S4= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.5 h1:zWFmPmgw4sveAYi1mRqG+E/g0461cJ5M4bJ8/nc6d3Q= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.5/go.mod h1:nVUlMLVV8ycXSb7mSkcNu9e3v/1TJq2RTlrPwhYWr5c= github.com/aws/aws-sdk-go-v2/config v1.32.0 h1:T5WWJYnam9SzBLbsVYDu2HscLDe+GU1AUJtfcDAc/vA= github.com/aws/aws-sdk-go-v2/config v1.32.0/go.mod h1:pSRm/+D3TxBixGMXlgtX4+MPO9VNtEEtiFmNpxksoxw= github.com/aws/aws-sdk-go-v2/credentials v1.19.0 h1:7zm+ez+qEqLaNsCSRaistkvJRJv8sByDOVuCnyHbP7M= github.com/aws/aws-sdk-go-v2/credentials v1.19.0/go.mod h1:pHKPblrT7hqFGkNLxqoS3FlGoPrQg4hMIa+4asZzBfs= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.14 h1:WZVR5DbDgxzA0BJeudId89Kmgy6DIU4ORpxwsVHz0qA= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.14/go.mod h1:Dadl9QO0kHgbrH1GRqGiZdYtW5w+IXXaBNCHTIaheM4= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.16 h1:rgGwPzb82iBYSvHMHXc8h9mRoOUBZIGFgKb9qniaZZc= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.16/go.mod h1:L/UxsGeKpGoIj6DxfhOWHWQ/kGKcd4I1VncE4++IyKA= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.16 h1:1jtGzuV7c82xnqOVfx2F0xmJcOw5374L7N6juGW6x6U= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.16/go.mod h1:M2E5OQf+XLe+SZGmmpaI2yy+J326aFf6/+54PoxSANc= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.18 h1:F43zk1vemYIqPAwhjTjYIz0irU2EY7sOb/F5eJ3HuyM= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.18/go.mod h1:w1jdlZXrGKaJcNoL+Nnrj+k5wlpGXqnNrKoP22HvAug= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.18 h1:xCeWVjj0ki0l3nruoyP2slHsGArMxeiiaoPN5QZH6YQ= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.18/go.mod h1:r/eLGuGCBw6l36ZRWiw6PaZwPXb6YOj+i/7MizNl5/k= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 h1:WKuaxf++XKWlHWu9ECbMlha8WOEGm0OUEZqm4K/Gcfk= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4/go.mod h1:ZWy7j6v1vWGmPReu0iSGvRiise4YI5SkR3OHKTZ6Wuc= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.16 h1:CjMzUs78RDDv4ROu3JnJn/Ig1r6ZD7/T2DXLLRpejic= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.16/go.mod h1:uVW4OLBqbJXSHJYA9svT9BluSvvwbzLQ2Crf6UPzR3c= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.18 h1:eZioDaZGJ0tMM4gzmkNIO2aAoQd+je7Ug7TkvAzlmkU= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.18/go.mod h1:CCXwUKAJdoWr6/NcxZ+zsiPr6oH/Q5aTooRGYieAyj4= github.com/aws/aws-sdk-go-v2/service/ecr v1.51.2 h1:aq2N/9UkbEyljIQ7OFcudEgUsJzO8MYucmfsM/k/dmc= github.com/aws/aws-sdk-go-v2/service/ecr v1.51.2/go.mod h1:1NVD1KuMjH2GqnPwMotPndQaT/MreKkWpjkF12d6oKU= github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.38.2 h1:9fe6w8bydUwNAhFVmjo+SRqAJjbBMOyILL/6hTTVkyA= github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.38.2/go.mod h1:x7gU4CAyAz4BsM9hlRkhHiYw2GIr1QCmN45uwQw9l/E= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 h1:0ryTNEdJbzUCEWkVXEXoqlXV72J5keC1GvILMOuD00E= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4/go.mod h1:HQ4qwNZh32C3CBeO6iJLQlgtMzqeG17ziAA/3KDJFow= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.7 h1:DIBqIrJ7hv+e4CmIk2z3pyKT+3B6qVMgRsawHiR3qso= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.7/go.mod h1:vLm00xmBke75UmpNvOcZQ/Q30ZFjbczeLFqGx5urmGo= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.16 h1:oHjJHeUy0ImIV0bsrX0X91GkV5nJAyv1l1CC9lnO0TI= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.16/go.mod h1:iRSNGgOYmiYwSCXxXaKb9HfOEj40+oTKn8pTxMlYkRM= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.16 h1:NSbvS17MlI2lurYgXnCOLvCFX38sBW4eiVER7+kkgsU= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.16/go.mod h1:SwT8Tmqd4sA6G1qaGdzWCJN99bUmPGHfRwwq3G5Qb+A= -github.com/aws/aws-sdk-go-v2/service/s3 v1.93.1 h1:5FhzzN6JmlGQF6c04kDIb5KNGm6KnNdLISNrfivIhHg= -github.com/aws/aws-sdk-go-v2/service/s3 v1.93.1/go.mod h1:79S2BdqCJpScXZA2y+cpZuocWsjGjJINyXnOsf5DTz8= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.5 h1:CeY9LUdur+Dxoeldqoun6y4WtJ3RQtzk0JMP2gfUay0= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.5/go.mod h1:AZLZf2fMaahW5s/wMRciu1sYbdsikT/UHwbUjOdEVTc= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.9 h1:IJRzQTvdpjHRPItx9gzNcz7Y1F+xqAR+xiy9rr5ZYl8= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.9/go.mod h1:Kzm5e6OmNH8VMkgK9t+ry5jEih4Y8whqs+1hrkxim1I= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.18 h1:LTRCYFlnnKFlKsyIQxKhJuDuA3ZkrDQMRYm6rXiHlLY= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.18/go.mod h1:XhwkgGG6bHSd00nO/mexWTcTjgd6PjuvWQMqSn2UaEk= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.18 h1:/A/xDuZAVD2BpsS2fftFRo/NoEKQJ8YTnJDEHBy2Gtg= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.18/go.mod h1:hWe9b4f+djUQGmyiGEeOnZv69dtMSgpDRIvNMvuvzvY= +github.com/aws/aws-sdk-go-v2/service/s3 v1.96.1 h1:giB30dEeoar5bgDnkE0q+z7cFjcHaCjulpmPVmuKR84= +github.com/aws/aws-sdk-go-v2/service/s3 v1.96.1/go.mod h1:071TH4M3botFLWDbzQLfBR7tXYi7Fs2RsXSiH7nlUlY= github.com/aws/aws-sdk-go-v2/service/signin v1.0.1 h1:BDgIUYGEo5TkayOWv/oBLPphWwNm/A91AebUjAu5L5g= github.com/aws/aws-sdk-go-v2/service/signin v1.0.1/go.mod h1:iS6EPmNeqCsGo+xQmXv0jIMjyYtQfnwg36zl2FwEouk= github.com/aws/aws-sdk-go-v2/service/sso v1.30.4 h1:U//SlnkE1wOQiIImxzdY5PXat4Wq+8rlfVEw4Y7J8as= @@ -101,8 +101,8 @@ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.8 h1:MvlNs/f+9eM0mOjD9JzBUbf5 github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.8/go.mod h1:/j67Z5XBVDx8nZVp9EuFM9/BS5dvBznbqILGuu73hug= github.com/aws/aws-sdk-go-v2/service/sts v1.41.1 h1:GdGmKtG+/Krag7VfyOXV17xjTCz0i9NT+JnqLTOI5nA= github.com/aws/aws-sdk-go-v2/service/sts v1.41.1/go.mod h1:6TxbXoDSgBQ225Qd8Q+MbxUxUh6TtNKwbRt/EPS9xso= -github.com/aws/smithy-go v1.24.0 h1:LpilSUItNPFr1eY85RYgTIg5eIEPtvFbskaFcmmIUnk= -github.com/aws/smithy-go v1.24.0/go.mod h1:LEj2LM3rBRQJxPZTB4KuzZkaZYnZPnvgIhb4pu07mx0= +github.com/aws/smithy-go v1.24.1 h1:VbyeNfmYkWoxMVpGUAbQumkODcYmfMRfZ8yQiH30SK0= +github.com/aws/smithy-go v1.24.1/go.mod h1:LEj2LM3rBRQJxPZTB4KuzZkaZYnZPnvgIhb4pu07mx0= github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.11.0 h1:GOPttfOAf5qAgx7r6b+zCWZrvCsfKffkL4H6mSYx1kA= github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.11.0/go.mod h1:a2HN6+p7k0JLDO8514sMr0l4cnrR52z4sWoZ/Uc82ho= github.com/aybabtme/rgbterm v0.0.0-20170906152045-cc83f3b3ce59/go.mod h1:q/89r3U2H7sSsE2t6Kca0lfwTK8JdoNGS/yzM/4iH5I= @@ -118,8 +118,8 @@ github.com/buildpacks/imgutil v0.0.0-20250909162057-9db16db815e3 h1:tm7oOjDEdtwf github.com/buildpacks/imgutil v0.0.0-20250909162057-9db16db815e3/go.mod h1:UH4th60x/wM1DdH7+eSgzbp0kgsJMhVgngWzXoF21cs= github.com/buildpacks/lifecycle v0.20.19 h1:RyQe2QO524eiJNUpFNTdQKVgasPRP5Dl7zrqrFeJA6k= github.com/buildpacks/lifecycle v0.20.19/go.mod h1:Sp2Gc7hPquJ0BivUJjn1FKMzdNNrIAFP0MjNlkwxNGc= -github.com/buildpacks/pack v0.39.0 h1:F7S1aW4oe8zY4zDJI1cvat4cKnX6A77I9GlU4Jp8iw0= -github.com/buildpacks/pack v0.39.0/go.mod h1:AKpFe3Nm2ij2XKkxdjbaOUmZBJveQuJkzGS9PFaroQo= +github.com/buildpacks/pack v0.39.1 h1:yYquCGwvSB8avkmhWyDQPRBiij9TC/Lqrq7EwcmUfrY= +github.com/buildpacks/pack v0.39.1/go.mod h1:u6v2qMlsonCnyq3djOw/DZALF67Ui6nKepFAqmvjGqo= github.com/c-bata/go-prompt v0.2.6 h1:POP+nrHE+DfLYx370bedwNhsqmpCUynWPxuHi0C5vZI= github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= github.com/cenkalti/backoff/v5 v5.0.3 h1:ZN+IMa753KfX5hd8vVaMixjnqRZ3y8CuJKRKj1xcsSM= @@ -152,14 +152,14 @@ github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs= github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb h1:EDmT6Q9Zs+SbUoc7Ik9EfrFqcylYqgPZ9ANSbTAntnE= github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb/go.mod h1:ZjrT6AXHbDs86ZSdt/osfBi5qfexBrKUdONk989Wnk4= -github.com/containerd/cgroups/v3 v3.1.0 h1:azxYVj+91ZgSnIBp2eI3k9y2iYQSR/ZQIgh9vKO+HSY= -github.com/containerd/cgroups/v3 v3.1.0/go.mod h1:SA5DLYnXO8pTGYiAHXz94qvLQTKfVM5GEVisn4jpins= +github.com/containerd/cgroups/v3 v3.1.2 h1:OSosXMtkhI6Qove637tg1XgK4q+DhR0mX8Wi8EhrHa4= +github.com/containerd/cgroups/v3 v3.1.2/go.mod h1:PKZ2AcWmSBsY/tJUVhtS/rluX0b1uq1GmPO1ElCmbOw= github.com/containerd/console v1.0.5 h1:R0ymNeydRqH2DmakFNdmjR2k0t7UPuiOV/N/27/qqsc= github.com/containerd/console v1.0.5/go.mod h1:YynlIjWYF8myEu6sdkwKIvGQq+cOckRm6So2avqoYAk= github.com/containerd/containerd/api v1.10.0 h1:5n0oHYVBwN4VhoX9fFykCV9dF1/BvAXeg2F8W6UYq1o= github.com/containerd/containerd/api v1.10.0/go.mod h1:NBm1OAk8ZL+LG8R0ceObGxT5hbUYj7CzTmR3xh0DlMM= -github.com/containerd/containerd/v2 v2.2.0 h1:K7TqcXy+LnFmZaui2DgHsnp2gAHhVNWYaHlx7HXfys8= -github.com/containerd/containerd/v2 v2.2.0/go.mod h1:YCMjKjA4ZA7egdHNi3/93bJR1+2oniYlnS+c0N62HdE= +github.com/containerd/containerd/v2 v2.2.1 h1:TpyxcY4AL5A+07dxETevunVS5zxqzuq7ZqJXknM11yk= +github.com/containerd/containerd/v2 v2.2.1/go.mod h1:NR70yW1iDxe84F2iFWbR9xfAN0N2F0NcjTi1OVth4nU= github.com/containerd/continuity v0.4.5 h1:ZRoN1sXq9u7V6QoHMcVWGhOwDFqZ4B9i5H6un1Wh0x4= github.com/containerd/continuity v0.4.5/go.mod h1:/lNJvtJKUQStBzpVQ1+rasXO1LAWtUQssk28EZvJ3nE= github.com/containerd/errdefs v1.0.0 h1:tg5yIfIlQIrxYtu9ajqY42W3lpS19XqdxRQeEwYG8PI= @@ -170,21 +170,21 @@ github.com/containerd/fifo v1.1.0 h1:4I2mbh5stb1u6ycIABlBw9zgtlK8viPI9QkQNRQEEmY github.com/containerd/fifo v1.1.0/go.mod h1:bmC4NWMbXlt2EZ0Hc7Fx7QzTFxgPID13eH0Qu+MAb2o= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= github.com/containerd/log v0.1.0/go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo= -github.com/containerd/nydus-snapshotter v0.15.4 h1:l59kGRVMtwMLDLh322HsWhEsBCkRKMkGWYV5vBeLYCE= -github.com/containerd/nydus-snapshotter v0.15.4/go.mod h1:eRJqnxQDr48HNop15kZdLZpFF5B6vf6Q11Aq1K0E4Ms= +github.com/containerd/nydus-snapshotter v0.15.10 h1:hphjuKOqSHLGznNJiAvmsOWkdu4qFXjf4DzGrWSuIsM= +github.com/containerd/nydus-snapshotter v0.15.10/go.mod h1:EWRd/QJ0b6UKHAqYgiV5gHlqLC2qq5cQiSlXEdVovrA= github.com/containerd/platforms v1.0.0-rc.2 h1:0SPgaNZPVWGEi4grZdV8VRYQn78y+nm6acgLGv/QzE4= github.com/containerd/platforms v1.0.0-rc.2/go.mod h1:J71L7B+aiM5SdIEqmd9wp6THLVRzJGXfNuWCZCllLA4= github.com/containerd/plugin v1.0.0 h1:c8Kf1TNl6+e2TtMHZt+39yAPDbouRH9WAToRjex483Y= github.com/containerd/plugin v1.0.0/go.mod h1:hQfJe5nmWfImiqT1q8Si3jLv3ynMUIBB47bQ+KexvO8= -github.com/containerd/stargz-snapshotter/estargz v0.17.0 h1:+TyQIsR/zSFI1Rm31EQBwpAA1ovYgIKHy7kctL3sLcE= -github.com/containerd/stargz-snapshotter/estargz v0.17.0/go.mod h1:s06tWAiJcXQo9/8AReBCIo/QxcXFZ2n4qfsRnpl71SM= +github.com/containerd/stargz-snapshotter/estargz v0.18.1 h1:cy2/lpgBXDA3cDKSyEfNOFMA/c10O1axL69EU7iirO8= +github.com/containerd/stargz-snapshotter/estargz v0.18.1/go.mod h1:ALIEqa7B6oVDsrF37GkGN20SuvG/pIMm7FwP7ZmRb0Q= github.com/containerd/ttrpc v1.2.7 h1:qIrroQvuOL9HQ1X6KHe2ohc7p+HP/0VE6XPU7elJRqQ= github.com/containerd/ttrpc v1.2.7/go.mod h1:YCXHsb32f+Sq5/72xHubdiJRQY9inL4a4ZQrAbN1q9o= github.com/containerd/typeurl/v2 v2.2.3 h1:yNA/94zxWdvYACdYO8zofhrTVuQY73fFU1y++dYSw40= github.com/containerd/typeurl/v2 v2.2.3/go.mod h1:95ljDnPfD3bAbDJRugOiShd/DlAAsxGtUBhJxIn7SCk= github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g= -github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY= -github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4= +github.com/creack/pty v1.1.24 h1:bJrF4RRfyJnbTJqzRLHzcGaZK1NeM5kTC9jGgovnR1s= +github.com/creack/pty v1.1.24/go.mod h1:08sCNb52WyoAwi2QDyzUCTgcvVFhUzewun7wtTfvcwE= github.com/cyphar/filepath-securejoin v0.6.0 h1:BtGB77njd6SVO6VztOHfPxKitJvd/VPT+OFBFMOi1Is= github.com/cyphar/filepath-securejoin v0.6.0/go.mod h1:A8hd4EnAeyujCJRrICiOWqjS1AX0a9kM5XL+NwKoYSc= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -199,14 +199,14 @@ github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI= github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/dnephin/pflag v1.0.7 h1:oxONGlWxhmUct0YzKTgrpQv9AUA1wtPBn7zuSjJqptk= github.com/dnephin/pflag v1.0.7/go.mod h1:uxE91IoWURlOiTUIA8Mq5ZZkAv3dPUfZNaT80Zm7OQE= -github.com/docker/cli v28.5.1+incompatible h1:ESutzBALAD6qyCLqbQSEf1a/U8Ybms5agw59yGVc+yY= -github.com/docker/cli v28.5.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= +github.com/docker/cli v29.2.1+incompatible h1:n3Jt0QVCN65eiVBoUTZQM9mcQICCJt3akW4pKAbKdJg= +github.com/docker/cli v29.2.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk= github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= github.com/docker/docker v28.5.2+incompatible h1:DBX0Y0zAjZbSrm1uzOkdr1onVghKaftjlSWt4AFexzM= github.com/docker/docker v28.5.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker-credential-helpers v0.9.4 h1:76ItO69/AP/V4yT9V4uuuItG0B1N8hvt0T0c0NN/DzI= -github.com/docker/docker-credential-helpers v0.9.4/go.mod h1:v1S+hepowrQXITkEfw6o4+BMbGot02wiKpzWhGUZK6c= +github.com/docker/docker-credential-helpers v0.9.5 h1:EFNN8DHvaiK8zVqFA2DT6BjXE0GzfLOZ38ggPTKePkY= +github.com/docker/docker-credential-helpers v0.9.5/go.mod h1:v1S+hepowrQXITkEfw6o4+BMbGot02wiKpzWhGUZK6c= github.com/docker/go-connections v0.6.0 h1:LlMG9azAe1TqfR7sO+NJttz1gy6KO7VJBh+pMmjSD94= github.com/docker/go-connections v0.6.0/go.mod h1:AahvXYshr6JgfUJGdDCs2b5EZG/vmaMAntpSFH5BFKE= github.com/docker/go-metrics v0.0.1 h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8= @@ -233,10 +233,10 @@ github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0= github.com/gdamore/encoding v1.0.1 h1:YzKZckdBL6jVt2Gc+5p82qhrGiqMdG/eNs6Wy0u3Uhw= github.com/gdamore/encoding v1.0.1/go.mod h1:0Z0cMFinngz9kS1QfMjCP8TY7em3bZYeeklsSDPivEo= -github.com/gdamore/tcell/v2 v2.11.0 h1:ntVCx4v2M7ev2hMuAHad5ZRPymfpxb8VR3X3VRz+/YQ= -github.com/gdamore/tcell/v2 v2.11.0/go.mod h1:pytyB+bE6zrRVf6u/ZMWX9AZqSVcW4bpimuDiR5k2mU= -github.com/getsentry/sentry-go v0.40.0 h1:VTJMN9zbTvqDqPwheRVLcp0qcUcM+8eFivvGocAaSbo= -github.com/getsentry/sentry-go v0.40.0/go.mod h1:eRXCoh3uvmjQLY6qu63BjUZnaBu5L5WhMV1RwYO8W5s= +github.com/gdamore/tcell/v2 v2.12.2 h1:7hBtHPlPGNH6/ZLl22eLl7q0kfNsL+FGEggcWZuk6jk= +github.com/gdamore/tcell/v2 v2.12.2/go.mod h1:+Wfe208WDdB7INEtCsNrAN6O2m+wsTPk1RAovjaILlo= +github.com/getsentry/sentry-go v0.42.0 h1:eeFMACuZTbUQf90RE8dE4tXeSe4CZyfvR1MBL7RLEt8= +github.com/getsentry/sentry-go v0.42.0/go.mod h1:eRXCoh3uvmjQLY6qu63BjUZnaBu5L5WhMV1RwYO8W5s= github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gliderlabs/ssh v0.3.8 h1:a4YXD1V7xMF9g5nTkdfnja3Sxy1PVDCj1Zg4Wb8vY6c= @@ -249,8 +249,8 @@ github.com/go-git/go-billy/v5 v5.6.2 h1:6Q86EsPXMa7c3YZ3aLAQsMA0VlWmy43r6FHqa/UN github.com/go-git/go-billy/v5 v5.6.2/go.mod h1:rcFC2rAsp/erv7CMz9GczHcuD0D32fWzH+MJAU+jaUU= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= -github.com/go-git/go-git/v5 v5.16.3 h1:Z8BtvxZ09bYm/yYNgPKCzgWtaRqDTgIKRgIRHBfU6Z8= -github.com/go-git/go-git/v5 v5.16.3/go.mod h1:4Ge4alE/5gPs30F2H1esi2gPd69R0C39lolkucHBOp8= +github.com/go-git/go-git/v5 v5.16.5 h1:mdkuqblwr57kVfXri5TTH+nMFLNUxIj9Z7F5ykFbw5s= +github.com/go-git/go-git/v5 v5.16.5/go.mod h1:QOMLpNf1qxuSY4StA/ArOdfFR2TrKEjJiye2kel2m+M= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= @@ -284,8 +284,8 @@ github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6 github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= -github.com/google/go-containerregistry v0.20.6 h1:cvWX87UxxLgaH76b4hIvya6Dzz9qHB31qAwjAohdSTU= -github.com/google/go-containerregistry v0.20.6/go.mod h1:T0x8MuoAoKX/873bkeSfLD2FAkwCDf9/HZgsFJ02E2Y= +github.com/google/go-containerregistry v0.20.7 h1:24VGNpS0IwrOZ2ms2P1QE3Xa5X9p4phx0aUgzYzHW6I= +github.com/google/go-containerregistry v0.20.7/go.mod h1:Lx5LCZQjLH1QBaMPeGwsME9biPeo1lPx6lbGj/UmzgM= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= @@ -296,8 +296,8 @@ github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 h1:JeSE6pjso5THxAzdVpqr6/geYxZytqFMBCOtn/ujyeo= github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674/go.mod h1:r4w70xmWCQKmi1ONH4KIaBptdivuRPyosB9RmPlGEwA= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 h1:8Tjv8EJ+pM1xP8mK6egEbD1OgnVTyacbefKhmbLhIhU= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2/go.mod h1:pkJQ2tZHJ0aFOVEEot6oZmaVEZcRme73eIFmhiVuRWs= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 h1:NmZ1PKzSTQbuGHw9DGPFomqkkLWMC+vZCkfs+FHv1Vg= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3/go.mod h1:zQrxl1YP88HQlA6i9c63DSVPFklWpGX4OWAc9bFuaH4= github.com/hashicorp/go-version v1.8.0 h1:KAkNb1HAiZd1ukkxDFGmokVZe1Xy9HG6NUp+bPle2i4= github.com/hashicorp/go-version v1.8.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/heroku/color v0.0.6 h1:UTFFMrmMLFcL3OweqP1lAdp8i1y/9oHqkeHjQ/b/Ny0= @@ -320,8 +320,8 @@ github.com/kevinburke/ssh_config v1.4.0 h1:6xxtP5bZ2E4NF5tuQulISpTO2z8XbtH8cg1PW github.com/kevinburke/ssh_config v1.4.0/go.mod h1:q2RIzfka+BXARoNexmF9gkxEX7DmvbW9P4hIVx2Kg4M= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.18.1 h1:bcSGx7UbpBqMChDtsF28Lw6v/G94LPrrbMbdC3JH2co= -github.com/klauspost/compress v1.18.1/go.mod h1:ZQFFVG+MdnR0P+l6wpXgIL4NTtwiKIdBnrBd8Nrxr+0= +github.com/klauspost/compress v1.18.3 h1:9PJRvfbmTabkOX8moIpXPbMMbYN60bWImDDU7L+/6zw= +github.com/klauspost/compress v1.18.3/go.mod h1:R0h/fSBs8DE4ENlcrlib3PsXS61voFxhIs2DeRhCvJ4= github.com/klauspost/cpuid/v2 v2.3.0 h1:S4CRMLnYUhGeDFDqkGriYKdfoFlDnMtqTiI/sFzhA9Y= github.com/klauspost/cpuid/v2 v2.3.0/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -366,14 +366,18 @@ github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/ioprogress v0.0.0-20180201004757-6a23b12fa88e h1:Qa6dnn8DlasdXRnacluu8HzPts0S1I9zvvUPDbBnXFI= github.com/mitchellh/ioprogress v0.0.0-20180201004757-6a23b12fa88e/go.mod h1:waEya8ee1Ro/lgxpVhkJI4BVASzkm3UZqkx/cFJiYHM= -github.com/moby/buildkit v0.26.2 h1:EIh5j0gzRsCZmQzvgNNWzSDbuKqwUIiBH7ssqLv8RU8= -github.com/moby/buildkit v0.26.2/go.mod h1:ylDa7IqzVJgLdi/wO7H1qLREFQpmhFbw2fbn4yoTw40= +github.com/moby/buildkit v0.27.1 h1:qlIWpnZzqCkrYiGkctM1gBD/YZPOJTjtUdRBlI0oBOU= +github.com/moby/buildkit v0.27.1/go.mod h1:99qLrCrIAFgEOiFnCi9Y0Wwp6/qA7QvZ3uq/6wF0IsI= github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0= github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo= -github.com/moby/go-archive v0.1.0 h1:Kk/5rdW/g+H8NHdJW2gsXyZ7UnzvJNOy6VKJqueWdcQ= -github.com/moby/go-archive v0.1.0/go.mod h1:G9B+YoujNohJmrIYFBpSd54GTUB4lt9S+xVQvsJyFuo= +github.com/moby/go-archive v0.2.0 h1:zg5QDUM2mi0JIM9fdQZWC7U8+2ZfixfTYoHL7rWUcP8= +github.com/moby/go-archive v0.2.0/go.mod h1:mNeivT14o8xU+5q1YnNrkQVpK+dnNe/K6fHqnTg4qPU= github.com/moby/locker v1.0.1 h1:fOXqR41zeveg4fFODix+1Ch4mj/gT0NE1XJbp/epuBg= github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc= +github.com/moby/moby/api v1.52.0 h1:00BtlJY4MXkkt84WhUZPRqt5TvPbgig2FZvTbe3igYg= +github.com/moby/moby/api v1.52.0/go.mod h1:8mb+ReTlisw4pS6BRzCMts5M49W5M7bKt1cJy/YbAqc= +github.com/moby/moby/client v0.1.0 h1:nt+hn6O9cyJQqq5UWnFGqsZRTS/JirUqzPjEl0Bdc/8= +github.com/moby/moby/client v0.1.0/go.mod h1:O+/tw5d4a1Ha/ZA/tPxIZJapJRUS6LNZ1wiVRxYHyUE= github.com/moby/patternmatcher v0.6.0 h1:GmP9lR19aU5GqSSFko+5pRqHi+Ohk1O69aFiKkVGiPk= github.com/moby/patternmatcher v0.6.0/go.mod h1:hDPoyOpDY7OrrMDLaYoY3hf52gNCR/YOUYxkhApJIxc= github.com/moby/sys/atomicwriter v0.1.0 h1:kw5D/EqkBwsBFi0ss9v1VG3wIkVhzGvLklJ+w3A14Sw= @@ -414,10 +418,10 @@ github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8 github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= github.com/opencontainers/image-spec v1.1.1 h1:y0fUlFfIZhPF1W537XOLg0/fcx6zcHCJwooC2xJA040= github.com/opencontainers/image-spec v1.1.1/go.mod h1:qpqAh3Dmcf36wStyyWU+kCeDgrGnAve2nCC8+7h8Q0M= -github.com/opencontainers/runtime-spec v1.2.1 h1:S4k4ryNgEpxW1dzyqffOmhI1BHYcjzU8lpJfSlR0xww= -github.com/opencontainers/runtime-spec v1.2.1/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/selinux v1.13.0 h1:Zza88GWezyT7RLql12URvoxsbLfjFx988+LGaWfbL84= -github.com/opencontainers/selinux v1.13.0/go.mod h1:XxWTed+A/s5NNq4GmYScVy+9jzXhGBVEOAyucdRUY8s= +github.com/opencontainers/runtime-spec v1.3.0 h1:YZupQUdctfhpZy3TM39nN9Ika5CBWT5diQ8ibYCRkxg= +github.com/opencontainers/runtime-spec v1.3.0/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/selinux v1.13.1 h1:A8nNeceYngH9Ow++M+VVEwJVpdFmrlxsN22F+ISDCJE= +github.com/opencontainers/selinux v1.13.1/go.mod h1:S10WXZ/osk2kWOYKy1x2f/eXF5ZHJoUs8UU/2caNRbg= github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= @@ -464,8 +468,8 @@ github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7 github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI= github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251202131048-1c7b2248aaba h1:uROS5GNQhplrMMeuuSHC47/Nztx4CWP07JoQMykzPxQ= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.35.0.20251202131048-1c7b2248aaba/go.mod h1:h/elW4JdNo225GP5FZHJ/RPyCNz79lxaeub3PyGzE9o= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260224141609-f7be528d57e3 h1:Hhrvg0toeplFe2JRjI+zh8xOjNawpBRRewHWAPVX9yI= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.36.0.20260224141609-f7be528d57e3/go.mod h1:EG4RjSWH4YiEB6bPmLxzkDm7GsEqLcXNTCwigMNapxQ= github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8= github.com/sclevine/spec v1.4.0/go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM= github.com/secure-systems-lab/go-securesystemslib v0.9.1 h1:nZZaNz4DiERIQguNy0cL5qTdn9lR8XKHf4RUyG1Sx3g= @@ -475,10 +479,14 @@ github.com/sergi/go-diff v1.4.0 h1:n/SP9D5ad1fORl+llWyN+D6qoUETXNZARKjyY2/KVCw= github.com/sergi/go-diff v1.4.0/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/shibumi/go-pathspec v1.3.0 h1:QUyMZhFo0Md5B8zV8x2tesohbb5kfbpTi9rBnKh5dkI= github.com/shibumi/go-pathspec v1.3.0/go.mod h1:Xutfslp817l2I1cZvgcfeMQJG5QnU2lh5tVaaMCl3jE= +github.com/sigstore/sigstore v1.10.0 h1:lQrmdzqlR8p9SCfWIpFoGUqdXEzJSZT2X+lTXOMPaQI= +github.com/sigstore/sigstore v1.10.0/go.mod h1:Ygq+L/y9Bm3YnjpJTlQrOk/gXyrjkpn3/AEJpmk1n9Y= +github.com/sigstore/sigstore-go v1.1.4-0.20251124094504-b5fe07a5a7d7 h1:94NLPmq4bxvdmslzcG670IOkrlS98CGpmob8cjpFHuI= +github.com/sigstore/sigstore-go v1.1.4-0.20251124094504-b5fe07a5a7d7/go.mod h1:4r/PNX0G7uzkLpc3PSdYs5E2k4bWEJNXTK6kwAyw9TM= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= -github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sirupsen/logrus v1.9.4 h1:TsZE7l11zFCLZnZ+teH4Umoq5BhEIfIzfRDZ1Uzql2w= +github.com/sirupsen/logrus v1.9.4/go.mod h1:ftWc9WdOfJ0a92nsE2jF5u5ZwH8Bv2zdeOC42RjbV2g= github.com/skeema/knownhosts v1.3.1 h1:X2osQ+RAjK76shCbvhHHHVl3ZlgDm8apHEHFqRjnBY8= github.com/skeema/knownhosts v1.3.1/go.mod h1:r7KTdC8l4uxWRyK2TpQZ/1o5HaSzh06ePQNxPwTcfiY= github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 h1:JIAuq3EEf9cgbU6AtGPK4CTG3Zf6CKMNqf0MHTggAUA= @@ -486,8 +494,8 @@ github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966/go.mod h1:s github.com/smartystreets/assertions v1.0.0/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM= github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9/go.mod h1:SnhjPscd9TpLiy1LpzGSKh3bXCfxxXuqd9xmQJy3slM= github.com/smartystreets/gunit v1.0.0/go.mod h1:qwPWnhz6pn0NnRBP++URONOVyNkPyr4SauJk4cUOwJs= -github.com/spdx/tools-golang v0.5.5 h1:61c0KLfAcNqAjlg6UNMdkwpMernhw3zVRwDZ2x9XOmk= -github.com/spdx/tools-golang v0.5.5/go.mod h1:MVIsXx8ZZzaRWNQpUDhC4Dud34edUYJYecciXgrw5vE= +github.com/spdx/tools-golang v0.5.7 h1:+sWcKGnhwp3vLdMqPcLdA6QK679vd86cK9hQWH3AwCg= +github.com/spdx/tools-golang v0.5.7/go.mod h1:jg7w0LOpoNAw6OxKEzCoqPC2GCTj45LyTlVmXubDsYw= github.com/spf13/cobra v1.10.2 h1:DMTTonx5m65Ic0GOoRY2c16WCbHxOOw6xxezuLaBpcU= github.com/spf13/cobra v1.10.2/go.mod h1:7C1pvHqHw5A4vrJfjNwvOdzYu0Gml16OCs2GRiTUUS4= github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= @@ -501,7 +509,6 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= @@ -514,8 +521,8 @@ github.com/tj/go-buffer v1.1.0/go.mod h1:iyiJpfFcR2B9sXu7KvjbT9fpM4mOelRSDTbntVj github.com/tj/go-elastic v0.0.0-20171221160941-36157cbbebc2/go.mod h1:WjeM0Oo1eNAjXGDx2yma7uG2XoyRZTq1uv3M/o7imD0= github.com/tj/go-kinesis v0.0.0-20171128231115-08b17f58cb1b/go.mod h1:/yhzCV0xPfx6jb1bBgRFjl5lytqVqZXEaeqWP8lTEao= github.com/tj/go-spin v1.1.0/go.mod h1:Mg1mzmePZm4dva8Qz60H2lHwmJ2loum4VIrLgVnKwh4= -github.com/tonistiigi/fsutil v0.0.0-20250605211040-586307ad452f h1:MoxeMfHAe5Qj/ySSBfL8A7l1V+hxuluj8owsIEEZipI= -github.com/tonistiigi/fsutil v0.0.0-20250605211040-586307ad452f/go.mod h1:BKdcez7BiVtBvIcef90ZPc6ebqIWr4JWD7+EvLm6J98= +github.com/tonistiigi/fsutil v0.0.0-20251211185533-a2aa163d723f h1:Z4NEQ86qFl1mHuCu9gwcE+EYCwDKfXAYXZbdIXyxmEA= +github.com/tonistiigi/fsutil v0.0.0-20251211185533-a2aa163d723f/go.mod h1:BKdcez7BiVtBvIcef90ZPc6ebqIWr4JWD7+EvLm6J98= github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0 h1:2f304B10LaZdB8kkVEaoXvAMVan2tl9AiK4G0odjQtE= github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0/go.mod h1:278M4p8WsNh3n4a1eqiFcV2FGk7wE5fwUpUom9mK9lE= github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea h1:SXhTLE6pb6eld/v/cCndK0AMpt1wiVFb/YYmqB3/QG0= @@ -542,10 +549,10 @@ go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64= go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 h1:q4XOmH/0opmeuJtPsbFNivyl7bCt7yRBbeEm2sC/XtQ= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0/go.mod h1:snMWehoOh2wsEwnvvwtDyFCxVeDAODenXHtn5vzrKjo= -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.61.0 h1:lREC4C0ilyP4WibDhQ7Gg2ygAQFP8oR07Fst/5cafwI= -go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.61.0/go.mod h1:HfvuU0kW9HewH14VCOLImqKvUgONodURG7Alj/IrnGI= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0 h1:YH4g8lQroajqUwWbq/tr2QX1JFmEXaDLgG+ew9bLMWo= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0/go.mod h1:fvPi2qXDqFs8M4B4fmJhE92TyQs9Ydjlg3RvfUp+NbQ= +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.63.0 h1:2pn7OzMewmYRiNtv1doZnLo3gONcnMHlFnmOR8Vgt+8= +go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.63.0/go.mod h1:rjbQTDEPQymPE0YnRQp9/NuPwwtL0sesz/fnqRW/v84= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 h1:RbKq8BG0FI8OiXhBfcRtqqHcZcka+gU3cskNuf05R18= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0/go.mod h1:h06DGIukJOevXaj/xrNjhi/2098RZzcLTbc0jDAUbsg= go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8= @@ -566,12 +573,12 @@ go.opentelemetry.io/proto/otlp v1.7.1 h1:gTOMpGDb0WTBOP8JaO72iL3auEZhVmAQg4ipjOV go.opentelemetry.io/proto/otlp v1.7.1/go.mod h1:b2rVh6rfI/s2pHWNlB7ILJcRALpcNDzKhACevjI+ZnE= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= -go.yaml.in/yaml/v2 v2.4.2 h1:DzmwEr2rDGHl7lsFgAHxmNz/1NlQ7xLIrlN2h5d1eGI= -go.yaml.in/yaml/v2 v2.4.2/go.mod h1:081UH+NErpNdqlCXm3TtEran0rJZGxAYx9hb/ELlsPU= +go.yaml.in/yaml/v2 v2.4.3 h1:6gvOSjQoTB3vt1l+CU+tSyi/HOjfOjRLJ4YwYZGwRO0= +go.yaml.in/yaml/v2 v2.4.3/go.mod h1:zSxWcmIDjOzPXpjlTTbAsKokqkDNAVtZO0WOMiT90s8= go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg= -go.yaml.in/yaml/v4 v4.0.0-rc.3 h1:3h1fjsh1CTAPjW7q/EMe+C8shx5d8ctzZTrLcs/j8Go= -go.yaml.in/yaml/v4 v4.0.0-rc.3/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0= +go.yaml.in/yaml/v4 v4.0.0-rc.4 h1:UP4+v6fFrBIb1l934bDl//mmnoIZEDK0idg1+AIvX5U= +go.yaml.in/yaml/v4 v4.0.0-rc.4/go.mod h1:aZqd9kCMsGL7AuUv/m/PvWLdg5sjJsZ4oHDEnfPPfY0= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= @@ -581,16 +588,16 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/crypto v0.45.0 h1:jMBrvKuj23MTlT0bQEOBcAE0mjg8mK9RXFhRH6nyF3Q= -golang.org/x/crypto v0.45.0/go.mod h1:XTGrrkGJve7CYK7J8PEww4aY7gM3qMCElcJQ8n8JdX4= +golang.org/x/crypto v0.48.0 h1:/VRzVqiRSggnhY7gNRxPauEQ5Drw9haKdM0jqfcCFts= +golang.org/x/crypto v0.48.0/go.mod h1:r0kV5h3qnFPlQnBSrULhlsRfryS2pmewsg+XfMgkVos= golang.org/x/exp v0.0.0-20250911091902-df9299821621 h1:2id6c1/gto0kaHYyrixvknJ8tUK/Qs5IsmBtrc+FtgU= golang.org/x/exp v0.0.0-20250911091902-df9299821621/go.mod h1:TwQYMMnGpvZyc+JpB/UAuTNIsVJifOlSkrZkhcvpVUk= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.30.0 h1:fDEXFVZ/fmCKProc/yAXXUijritrDzahmwwefnjoPFk= -golang.org/x/mod v0.30.0/go.mod h1:lAsf5O2EvJeSFMiBxXDki7sCgAxEUcZHXoXMKT4GJKc= +golang.org/x/mod v0.32.0 h1:9F4d3PHLljb6x//jOyokMv3eX+YDeepZSEo3mFJy93c= +golang.org/x/mod v0.32.0/go.mod h1:SgipZ/3h2Ci89DlEtEXWUk/HteuRin+HHhN+WbNhguU= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -603,8 +610,8 @@ golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qx golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.47.0 h1:Mx+4dIFzqraBXUugkia1OOvlD6LemFo1ALMHjrXDOhY= -golang.org/x/net v0.47.0/go.mod h1:/jNxtkgq5yWUGYkaZGqo27cfGZ1c5Nen03aYrrKpVRU= +golang.org/x/net v0.49.0 h1:eeHFmOGUTtaaPSGNmjBKpbng9MulQsJURQUAfUwY++o= +golang.org/x/net v0.49.0/go.mod h1:/ysNB2EvaqvesRkuLAyjI1ycPZlQHM3q01F02UY/MV8= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -645,15 +652,15 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk= -golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k= +golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= -golang.org/x/term v0.38.0 h1:PQ5pkm/rLO6HnxFR7N2lJHOZX6Kez5Y1gDSJla6jo7Q= -golang.org/x/term v0.38.0/go.mod h1:bSEAKrOT1W+VSu9TSCMtoGEOUcKxOKgl3LE5QEF/xVg= +golang.org/x/term v0.40.0 h1:36e4zGLqU4yhjlmxEaagx2KuYbJq3EwY8K943ZsHcvg= +golang.org/x/term v0.40.0/go.mod h1:w2P8uVp06p2iyKKuvXIm7N/y0UCRt3UfJTfZ7oOpglM= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -662,8 +669,8 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/text v0.32.0 h1:ZD01bjUt1FQ9WJ0ClOL5vxgxOI/sVCNgX1YtKwcY0mU= -golang.org/x/text v0.32.0/go.mod h1:o/rUWzghvpD5TXrTIBuJU77MTaN0ljMWE47kxGJQ7jY= +golang.org/x/text v0.34.0 h1:oL/Qq0Kdaqxa1KbNeMKwQq0reLCCaFtqu2eNuSeNHbk= +golang.org/x/text v0.34.0/go.mod h1:homfLqTYRFyVYemLBFl5GgL/DWEiH5wcsQ5gSh1yziA= golang.org/x/time v0.14.0 h1:MRx4UaLrDotUKUdCIqzPC48t1Y9hANFKIRpNx+Te8PI= golang.org/x/time v0.14.0/go.mod h1:eL/Oa2bBBK0TkX57Fyni+NgnyQQN4LitPmob2Hjnqw4= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -672,22 +679,22 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.39.0 h1:ik4ho21kwuQln40uelmciQPp9SipgNDdrafrYA4TmQQ= -golang.org/x/tools v0.39.0/go.mod h1:JnefbkDPyD8UU2kI5fuf8ZX4/yUeh9W877ZeBONxUqQ= +golang.org/x/tools v0.41.0 h1:a9b8iMweWG+S0OBnlU36rzLp20z1Rp10w+IY2czHTQc= +golang.org/x/tools v0.41.0/go.mod h1:XSY6eDqxVNiYgezAVqqCeihT4j1U2CCsqvH3WhQpnlg= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk= gonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E= -google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 h1:BIRfGDEjiHRrk0QKZe3Xv2ieMhtgRGeLcZQ0mIVn4EY= -google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5/go.mod h1:j3QtIyytwqGr1JUDtYXwtMXWPKsEa5LtzIFN1Wn5WvE= +google.golang.org/genproto/googleapis/api v0.0.0-20251103181224-f26f9409b101 h1:vk5TfqZHNn0obhPIYeS+cxIFKFQgser/M2jnI+9c6MM= +google.golang.org/genproto/googleapis/api v0.0.0-20251103181224-f26f9409b101/go.mod h1:E17fc4PDhkr22dE3RgnH2hEubUaky6ZwW4VhANxyspg= google.golang.org/genproto/googleapis/rpc v0.0.0-20251103181224-f26f9409b101 h1:tRPGkdGHuewF4UisLzzHHr1spKw92qLM98nIzxbC0wY= google.golang.org/genproto/googleapis/rpc v0.0.0-20251103181224-f26f9409b101/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= google.golang.org/grpc v1.76.0 h1:UnVkv1+uMLYXoIz6o7chp59WfQUYA2ex/BXQ9rHZu7A= google.golang.org/grpc v1.76.0/go.mod h1:Ju12QI8M6iQJtbcsV+awF5a4hfJMLi4X0JLo94ULZ6c= -google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= -google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= +google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE= +google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -712,3 +719,5 @@ gotest.tools/gotestsum v1.12.3 h1:jFwenGJ0RnPkuKh2VzAYl1mDOJgbhobBDeL2W1iEycs= gotest.tools/gotestsum v1.12.3/go.mod h1:Y1+e0Iig4xIRtdmYbEV7K7H6spnjc1fX4BOuUhWw2Wk= gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q= gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA= +pgregory.net/rapid v1.2.0 h1:keKAYRcjm+e1F0oAuU5F5+YPAWcyxNNRK2wud503Gnk= +pgregory.net/rapid v1.2.0/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= diff --git a/internal/alias/alias.go b/internal/alias/alias.go index 74c53d1028..6df6fb2b1d 100644 --- a/internal/alias/alias.go +++ b/internal/alias/alias.go @@ -23,9 +23,9 @@ func (a *Alias) Args() []string { func (a *Alias) computeArgs() { a.args = []string{} for _, cmd := range a.Command { - argSplitterIndex := strings.Index(cmd, "=") - if argSplitterIndex != -1 { - a.args = append(a.args, cmd[:argSplitterIndex]) + before, _, ok := strings.Cut(cmd, "=") + if ok { + a.args = append(a.args, before) } } } diff --git a/internal/args/args.go b/internal/args/args.go index abfd21497e..4756f3e6f7 100644 --- a/internal/args/args.go +++ b/internal/args/args.go @@ -4,6 +4,7 @@ import ( "fmt" "reflect" "regexp" + "slices" "strings" "github.com/scaleway/scaleway-sdk-go/strcase" @@ -56,7 +57,7 @@ func SplitRawMap(rawArgs []string) map[string]struct{} { // SplitRaw creates a slice that maps arg names to their values. // ["arg1=1", "arg2=2", "arg3"] => { {"arg1", "1"}, {"arg2", "2"}, {"arg3",""} } func SplitRaw(rawArgs []string) [][2]string { - keyValue := [][2]string{} + keyValue := make([][2]string, 0, len(rawArgs)) for _, arg := range rawArgs { tmp := strings.SplitN(arg, "=", 2) if len(tmp) < 2 { @@ -296,8 +297,7 @@ func listArgTypeFields(base string, argType reflect.Type) []string { case reflect.Struct: fields := []string(nil) - for i := range argType.NumField() { - field := argType.Field(i) + for field := range argType.Fields() { fieldBase := base // If this is an embedded struct, skip adding its name to base @@ -317,10 +317,8 @@ func listArgTypeFields(base string, argType reflect.Type) []string { return fields default: - for _, skippedArg := range listArgTypeFieldsSkippedArguments { - if base == skippedArg { - return []string{} - } + if slices.Contains(listArgTypeFieldsSkippedArguments, base) { + return []string{} } return []string{base} diff --git a/internal/args/unmarshal_test.go b/internal/args/unmarshal_test.go index f69acb8ec3..ee3cb84808 100644 --- a/internal/args/unmarshal_test.go +++ b/internal/args/unmarshal_test.go @@ -13,7 +13,7 @@ import ( ) func init() { - args.TestForceNow = scw.TimePtr(time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC)) + args.TestForceNow = new(time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC)) } func TestUnmarshalStruct(t *testing.T) { @@ -205,7 +205,7 @@ func TestUnmarshalStruct(t *testing.T) { }, expected: &Slice{ Strings: []string(nil), - SlicePtr: scw.StringsPtr([]string{}), + SlicePtr: new([]string{}), StringsPtr: []*string(nil), }, })) diff --git a/internal/e2e/testdata/test-human-run-usage.golden b/internal/e2e/testdata/test-human-run-usage.golden index b2f0c31b1f..6e7b39f58e 100644 --- a/internal/e2e/testdata/test-human-run-usage.golden +++ b/internal/e2e/testdata/test-human-run-usage.golden @@ -14,7 +14,8 @@ ARGS: human-id UUID of the human you want to make run FLAGS: - -h, --help help for run + -h, --help help for run + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/internal/editor/marshal.go b/internal/editor/marshal.go index 53ddab9cb9..34b99210ab 100644 --- a/internal/editor/marshal.go +++ b/internal/editor/marshal.go @@ -77,7 +77,7 @@ func addTemplate(content []byte, template string, mode MarshalMode) []byte { } newContent := []byte(nil) - for _, line := range strings.Split(template, "\n") { + for line := range strings.SplitSeq(template, "\n") { newContent = append(newContent, []byte("#"+line+"\n")...) } diff --git a/internal/editor/reflect.go b/internal/editor/reflect.go index 2e7eb4dbce..96dbe0fafc 100644 --- a/internal/editor/reflect.go +++ b/internal/editor/reflect.go @@ -2,6 +2,7 @@ package editor import ( "reflect" + "slices" ) func areSameType(v1 reflect.Value, v2 reflect.Value) bool { @@ -34,13 +35,7 @@ func areSameType(v1 reflect.Value, v2 reflect.Value) bool { } func hasTag(tags []string, actualTag string) bool { - for _, tag := range tags { - if tag == actualTag { - return true - } - } - - return false + return slices.Contains(tags, actualTag) } func valueMapperWithoutOpt( diff --git a/internal/editor/reflect_test.go b/internal/editor/reflect_test.go index f44ffba8d1..55f99cc380 100644 --- a/internal/editor/reflect_test.go +++ b/internal/editor/reflect_test.go @@ -78,7 +78,7 @@ func Test_valueMapperPointersWithPointers(t *testing.T) { src := struct { Arg1 *string Arg2 *int32 - }{scw.StringPtr("1"), scw.Int32Ptr(1)} + }{new("1"), scw.Int32Ptr(1)} dest := struct { Arg1 *string Arg2 *int32 diff --git a/internal/gofields/gofields.go b/internal/gofields/gofields.go index ccdff74e5a..456e81a3bf 100644 --- a/internal/gofields/gofields.go +++ b/internal/gofields/gofields.go @@ -178,9 +178,7 @@ func listFields(t reflect.Type, parents []string, filter ListFieldFilter) []stri return listFields(t.Elem(), append(parents, ""), filter) case reflect.Struct: res := []string(nil) - for i := range t.NumField() { - field := t.Field(i) - + for field := range t.Fields() { if !isFieldPublic(field) { continue } diff --git a/internal/interactive/print.go b/internal/interactive/print.go index 4be1e12d18..d0ebabb25b 100644 --- a/internal/interactive/print.go +++ b/internal/interactive/print.go @@ -47,8 +47,8 @@ func Line(char string) string { func Center(str string) string { longestLine := 0 - lines := strings.Split(str, "\n") - for _, line := range lines { + lines := strings.SplitSeq(str, "\n") + for line := range lines { longestLine = int(math.Max(float64(longestLine), float64(len(line)))) } diff --git a/internal/jshelpers/arrays.go b/internal/jshelpers/arrays.go index c4d5f25e97..a80be92897 100644 --- a/internal/jshelpers/arrays.go +++ b/internal/jshelpers/arrays.go @@ -5,7 +5,6 @@ package jshelpers import ( "fmt" "reflect" - "syscall/js" ) diff --git a/internal/jshelpers/async.go b/internal/jshelpers/async.go index 57071c7590..a8572cbdc0 100644 --- a/internal/jshelpers/async.go +++ b/internal/jshelpers/async.go @@ -5,7 +5,6 @@ package jshelpers import ( "fmt" "runtime/debug" - "syscall/js" ) diff --git a/internal/jshelpers/function.go b/internal/jshelpers/function.go index 2d1f6b9c95..6b1a108d33 100644 --- a/internal/jshelpers/function.go +++ b/internal/jshelpers/function.go @@ -5,7 +5,6 @@ package jshelpers import ( "fmt" "reflect" - "syscall/js" ) diff --git a/internal/jshelpers/objects.go b/internal/jshelpers/objects.go index 7377b80e00..8841c9192e 100644 --- a/internal/jshelpers/objects.go +++ b/internal/jshelpers/objects.go @@ -5,7 +5,6 @@ package jshelpers import ( "fmt" "reflect" - "syscall/js" ) diff --git a/internal/jshelpers/scalar.go b/internal/jshelpers/scalar.go index d129c3d539..99c3cd00c9 100644 --- a/internal/jshelpers/scalar.go +++ b/internal/jshelpers/scalar.go @@ -5,7 +5,6 @@ package jshelpers import ( "fmt" "math" - "syscall/js" ) diff --git a/internal/namespaces/alias/testdata/test-alias-multiple-words.cassette.yaml b/internal/namespaces/alias/testdata/test-alias-multiple-words.cassette.yaml new file mode 100644 index 0000000000..feea9bdc78 --- /dev/null +++ b/internal/namespaces/alias/testdata/test-alias-multiple-words.cassette.yaml @@ -0,0 +1,35 @@ +--- +version: 1 +interactions: +- request: + body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + headers: + Content-Length: + - "109" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 19 Jan 2026 16:34:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a8fa161-5603-48eb-8701-749377b71b8f + status: 401 Unauthorized + code: 401 + duration: "" diff --git a/internal/namespaces/alias/testdata/test-alias-multiple-words.golden b/internal/namespaces/alias/testdata/test-alias-multiple-words.golden index 7709ca5da9..a9c3af955a 100644 --- a/internal/namespaces/alias/testdata/test-alias-multiple-words.golden +++ b/internal/namespaces/alias/testdata/test-alias-multiple-words.golden @@ -38,7 +38,8 @@ DEPRECATED ARGS: [private-ip] List Instances by private_ip FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/internal/namespaces/alias/testdata/test-alias-one-word-aliases.cassette.yaml b/internal/namespaces/alias/testdata/test-alias-one-word-aliases.cassette.yaml new file mode 100644 index 0000000000..5571340e57 --- /dev/null +++ b/internal/namespaces/alias/testdata/test-alias-one-word-aliases.cassette.yaml @@ -0,0 +1,35 @@ +--- +version: 1 +interactions: +- request: + body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + headers: + Content-Length: + - "109" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 19 Jan 2026 16:35:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e1f2f30-24ab-4b4e-af22-97b20809986a + status: 401 Unauthorized + code: 401 + duration: "" diff --git a/internal/namespaces/alias/testdata/test-alias-one-word-aliases.golden b/internal/namespaces/alias/testdata/test-alias-one-word-aliases.golden index 6acf8fdcc9..fffa3024bb 100644 --- a/internal/namespaces/alias/testdata/test-alias-one-word-aliases.golden +++ b/internal/namespaces/alias/testdata/test-alias-one-word-aliases.golden @@ -41,7 +41,8 @@ DEPRECATED ARGS: [private-ip] List Instances by private_ip FLAGS: - -h, --help help for list + -h, --help help for list + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go b/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go index 8566cb7d84..ec7405ae16 100644 --- a/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go +++ b/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go @@ -253,6 +253,13 @@ func appleSiliconServerCreate() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "enable-kext", + Short: `Enable kernel extensions`, + Required: false, + Deprecated: false, + Positional: false, + }, core.ZoneArgSpec(scw.ZoneFrPar3), }, Run: func(ctx context.Context, args any) (i any, e error) { @@ -601,6 +608,13 @@ func appleSiliconServerReinstall() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "enable-kext", + Short: `Enable kernel extensions`, + Required: false, + Deprecated: false, + Positional: false, + }, core.ZoneArgSpec(scw.ZoneFrPar3), }, Run: func(ctx context.Context, args any) (i any, e error) { diff --git a/internal/namespaces/applesilicon/v1alpha1/custom_server.go b/internal/namespaces/applesilicon/v1alpha1/custom_server.go index 4a01925ad0..1ee06e8fb0 100644 --- a/internal/namespaces/applesilicon/v1alpha1/custom_server.go +++ b/internal/namespaces/applesilicon/v1alpha1/custom_server.go @@ -74,7 +74,7 @@ func waitForServerFunc(action int) core.WaitFunc { WaitForServer(&applesilicon.WaitForServerRequest{ Zone: respI.(*applesilicon.Server).Zone, ServerID: respI.(*applesilicon.Server).ID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) diff --git a/internal/namespaces/audit_trail/v1alpha1/audit_trail_cli.go b/internal/namespaces/audit_trail/v1alpha1/audit_trail_cli.go index 11f701b4a5..282793bfce 100644 --- a/internal/namespaces/audit_trail/v1alpha1/audit_trail_cli.go +++ b/internal/namespaces/audit_trail/v1alpha1/audit_trail_cli.go @@ -125,6 +125,10 @@ func auditTrailEventList() *core.Command { "load_balancer_certificate", "sfs_filesystem", "vpc_private_network", + "vpc_vpc", + "vpc_subnet", + "vpc_route", + "vpc_acl", "edge_services_plan", "edge_services_pipeline", "edge_services_dns_stage", @@ -138,6 +142,19 @@ func auditTrailEventList() *core.Command { "s2s_customer_gateway", "s2s_routing_policy", "s2s_connection", + "vpc_gw_gateway", + "vpc_gw_gateway_network", + "vpc_gw_dhcp", + "vpc_gw_dhcp_entry", + "vpc_gw_pat_rule", + "vpc_gw_ip", + "audit_trail_export_job", + "rdb_instance", + "rdb_instance_backup", + "rdb_instance_endpoint", + "rdb_instance_logs", + "rdb_instance_read_replica", + "rdb_instance_snapshot", }, }, { diff --git a/internal/namespaces/baremetal/v1/custom_offer.go b/internal/namespaces/baremetal/v1/custom_offer.go index 97ef69bc5a..390135e72b 100644 --- a/internal/namespaces/baremetal/v1/custom_offer.go +++ b/internal/namespaces/baremetal/v1/custom_offer.go @@ -88,10 +88,13 @@ func serverOfferListBuilder(c *core.Command) *core.Command { client := core.ExtractClient(ctx) baremetalAPI := baremetal.NewAPI(client) - offers, _ := baremetalAPI.ListOffers(req, scw.WithAllPages()) + offers, err := baremetalAPI.ListOffers(req, scw.WithAllPages()) + if err != nil { + return nil, err + } productAPI := productcatalog.NewPublicCatalogAPI(client) - environmentalImpact, _ := productAPI.ListPublicCatalogProducts( + environmentalImpact, err := productAPI.ListPublicCatalogProducts( &productcatalog.PublicCatalogAPIListPublicCatalogProductsRequest{ ProductTypes: []productcatalog.ListPublicCatalogProductsRequestProductType{ productcatalog.ListPublicCatalogProductsRequestProductTypeElasticMetal, @@ -100,6 +103,9 @@ func serverOfferListBuilder(c *core.Command) *core.Command { }, scw.WithAllPages(), ) + if err != nil { + return nil, err + } var unitOfMeasure productcatalog.PublicCatalogProductUnitOfMeasureCountableUnit if req.SubscriptionPeriod == "monthly" { diff --git a/internal/namespaces/baremetal/v1/custom_server.go b/internal/namespaces/baremetal/v1/custom_server.go index 0a3bfb9924..62e64c8afe 100644 --- a/internal/namespaces/baremetal/v1/custom_server.go +++ b/internal/namespaces/baremetal/v1/custom_server.go @@ -57,7 +57,7 @@ func serverWaitCommand() *core.Command { server, err := api.WaitForServer(&baremetal.WaitForServerRequest{ ServerID: args.ServerID, Zone: args.Zone, - Timeout: scw.TimeDurationPtr(args.Timeout), + Timeout: new(args.Timeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -79,7 +79,7 @@ func serverWaitCommand() *core.Command { server, err = api.WaitForServerInstall(&baremetal.WaitForServerInstallRequest{ ServerID: args.ServerID, Zone: args.Zone, - Timeout: scw.TimeDurationPtr(args.Timeout), + Timeout: new(args.Timeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -125,7 +125,7 @@ func serverStartBuilder(c *core.Command) *core.Command { return api.WaitForServer(&baremetal.WaitForServerRequest{ Zone: argsI.(*baremetal.StartServerRequest).Zone, ServerID: respI.(*baremetal.Server).ID, - Timeout: scw.TimeDurationPtr(ServerActionTimeout), + Timeout: new(ServerActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -141,7 +141,7 @@ func serverStopBuilder(c *core.Command) *core.Command { return api.WaitForServer(&baremetal.WaitForServerRequest{ Zone: argsI.(*baremetal.StopServerRequest).Zone, ServerID: respI.(*baremetal.Server).ID, - Timeout: scw.TimeDurationPtr(ServerActionTimeout), + Timeout: new(ServerActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -159,7 +159,7 @@ func serverRebootBuilder(c *core.Command) *core.Command { return api.WaitForServer(&baremetal.WaitForServerRequest{ Zone: argsI.(*baremetal.RebootServerRequest).Zone, ServerID: respI.(*baremetal.Server).ID, - Timeout: scw.TimeDurationPtr(ServerActionTimeout), + Timeout: new(ServerActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/baremetal/v1/custom_server_create.go b/internal/namespaces/baremetal/v1/custom_server_create.go index b75e68548e..19574fa9ad 100644 --- a/internal/namespaces/baremetal/v1/custom_server_create.go +++ b/internal/namespaces/baremetal/v1/custom_server_create.go @@ -101,7 +101,7 @@ func serverCreateBuilder(c *core.Command) *core.Command { return api.WaitForServer(&baremetal.WaitForServerRequest{ Zone: argsI.(*baremetalCreateServerRequestCustom).Zone, ServerID: respI.(*baremetal.Server).ID, - Timeout: scw.TimeDurationPtr(ServerActionTimeout), + Timeout: new(ServerActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/baremetal/v1/custom_server_delete.go b/internal/namespaces/baremetal/v1/custom_server_delete.go index cefd0e4eb7..94fe3c1796 100644 --- a/internal/namespaces/baremetal/v1/custom_server_delete.go +++ b/internal/namespaces/baremetal/v1/custom_server_delete.go @@ -16,7 +16,7 @@ func serverDeleteBuilder(c *core.Command) *core.Command { WaitForServer(&baremetal.WaitForServerRequest{ ServerID: argsI.(*baremetal.DeleteServerRequest).ServerID, Zone: argsI.(*baremetal.DeleteServerRequest).Zone, - Timeout: scw.TimeDurationPtr(ServerActionTimeout), + Timeout: new(ServerActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/namespaces/baremetal/v1/custom_server_install.go b/internal/namespaces/baremetal/v1/custom_server_install.go index 6c22f743fd..84b14e1305 100644 --- a/internal/namespaces/baremetal/v1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1/custom_server_install.go @@ -57,7 +57,7 @@ func serverInstallBuilder(c *core.Command) *core.Command { return api.WaitForServerInstall(&baremetal.WaitForServerInstallRequest{ Zone: argsI.(*baremetalInstallServerRequestCustom).Zone, ServerID: respI.(*baremetal.Server).ID, - Timeout: scw.TimeDurationPtr(ServerActionTimeout), + Timeout: new(ServerActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/block/v1alpha1/custom_snapshot.go b/internal/namespaces/block/v1alpha1/custom_snapshot.go index dbf6ea3967..8daddc27ed 100644 --- a/internal/namespaces/block/v1alpha1/custom_snapshot.go +++ b/internal/namespaces/block/v1alpha1/custom_snapshot.go @@ -45,7 +45,7 @@ func snapshotWaitCommand() *core.Command { WaitForSnapshot(&block.WaitForSnapshotRequest{ Zone: args.Zone, SnapshotID: args.SnapshotID, - Timeout: scw.TimeDurationPtr(args.Timeout), + Timeout: new(args.Timeout), RetryInterval: core.DefaultRetryInterval, TerminalStatus: args.TerminalStatus, diff --git a/internal/namespaces/block/v1alpha1/custom_volume.go b/internal/namespaces/block/v1alpha1/custom_volume.go index ebef628fd3..11705e9d87 100644 --- a/internal/namespaces/block/v1alpha1/custom_volume.go +++ b/internal/namespaces/block/v1alpha1/custom_volume.go @@ -44,7 +44,7 @@ func volumeWaitCommand() *core.Command { return block.NewAPI(core.ExtractClient(ctx)).WaitForVolume(&block.WaitForVolumeRequest{ Zone: args.Zone, VolumeID: args.VolumeID, - Timeout: scw.TimeDurationPtr(args.Timeout), + Timeout: new(args.Timeout), RetryInterval: core.DefaultRetryInterval, TerminalStatus: args.TerminalStatus, diff --git a/internal/namespaces/cockpit/v1/cockpit_cli.go b/internal/namespaces/cockpit/v1/cockpit_cli.go index 96070a0a42..9f7b50622a 100644 --- a/internal/namespaces/cockpit/v1/cockpit_cli.go +++ b/internal/namespaces/cockpit/v1/cockpit_cli.go @@ -556,14 +556,14 @@ The name of the data source will then be used as reference to name the associate { Name: "name", Short: `Data source name`, - Required: false, + Required: true, Deprecated: false, Positional: false, }, { Name: "type", Short: `Data source type`, - Required: false, + Required: true, Deprecated: false, Positional: false, EnumValues: []string{ @@ -682,21 +682,6 @@ func cockpitDataSourceList() *core.Command { // Deprecated: false, ArgsType: reflect.TypeOf(cockpit.RegionalAPIListDataSourcesRequest{}), ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Sort order for data sources in the response`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - "name_asc", - "name_desc", - "type_asc", - "type_desc", - }, - }, core.ProjectIDArgSpec(), { Name: "origin", @@ -724,6 +709,21 @@ func cockpitDataSourceList() *core.Command { "traces", }, }, + { + Name: "order-by", + Short: `Sort order for data sources in the response`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + "type_asc", + "type_desc", + }, + }, core.RegionArgSpec( scw.RegionFrPar, scw.RegionNlAms, @@ -848,7 +848,7 @@ Upon creation, your token's secret key display only once. Make sure that you sav { Name: "name", Short: `Name of the token`, - Required: false, + Required: true, Deprecated: false, Positional: false, }, @@ -899,19 +899,6 @@ You can filter tokens by Project ID and token scopes.`, // Deprecated: false, ArgsType: reflect.TypeOf(cockpit.RegionalAPIListTokensRequest{}), ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order in which to return results`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - "name_asc", - "name_desc", - }, - }, core.ProjectIDArgSpec(), { Name: "token-scopes.{index}", @@ -932,6 +919,19 @@ You can filter tokens by Project ID and token scopes.`, "write_only_traces", }, }, + { + Name: "order-by", + Short: `Order in which to return results`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + }, + }, core.RegionArgSpec( scw.RegionFrPar, scw.RegionNlAms, diff --git a/internal/namespaces/config/commands.go b/internal/namespaces/config/commands.go index ad03f1e5de..3dec727ae9 100644 --- a/internal/namespaces/config/commands.go +++ b/internal/namespaces/config/commands.go @@ -174,11 +174,11 @@ func configGetCommand() *core.Command { // configSetCommand sets a value for the scaleway config func configSetCommand() *core.Command { - allRegions := []string(nil) + allRegions := make([]string, 0, len(scw.AllRegions)) for _, region := range scw.AllRegions { allRegions = append(allRegions, region.String()) } - allZones := []string(nil) + allZones := make([]string, 0, len(scw.AllZones)) for _, zone := range scw.AllZones { allZones = append(allZones, zone.String()) } @@ -887,13 +887,12 @@ func getProfileField(profile *scw.Profile, key string) (reflect.Value, error) { func getProfileKeys() []string { t := reflect.TypeOf(scw.Profile{}) keys := []string{} - for i := range t.NumField() { - field := t.Field(i) + for field := range t.Fields() { switch field.Name { case "APIURL": keys = append(keys, "api-url") default: - keys = append(keys, strcase.ToBashArg(t.Field(i).Name)) + keys = append(keys, strcase.ToBashArg(field.Name)) } } diff --git a/internal/namespaces/config/commands_test.go b/internal/namespaces/config/commands_test.go index 2547449e6b..f5f6d5780f 100644 --- a/internal/namespaces/config/commands_test.go +++ b/internal/namespaces/config/commands_test.go @@ -417,35 +417,35 @@ func beforeFuncCreateConfigFile(c *scw.Config) core.BeforeFunc { func beforeFuncCreateFullConfig() core.BeforeFunc { return beforeFuncCreateConfigFile(&scw.Config{ Profile: scw.Profile{ - AccessKey: scw.StringPtr("SCWXXXXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - APIURL: scw.StringPtr("https://mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWXXXXXXXXXXXXXXXXX"), + SecretKey: new("11111111-1111-1111-1111-111111111111"), + APIURL: new("https://mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("11111111-1111-1111-1111-111111111111"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, Profiles: map[string]*scw.Profile{ "p1": { - AccessKey: scw.StringPtr("SCWP1XXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - APIURL: scw.StringPtr("https://p1-mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWP1XXXXXXXXXXXXXXX"), + SecretKey: new("11111111-1111-1111-1111-111111111111"), + APIURL: new("https://p1-mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("11111111-1111-1111-1111-111111111111"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, "p2": { - AccessKey: scw.StringPtr("SCWP2XXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - APIURL: scw.StringPtr("https://p2-mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWP2XXXXXXXXXXXXXXX"), + SecretKey: new("11111111-1111-1111-1111-111111111111"), + APIURL: new("https://p2-mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("11111111-1111-1111-1111-111111111111"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, }, }) @@ -454,25 +454,25 @@ func beforeFuncCreateFullConfig() core.BeforeFunc { func beforeFuncCreateInvalidConfig() core.BeforeFunc { return beforeFuncCreateConfigFile(&scw.Config{ Profile: scw.Profile{ - AccessKey: scw.StringPtr("invalidAccessKey"), - SecretKey: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - APIURL: scw.StringPtr("https://mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("invalidAccessKey"), + SecretKey: new("11111111-1111-1111-1111-111111111111"), + APIURL: new("https://mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("11111111-1111-1111-1111-111111111111"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, Profiles: map[string]*scw.Profile{ "p1": { - AccessKey: scw.StringPtr("SCWP1XXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr("invalidSecretKey"), - APIURL: scw.StringPtr("https://p1-mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("11111111-1111-1111-1111-111111111111"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWP1XXXXXXXXXXXXXXX"), + SecretKey: new("invalidSecretKey"), + APIURL: new("https://p1-mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("11111111-1111-1111-1111-111111111111"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, }, }) diff --git a/internal/namespaces/container/v1beta1/container_cli.go b/internal/namespaces/container/v1beta1/container_cli.go index 0ac4f68ad1..b572dac3f7 100644 --- a/internal/namespaces/container/v1beta1/container_cli.go +++ b/internal/namespaces/container/v1beta1/container_cli.go @@ -826,7 +826,7 @@ This behavior can be changed by setting the ` + "`" + `redeploy` + "`" + ` field Name: "redeploy", Short: `Defines whether to redeploy failed containers`, Required: false, - Deprecated: false, + Deprecated: true, Positional: false, }, { diff --git a/internal/namespaces/container/v1beta1/custom_container.go b/internal/namespaces/container/v1beta1/custom_container.go index a230f77298..4cab9543a6 100644 --- a/internal/namespaces/container/v1beta1/custom_container.go +++ b/internal/namespaces/container/v1beta1/custom_container.go @@ -36,7 +36,7 @@ func waitForContainer(ctx context.Context, _, respI any) (any, error) { return api.WaitForContainer(&container.WaitForContainerRequest{ ContainerID: c.ID, Region: c.Region, - Timeout: scw.TimeDurationPtr(containerDeployTimeout), + Timeout: new(containerDeployTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/container/v1beta1/custom_deploy.go b/internal/namespaces/container/v1beta1/custom_deploy.go index 9b990d7d2b..82df11bcce 100644 --- a/internal/namespaces/container/v1beta1/custom_deploy.go +++ b/internal/namespaces/container/v1beta1/custom_deploy.go @@ -20,9 +20,9 @@ import ( "github.com/docker/docker/api/types/image" dockerregistry "github.com/docker/docker/api/types/registry" docker "github.com/docker/docker/client" - "github.com/docker/docker/pkg/archive" "github.com/docker/docker/pkg/jsonmessage" "github.com/fatih/color" + "github.com/moby/go-archive" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1/getorcreate" "github.com/scaleway/scaleway-cli/v2/internal/tasks" @@ -38,6 +38,7 @@ type containerDeployRequest struct { Name string Builder string + RunImage string Dockerfile string ForceBuilder bool @@ -67,6 +68,11 @@ func containerDeployCommand() *core.Command { Short: "Builder image to use", Default: core.DefaultValueSetter("paketobuildpacks/builder-jammy-base:latest"), }, + { + Name: "run-image", + Short: "Run image to use", + Default: core.DefaultValueSetter("paketobuildpacks/run-jammy-base:latest"), + }, { Name: "dockerfile", Short: "Path to the Dockerfile", @@ -372,6 +378,7 @@ func DeployStepBuildpackBuildImage( AppPath: data.Args.BuildSource, Builder: data.Args.Builder, Image: tag, + RunImage: data.Args.RunImage, ClearCache: !data.Args.Cache, TrustBuilder: func(string) bool { return true }, }) @@ -469,8 +476,8 @@ func DeployStepCreateContainer( Region: data.Args.Region, ContainerID: targetContainer.ID, RegistryImage: &data.Tag, - Port: scw.Uint32Ptr(data.Args.Port), - Redeploy: scw.BoolPtr(false), + Port: new(data.Args.Port), + Redeploy: new(false), }, scw.WithContext(t.Ctx)) if err != nil { return nil, fmt.Errorf("could not update container: %w", err) diff --git a/internal/namespaces/container/v1beta1/custom_namespace.go b/internal/namespaces/container/v1beta1/custom_namespace.go index 60d0cbab0c..774c897da7 100644 --- a/internal/namespaces/container/v1beta1/custom_namespace.go +++ b/internal/namespaces/container/v1beta1/custom_namespace.go @@ -8,7 +8,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" - "github.com/scaleway/scaleway-sdk-go/scw" ) var ( @@ -34,7 +33,7 @@ func waitForContainerNamespace(ctx context.Context, _, respI any) (any, error) { return api.WaitForNamespace(&container.WaitForNamespaceRequest{ NamespaceID: ns.ID, Region: ns.Region, - Timeout: scw.TimeDurationPtr(containerNamespaceActionTimeout), + Timeout: new(containerNamespaceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -60,7 +59,7 @@ func containerNamespaceDeleteBuilder(c *core.Command) *core.Command { _, err := api.WaitForNamespace(&container.WaitForNamespaceRequest{ NamespaceID: req.NamespaceID, Region: req.Region, - Timeout: scw.TimeDurationPtr(containerNamespaceActionTimeout), + Timeout: new(containerNamespaceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml index 21f47dc57c..5400d33f16 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml @@ -2,26 +2,26 @@ version: 1 interactions: - request: - body: '{"namespaces":[{"id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","name":"app-cli-t-ctnr-deploy-fp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"303c798f-82ab-42f2-bf05-7ce0f3d0e0c9","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-07-08T12:15:39.836627Z","updated_at":"2025-07-08T12:16:11.535723Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=app-cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[{"id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","name":"app-cli-t-ctnr-deploy-fp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"303c798f-82ab-42f2-bf05-7ce0f3d0e0c9","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-07-08T12:15:39.836627Z","updated_at":"2025-07-08T12:16:11.535723Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "625" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:13 GMT + - Mon, 15 Dec 2025 13:27:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -29,7 +29,137 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0827f3d-70d0-42cf-ba9e-97d14340ce3b + - 3690cb84-93fa-4fce-b7d8-1993aa9f992d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:27:15.762510361Z", "updated_at":"2025-12-15T13:27:15.762510361Z", + "vpc_integration_activated":false, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:27:15.762510361Z", "updated_at":"2025-12-15T13:27:15.762510361Z", + "vpc_integration_activated":false, "region":"fr-par"}' + headers: + Content-Length: + - "525" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:27:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 374252a4-bd41-4f2d-b56d-d161de6e21d6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", "updated_at":"2025-12-15T13:27:15.762510Z", + "vpc_integration_activated":false, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/18240f6a-c906-43d5-a628-39908c92a488 + method: GET + response: + body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", "updated_at":"2025-12-15T13:27:15.762510Z", + "vpc_integration_activated":false, "region":"fr-par"}' + headers: + Content-Length: + - "519" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:27:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e36d44f-7bca-4896-879e-6996eb6a2a8e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"0372458e-76e7-425e-b787-2889278838d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", + "updated_at":"2025-12-15T13:27:20.998226Z", "vpc_integration_activated":false, + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/18240f6a-c906-43d5-a628-39908c92a488 + method: GET + response: + body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"0372458e-76e7-425e-b787-2889278838d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", + "updated_at":"2025-12-15T13:27:20.998226Z", "vpc_integration_activated":false, + "region":"fr-par"}' + headers: + Content-Length: + - "607" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:27:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4225c54f-6951-4d4d-9d84-e76a5f8f98f8 status: 200 OK code: 200 duration: "" @@ -48,10 +178,12 @@ interactions: - "2" Cache-Control: - no-cache, no-store, must-revalidate + Content-Length: + - "0" Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 08 Sep 2025 12:20:13 GMT + - Mon, 15 Dec 2025 13:27:30 GMT Docker-Experimental: - "false" Ostype: @@ -59,7 +191,7 @@ interactions: Pragma: - no-cache Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) Swarm: - inactive status: 200 OK @@ -67,675 +199,217 @@ interactions: duration: "" - request: body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e 42a516af16b8\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache + ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 11667ca862c7\\n\"}\r\n{\"stream\":\"Step + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 8ef66367ffd4\\n\"}\r\n{\"stream\":\"Step + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 85d49ddb70ab\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd\"}}\r\n{\"stream\":\"Successfully - built 85d49ddb70ab\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully + built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" form: {} headers: Content-Type: - application/x-tar X-Registry-Config: - bnVsbA== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwappclitctnrdeployfpzayj9zdx%2Fapp-cli-t-ctnr-deploy-fp%3Alatest + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwappclitctnrdeployfpv7kvie1v%2Fapp-cli-t-ctnr-deploy-fp%3Alatest method: POST response: body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e 42a516af16b8\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache + ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 11667ca862c7\\n\"}\r\n{\"stream\":\"Step + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 8ef66367ffd4\\n\"}\r\n{\"stream\":\"Step + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 85d49ddb70ab\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd\"}}\r\n{\"stream\":\"Successfully - built 85d49ddb70ab\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully + built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:13 GMT + - Mon, 15 Dec 2025 13:27:30 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2097152,\"total\":16988973},\"progress\":\"[======\\u003e - \ ] 2.097MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"latest: - digest: sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd - size: 2479\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e + \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] + \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e + \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1486336,\"total\":8669818},\"progress\":\"[========\\u003e + \ ] 1.486MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2665984,\"total\":8669818},\"progress\":\"[===============\\u003e + \ ] 2.666MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e + \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] + \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4053504,\"total\":8669818},\"progress\":\"[=======================\\u003e + \ ] 4.054MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5971968,\"total\":8669818},\"progress\":\"[==================================\\u003e + \ ] 5.972MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e + \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7375360,\"total\":8669818},\"progress\":\"[==========================================\\u003e + \ ] 7.375MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e + \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8376320,\"total\":8669818},\"progress\":\"[================================================\\u003e + \ ] 8.376MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e + \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] + \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5067776,\"total\":41047172},\"progress\":\"[======\\u003e + \ ] 5.068MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6760448,\"total\":41047172},\"progress\":\"[========\\u003e + \ ] 6.76MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9316352,\"total\":41047172},\"progress\":\"[===========\\u003e + \ ] 9.316MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11020288,\"total\":41047172},\"progress\":\"[=============\\u003e + \ ] 11.02MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12724224,\"total\":41047172},\"progress\":\"[===============\\u003e + \ ] 12.72MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14873088,\"total\":41047172},\"progress\":\"[==================\\u003e + \ ] 14.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16587776,\"total\":41047172},\"progress\":\"[====================\\u003e + \ ] 16.59MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18307072,\"total\":41047172},\"progress\":\"[======================\\u003e + \ ] 18.31MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20004864,\"total\":41047172},\"progress\":\"[========================\\u003e + \ ] 20MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22111744,\"total\":41047172},\"progress\":\"[==========================\\u003e + \ ] 22.11MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23821824,\"total\":41047172},\"progress\":\"[=============================\\u003e + \ ] 23.82MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25520128,\"total\":41047172},\"progress\":\"[===============================\\u003e + \ ] 25.52MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27224064,\"total\":41047172},\"progress\":\"[=================================\\u003e + \ ] 27.22MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28912640,\"total\":41047172},\"progress\":\"[===================================\\u003e + \ ] 28.91MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30173184,\"total\":41047172},\"progress\":\"[====================================\\u003e + \ ] 30.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31899136,\"total\":41047172},\"progress\":\"[======================================\\u003e + \ ] 31.9MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33184768,\"total\":41047172},\"progress\":\"[========================================\\u003e + \ ] 33.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34470912,\"total\":41047172},\"progress\":\"[=========================================\\u003e + \ ] 34.47MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e + \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] + \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e + \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] + \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e + \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37013504,\"total\":41047172},\"progress\":\"[=============================================\\u003e + \ ] 37.01MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38727680,\"total\":41047172},\"progress\":\"[===============================================\\u003e + \ ] 38.73MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40873472,\"total\":41047172},\"progress\":\"[=================================================\\u003e + ] 40.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] + \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e + \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1664512,\"total\":4245763},\"progress\":\"[===================\\u003e + \ ] 1.665MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2841600,\"total\":4245763},\"progress\":\"[=================================\\u003e + \ ] 2.842MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3867136,\"total\":4245763},\"progress\":\"[=============================================\\u003e + \ ] 3.867MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] + \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e + \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1174139,\"total\":8442034},\"progress\":\"[======\\u003e + \ ] 1.174MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2721280,\"total\":8442034},\"progress\":\"[================\\u003e + \ ] 2.721MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3999232,\"total\":8442034},\"progress\":\"[=======================\\u003e + \ ] 3.999MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5867008,\"total\":8442034},\"progress\":\"[==================================\\u003e + \ ] 5.867MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7732224,\"total\":8442034},\"progress\":\"[=============================================\\u003e + \ ] 7.732MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] + \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: + digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" form: {} headers: Content-Type: - application/json X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzM2M0NaNVNSTjVZSFFCR1hZIiwicGFzc3dvcmQiOiJhNDIxMTZiNC02MjZiLTQyZWUtYjQ1Yi0wOTVhNDUyMmQ1MjYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3YXBwY2xpdGN0bnJkZXBsb3lmcHpheWo5emR4In0= - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp/push?tag=latest + - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3YXBwY2xpdGN0bnJkZXBsb3lmcHY3a3ZpZTF2In0= + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp/push?tag=latest method: POST response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2097152,\"total\":16988973},\"progress\":\"[======\\u003e - \ ] 2.097MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":16988973},\"progress\":\"[========================\\u003e - \ ] 8.389MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":16988973},\"progress\":\"[=================================\\u003e - \ ] 11.53MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":16988973},\"progress\":\"[=================================================\\u003e - ] 16.78MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"latest: - digest: sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd - size: 2479\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e + \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] + \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e + \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1486336,\"total\":8669818},\"progress\":\"[========\\u003e + \ ] 1.486MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2665984,\"total\":8669818},\"progress\":\"[===============\\u003e + \ ] 2.666MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e + \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] + \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4053504,\"total\":8669818},\"progress\":\"[=======================\\u003e + \ ] 4.054MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5971968,\"total\":8669818},\"progress\":\"[==================================\\u003e + \ ] 5.972MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e + \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7375360,\"total\":8669818},\"progress\":\"[==========================================\\u003e + \ ] 7.375MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e + \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8376320,\"total\":8669818},\"progress\":\"[================================================\\u003e + \ ] 8.376MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e + \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] + \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5067776,\"total\":41047172},\"progress\":\"[======\\u003e + \ ] 5.068MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6760448,\"total\":41047172},\"progress\":\"[========\\u003e + \ ] 6.76MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9316352,\"total\":41047172},\"progress\":\"[===========\\u003e + \ ] 9.316MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11020288,\"total\":41047172},\"progress\":\"[=============\\u003e + \ ] 11.02MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12724224,\"total\":41047172},\"progress\":\"[===============\\u003e + \ ] 12.72MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14873088,\"total\":41047172},\"progress\":\"[==================\\u003e + \ ] 14.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16587776,\"total\":41047172},\"progress\":\"[====================\\u003e + \ ] 16.59MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18307072,\"total\":41047172},\"progress\":\"[======================\\u003e + \ ] 18.31MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20004864,\"total\":41047172},\"progress\":\"[========================\\u003e + \ ] 20MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22111744,\"total\":41047172},\"progress\":\"[==========================\\u003e + \ ] 22.11MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23821824,\"total\":41047172},\"progress\":\"[=============================\\u003e + \ ] 23.82MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25520128,\"total\":41047172},\"progress\":\"[===============================\\u003e + \ ] 25.52MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27224064,\"total\":41047172},\"progress\":\"[=================================\\u003e + \ ] 27.22MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28912640,\"total\":41047172},\"progress\":\"[===================================\\u003e + \ ] 28.91MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30173184,\"total\":41047172},\"progress\":\"[====================================\\u003e + \ ] 30.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31899136,\"total\":41047172},\"progress\":\"[======================================\\u003e + \ ] 31.9MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33184768,\"total\":41047172},\"progress\":\"[========================================\\u003e + \ ] 33.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34470912,\"total\":41047172},\"progress\":\"[=========================================\\u003e + \ ] 34.47MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e + \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] + \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e + \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] + \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e + \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37013504,\"total\":41047172},\"progress\":\"[=============================================\\u003e + \ ] 37.01MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38727680,\"total\":41047172},\"progress\":\"[===============================================\\u003e + \ ] 38.73MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40873472,\"total\":41047172},\"progress\":\"[=================================================\\u003e + ] 40.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] + \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e + \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1664512,\"total\":4245763},\"progress\":\"[===================\\u003e + \ ] 1.665MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2841600,\"total\":4245763},\"progress\":\"[=================================\\u003e + \ ] 2.842MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3867136,\"total\":4245763},\"progress\":\"[=============================================\\u003e + \ ] 3.867MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] + \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e + \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1174139,\"total\":8442034},\"progress\":\"[======\\u003e + \ ] 1.174MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2721280,\"total\":8442034},\"progress\":\"[================\\u003e + \ ] 2.721MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3999232,\"total\":8442034},\"progress\":\"[=======================\\u003e + \ ] 3.999MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5867008,\"total\":8442034},\"progress\":\"[==================================\\u003e + \ ] 5.867MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7732224,\"total\":8442034},\"progress\":\"[=============================================\\u003e + \ ] 7.732MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] + \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: + digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:13 GMT + - Mon, 15 Dec 2025 13:27:30 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=app-cli-t-ctnr-deploy-fp&namespace_id=c0e37f87-8074-43f2-bef1-12c03fa02dc8&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=app-cli-t-ctnr-deploy-fp&namespace_id=18240f6a-c906-43d5-a628-39908c92a488&order_by=created_at_asc&page=1 method: GET response: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:25 GMT + - Mon, 15 Dec 2025 13:27:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -743,33 +417,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fefe4b3-3e7d-41b7-b9ff-e3ea63977e33 + - 7db3b3e4-3410-4d90-ae23-be9c68c22d4f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339658666Z","updated_at":"2025-09-08T12:20:25.339658666Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505366780Z", "updated_at":"2025-12-15T13:27:49.505366780Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339658666Z","updated_at":"2025-09-08T12:20:25.339658666Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505366780Z", "updated_at":"2025-12-15T13:27:49.505366780Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "981" + - "1014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:25 GMT + - Mon, 15 Dec 2025 13:27:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -777,33 +469,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22ce03f2-d0f7-4f8c-8e98-ec10d174b7ee + - 7f061d26-09e5-40ea-8806-6bb26cd22c3e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.524613343Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584030Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/b75c5371-6252-46b9-a957-7a3234d60610 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 method: PATCH response: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.524613343Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584030Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "976" + - "1009" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:25 GMT + - Mon, 15 Dec 2025 13:27:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -811,31 +521,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee559dfa-1cb3-463e-a61b-e770b5626cd4 + - 8a2d265a-2ff6-4daf-8d4b-3d1155a7cee7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.524613Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/b75c5371-6252-46b9-a957-7a3234d60610 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 method: GET response: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.524613Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "973" + - "1006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:25 GMT + - Mon, 15 Dec 2025 13:27:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -843,33 +571,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9684717-aeea-420d-92ed-ad7cdf9dcc84 + - 46b48dd5-156a-4769-b281-af591e60cb1c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.641808689Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353045Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/b75c5371-6252-46b9-a957-7a3234d60610/deploy + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2/deploy method: POST response: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.641808689Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353045Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' + headers: + Content-Length: + - "1009" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:27:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d80e22c7-2065-4d7d-90dc-2ca5fe970032 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 + method: GET + response: + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "976" + - "1006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:25 GMT + - Mon, 15 Dec 2025 13:27:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -877,31 +673,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93ce04ee-59d8-44e0-90c1-65121853bd84 + - f4ed622d-8571-4d0d-bb22-92ced7c31651 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.641809Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:50.156377Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/b75c5371-6252-46b9-a957-7a3234d60610 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 method: GET response: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:25.641809Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:50.156377Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "973" + - "1006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:25 GMT + - Mon, 15 Dec 2025 13:28:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -909,39 +723,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8205798-d856-43ab-9a18-645bc13e27e0 + - 083b2895-07b7-4e25-b409-e702f7c715f8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Invalid - Image architecture. Serverless Containers only support the amd64 architecture, - but the image was built for the following architectures: arm64. Please rebuild - the image for the correct architecture using the `--platform=linux/amd64` Docker - build argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:26.336062Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"ready", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:28:06.399462Z", + "ready_at":"2025-12-15T13:28:06.389050Z", "health_check":{"failure_threshold":30, + "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], + "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/b75c5371-6252-46b9-a957-7a3234d60610 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 method: GET response: - body: '{"id":"b75c5371-6252-46b9-a957-7a3234d60610","name":"app-cli-t-ctnr-deploy-fp","namespace_id":"c0e37f87-8074-43f2-bef1-12c03fa02dc8","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Invalid - Image architecture. Serverless Containers only support the amd64 architecture, - but the image was built for the following architectures: arm64. Please rebuild - the image for the correct architecture using the `--platform=linux/amd64` Docker - build argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpzayj9zdx/app-cli-t-ctnr-deploy-fp:latest","max_concurrency":50,"domain_name":"appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:25.339659Z","updated_at":"2025-09-08T12:20:26.336062Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"ready", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", + "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:28:06.399462Z", + "ready_at":"2025-12-15T13:28:06.389050Z", "health_check":{"failure_threshold":30, + "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], + "args":[], "region":"fr-par"}' headers: Content-Length: - - "1231" + - "1029" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:30 GMT + - Mon, 15 Dec 2025 13:28:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -949,31 +775,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccfe677e-bf17-4306-b8a1-4ac9a371b9e9 + - 1e4c40d0-c08c-470a-a7d0-b4a62d7b70ac status: 200 OK code: 200 duration: "" - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:30 GMT + - Mon, 15 Dec 2025 13:28:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,31 +807,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89789160-ab98-478e-9ed5-f90a1fcfd6aa + - e062b600-2bbc-4bb3-ae00-68ebe1d02cf7 status: 200 OK code: 200 duration: "" - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:30 GMT + - Mon, 15 Dec 2025 13:28:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1013,7 +839,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15bcfad2-06ae-4022-9c96-14f861b7c7f1 + - 09e9bb42-9fff-4579-b114-b4317431c1cc status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden index b4000093a6..a6051f4aa7 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud +Your application is now available at https://appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://appclitctnrdeployfpzayj9zdx-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud\n" +"Your application is now available at https://appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml index 8e968036ab..fb2891d115 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml @@ -2,26 +2,26 @@ version: 1 interactions: - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:30 GMT + - Mon, 15 Dec 2025 13:28:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -29,33 +29,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6a5c36a-97f0-49cc-9041-d065bb5f09ee + - 71079188-bfa9-4867-8a8f-aa6c0d5c3fdc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838197590Z","updated_at":"2025-09-08T12:20:31.838197590Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:28:21.575817193Z", "updated_at":"2025-12-15T13:28:21.575817193Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838197590Z","updated_at":"2025-09-08T12:20:31.838197590Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:28:21.575817193Z", "updated_at":"2025-12-15T13:28:21.575817193Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "506" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:31 GMT + - Mon, 15 Dec 2025 13:28:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -63,31 +73,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98823682-8777-4d8d-829f-f63e4633ee9a + - a772a893-38f6-4a0b-ba3f-97ea49571b96 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:31.838198Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", "updated_at":"2025-12-15T13:28:21.575817Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 method: GET response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:31.838198Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", "updated_at":"2025-12-15T13:28:21.575817Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "500" + - "515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:31 GMT + - Mon, 15 Dec 2025 13:28:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,31 +115,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e79e128-648b-4fae-96df-efdfe8bcc9ea + - ac34a726-1452-4df7-8bdf-0dade5bc3602 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:34.943265Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 method: GET response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:34.943265Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "585" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:36 GMT + - Mon, 15 Dec 2025 13:28:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -127,7 +159,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb767101-b5c7-46ae-b2c0-e3af9f740130 + - ad2bb1c6-5702-429b-a03a-7d705ddd1b72 status: 200 OK code: 200 duration: "" @@ -146,10 +178,12 @@ interactions: - "2" Cache-Control: - no-cache, no-store, must-revalidate + Content-Length: + - "0" Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 08 Sep 2025 12:20:36 GMT + - Mon, 15 Dec 2025 13:28:36 GMT Docker-Experimental: - "false" Ostype: @@ -157,7 +191,7 @@ interactions: Pragma: - no-cache Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) Swarm: - inactive status: 200 OK @@ -165,581 +199,129 @@ interactions: duration: "" - request: body: "{\"stream\":\"Step 1/6 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e 42a516af16b8\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache + ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 11667ca862c7\\n\"}\r\n{\"stream\":\"Step + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/6 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 8ef66367ffd4\\n\"}\r\n{\"stream\":\"Step + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/6 : ARG TEST\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in 16ba49a71d60\\n\"}\r\n{\"stream\":\" ---\\u003e 5163a80c97f7\\n\"}\r\n{\"stream\":\"Step + in 56b52e8fb973\\n\"}\r\n{\"stream\":\" ---\\u003e 0ed3e671d007\\n\"}\r\n{\"stream\":\"Step 5/6 : RUN test -n \\\"$TEST\\\"\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 5629278f629a\\n\"}\r\n{\"stream\":\" ---\\u003e dbc0a75bf248\\n\"}\r\n{\"stream\":\"Step + ---\\u003e Running in 15bf30eabd27\\n\"}\r\n{\"stream\":\" ---\\u003e 95c1f0ebc25c\\n\"}\r\n{\"stream\":\"Step 6/6 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in f2311db07965\\n\"}\r\n{\"stream\":\" ---\\u003e b14290056865\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:b14290056865d75ce81c1ddb419cee5c566a5e4e6a7017e510992abfc548db05\"}}\r\n{\"stream\":\"Successfully - built b14290056865\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" + in 950708c2ac04\\n\"}\r\n{\"stream\":\" ---\\u003e bd828e4ab8ee\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:bd828e4ab8ee3b2a042ec8f8ae46be12d13550e3ee4cbaa3bfe940c06331caef\"}}\r\n{\"stream\":\"Successfully + built bd828e4ab8ee\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" form: {} headers: Content-Type: - application/x-tar X-Registry-Config: - bnVsbA== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?buildargs=%7B%22TEST%22%3A%22thisisatest%22%7D&dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwclitctnrdeploybanaloas4l%2Fcli-t-ctnr-deploy-ba%3Alatest + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?buildargs=%7B%22TEST%22%3A%22thisisatest%22%7D&dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwclitctnrdeploybao7dknudy%2Fcli-t-ctnr-deploy-ba%3Alatest method: POST response: body: "{\"stream\":\"Step 1/6 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e 42a516af16b8\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache + ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 11667ca862c7\\n\"}\r\n{\"stream\":\"Step + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/6 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 8ef66367ffd4\\n\"}\r\n{\"stream\":\"Step + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/6 : ARG TEST\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in 16ba49a71d60\\n\"}\r\n{\"stream\":\" ---\\u003e 5163a80c97f7\\n\"}\r\n{\"stream\":\"Step + in 56b52e8fb973\\n\"}\r\n{\"stream\":\" ---\\u003e 0ed3e671d007\\n\"}\r\n{\"stream\":\"Step 5/6 : RUN test -n \\\"$TEST\\\"\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 5629278f629a\\n\"}\r\n{\"stream\":\" ---\\u003e dbc0a75bf248\\n\"}\r\n{\"stream\":\"Step + ---\\u003e Running in 15bf30eabd27\\n\"}\r\n{\"stream\":\" ---\\u003e 95c1f0ebc25c\\n\"}\r\n{\"stream\":\"Step 6/6 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in f2311db07965\\n\"}\r\n{\"stream\":\" ---\\u003e b14290056865\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:b14290056865d75ce81c1ddb419cee5c566a5e4e6a7017e510992abfc548db05\"}}\r\n{\"stream\":\"Successfully - built b14290056865\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" + in 950708c2ac04\\n\"}\r\n{\"stream\":\" ---\\u003e bd828e4ab8ee\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:bd828e4ab8ee3b2a042ec8f8ae46be12d13550e3ee4cbaa3bfe940c06331caef\"}}\r\n{\"stream\":\"Successfully + built bd828e4ab8ee\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:36 GMT + - Mon, 15 Dec 2025 13:28:36 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"total\":4310785},\"progress\":\"[\\u003e - \ ] 0B/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":16988973},\"progress\":\"[==============================================\\u003e - \ ] 15.73MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":16988973},\"progress\":\"[==============================================\\u003e - \ ] 15.73MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":16988973},\"progress\":\"[==============================================\\u003e - \ ] 15.73MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"latest: - digest: sha256:b14290056865d75ce81c1ddb419cee5c566a5e4e6a7017e510992abfc548db05 - size: 2479\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"latest: + digest: sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a\",\"Size\":2407}}\r\n" form: {} headers: Content-Type: - application/json X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzM2M0NaNVNSTjVZSFFCR1hZIiwicGFzc3dvcmQiOiJhNDIxMTZiNC02MjZiLTQyZWUtYjQ1Yi0wOTVhNDUyMmQ1MjYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3liYW5hbG9hczRsIn0= - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba/push?tag=latest + - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3liYW83ZGtudWR5In0= + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba/push?tag=latest method: POST response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"total\":4310785},\"progress\":\"[\\u003e - \ ] 0B/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4310785},\"progress\":\"[====================================\\u003e - \ ] 3.146MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":16988973},\"progress\":\"[==============================================\\u003e - \ ] 15.73MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":16988973},\"progress\":\"[==============================================\\u003e - \ ] 15.73MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":16988973},\"progress\":\"[==============================================\\u003e - \ ] 15.73MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"latest: - digest: sha256:b14290056865d75ce81c1ddb419cee5c566a5e4e6a7017e510992abfc548db05 - size: 2479\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Mounted + from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"latest: + digest: sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a\",\"Size\":2407}}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:37 GMT + - Mon, 15 Dec 2025 13:28:37 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-ba&namespace_id=777d5d5d-cde4-4cb6-a3ae-518c938a2825&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-ba&namespace_id=eca8273b-ac27-46c9-b983-ae9e4685e626&order_by=created_at_asc&page=1 method: GET response: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:48 GMT + - Mon, 15 Dec 2025 13:28:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -747,33 +329,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e174ef8b-ba20-4a20-a81e-8ae9525de034 + - 6149a77d-cb8e-4dfe-8011-7474e22f63ac status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644286Z","updated_at":"2025-09-08T12:20:48.542644286Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751450Z", "updated_at":"2025-12-15T13:28:49.931751450Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644286Z","updated_at":"2025-09-08T12:20:48.542644286Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751450Z", "updated_at":"2025-12-15T13:28:49.931751450Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "963" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:48 GMT + - Mon, 15 Dec 2025 13:28:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -781,33 +381,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5863a11f-ae9a-4de6-b3cd-95688da65372 + - 80b07a79-a81d-4203-862f-407eb3fc9289 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.740964157Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221421Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/7c40dd23-a821-4e82-b217-3d1791a5e587 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 method: PATCH response: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.740964157Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221421Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "958" + - "991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:48 GMT + - Mon, 15 Dec 2025 13:28:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -815,31 +433,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f54320b0-106c-401f-9abc-0ed8bfa207cb + - a914ffad-dfc8-42e2-b12e-7dee99f10e7a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.740964Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/7c40dd23-a821-4e82-b217-3d1791a5e587 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 method: GET response: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.740964Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "955" + - "988" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:48 GMT + - Mon, 15 Dec 2025 13:28:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -847,33 +483,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32c21247-cc91-4b74-b66d-30fc3d1e610b + - a2ee1a08-f144-48f2-8c93-102cb5a18913 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.867470114Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348184842Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/7c40dd23-a821-4e82-b217-3d1791a5e587/deploy + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049/deploy method: POST response: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.867470114Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348184842Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "958" + - "991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:48 GMT + - Mon, 15 Dec 2025 13:28:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,31 +535,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e949fc87-2506-4726-8a84-4480233aaace + - 4b5e8152-2ec4-44f7-91d1-554d76aad9e7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.867470Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348185Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/7c40dd23-a821-4e82-b217-3d1791a5e587 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 method: GET response: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:48.867470Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348185Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "955" + - "988" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:48 GMT + - Mon, 15 Dec 2025 13:28:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -913,39 +585,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00cade8a-15d0-4781-ab5d-2f458a67d1fc + - 9bf8201b-0852-4559-adb7-40e14d7276f1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Invalid - Image architecture. Serverless Containers only support the amd64 architecture, - but the image was built for the following architectures: arm64. Please rebuild - the image for the correct architecture using the `--platform=linux/amd64` Docker - build argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:49.510652Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.627156Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/7c40dd23-a821-4e82-b217-3d1791a5e587 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 method: GET response: - body: '{"id":"7c40dd23-a821-4e82-b217-3d1791a5e587","name":"cli-t-ctnr-deploy-ba","namespace_id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Invalid - Image architecture. Serverless Containers only support the amd64 architecture, - but the image was built for the following architectures: arm64. Please rebuild - the image for the correct architecture using the `--platform=linux/amd64` Docker - build argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l/cli-t-ctnr-deploy-ba:latest","max_concurrency":50,"domain_name":"clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:20:48.542644Z","updated_at":"2025-09-08T12:20:49.510652Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.627156Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "1213" + - "988" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:53 GMT + - Mon, 15 Dec 2025 13:29:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -953,31 +635,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 893cc7a1-a1ae-4ebd-abca-d42c932c9f4f + - a7af2302-74f9-4833-8b24-397f4f2124ff status: 200 OK code: 200 duration: "" - request: - body: '{"namespaces":[{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:34.943265Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"ready", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:29:06.858332Z", + "ready_at":"2025-12-15T13:29:06.849589Z", "health_check":{"failure_threshold":30, + "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], + "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 method: GET response: - body: '{"namespaces":[{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:34.943265Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' + body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"ready", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:29:06.858332Z", + "ready_at":"2025-12-15T13:29:06.849589Z", "health_check":{"failure_threshold":30, + "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], + "args":[], "region":"fr-par"}' headers: Content-Length: - - "618" + - "1011" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:54 GMT + - Mon, 15 Dec 2025 13:29:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,95 +687,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b2c479b-ff64-4c7a-a086-d577887d0ec3 + - 32f78163-99f4-4303-8832-c5613c80be55 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120953773Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"namespaces":[{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 - method: DELETE - response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120953773Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "591" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:20:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 28cc43ed-35aa-4daf-9703-6b68496d9eb9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 - method: GET - response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:20:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75a455d8-da0e-405e-8330-3e74767a3391 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 method: GET response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"namespaces":[{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' headers: Content-Length: - - "588" + - "634" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:59 GMT + - Mon, 15 Dec 2025 13:29:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,31 +731,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a8a9fbf-4201-4027-a31c-f71af434e5e4 + - b8272e82-bc47-4d12-928c-75737a1ae64f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599003620Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 + method: DELETE response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599003620Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "588" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:04 GMT + - Mon, 15 Dec 2025 13:29:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1113,31 +775,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35e7715c-b02d-40d4-b566-2a58b8f443bb + - f8076057-37fb-4f72-82c2-7ae962da30a3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 method: GET response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "588" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:09 GMT + - Mon, 15 Dec 2025 13:29:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,31 +819,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d1c41eb-efa8-4850-9542-46dae28a38df + - 9912af55-9bdf-4d06-b4b5-408eaeca470d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 method: GET response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "588" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:14 GMT + - Mon, 15 Dec 2025 13:29:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,31 +863,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c230e1-4240-4c1e-a5d0-a6c3e7bd31e4 + - bb8f5f0b-62ac-4d69-bf4a-1303427c2a0e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 method: GET response: - body: '{"id":"777d5d5d-cde4-4cb6-a3ae-518c938a2825","name":"cli-t-ctnr-deploy-ba","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"3dbbdbe3-5e9a-4b8e-a6af-526d502cbd1d","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybanaloas4l","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:20:31.838198Z","updated_at":"2025-09-08T12:20:54.120954Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", + "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "588" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:19 GMT + - Mon, 15 Dec 2025 13:29:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1209,7 +907,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36168d9f-212d-42b0-a8f8-995586be1b87 + - 73a57e19-7370-4579-bea4-03b21d054ea5 status: 200 OK code: 200 duration: "" @@ -1218,8 +916,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/777d5d5d-cde4-4cb6-a3ae-518c938a2825 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 method: GET response: body: '{"message":"Namespace was not found"}' @@ -1231,9 +929,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:24 GMT + - Mon, 15 Dec 2025 13:30:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1241,31 +939,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfb29599-52c7-45fd-be0e-709548e955ec + - f061a43c-a3b5-4156-af4a-844a7bd3ee0c status: 404 Not Found code: 404 duration: "" - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:24 GMT + - Mon, 15 Dec 2025 13:30:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,7 +971,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50df0311-0427-4562-a1ec-012c8e5a4eea + - 7d1a9911-f1be-4c20-9d04-d036ab09ca3f status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden index 114cd600ac..3f66e533be 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud +Your application is now available at https://clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://clitctnrdeploybanaloas4l-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud\n" +"Your application is now available at https://clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml index e30ec25019..a71cd21999 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml @@ -2,26 +2,26 @@ version: 1 interactions: - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:24 GMT + - Mon, 15 Dec 2025 13:30:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -29,33 +29,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9992e11-f8be-4b87-8e84-973367b75261 + - 64db36d4-d1b9-4fd8-be40-9b32bd8cb4b0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583931573Z","updated_at":"2025-09-08T12:21:25.583931573Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:30:07.132876529Z", "updated_at":"2025-12-15T13:30:07.132876529Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583931573Z","updated_at":"2025-09-08T12:21:25.583931573Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:30:07.132876529Z", "updated_at":"2025-12-15T13:30:07.132876529Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "506" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:25 GMT + - Mon, 15 Dec 2025 13:30:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -63,31 +73,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9db91d0-1ede-4b4b-bbfd-9d8e6be95705 + - ed8b4e3d-dc63-4b96-8c52-6d20e67a82b4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:21:25.583932Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", "updated_at":"2025-12-15T13:30:07.132877Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 method: GET response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:21:25.583932Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", "updated_at":"2025-12-15T13:30:07.132877Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "500" + - "515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:25 GMT + - Mon, 15 Dec 2025 13:30:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,31 +115,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c46a9c65-4883-4d04-81f7-4d650ed9e795 + - b206464d-fc04-4a71-9e51-e07222afa9c2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:21:28.035643Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 method: GET response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:21:28.035643Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "585" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:30 GMT + - Mon, 15 Dec 2025 13:30:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -127,7 +159,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a56ec63-31d5-4a07-b4ec-790a1db387ea + - 3f29f661-1b65-4916-89c6-3df67466d7bb status: 200 OK code: 200 duration: "" @@ -146,10 +178,12 @@ interactions: - "2" Cache-Control: - no-cache, no-store, must-revalidate + Content-Length: + - "0" Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 08 Sep 2025 12:21:30 GMT + - Mon, 15 Dec 2025 13:30:22 GMT Docker-Experimental: - "false" Ostype: @@ -157,6757 +191,363 @@ interactions: Pragma: - no-cache Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) Swarm: - inactive status: 200 OK code: 200 duration: "" - request: - body: '{"ID":"975e74fa-53bf-48e6-943d-57166a21cc2f","Containers":9,"ContainersRunning":2,"ContainersPaused":0,"ContainersStopped":7,"Images":13,"Driver":"overlayfs","DriverStatus":[["driver-type","io.containerd.snapshotter.v1"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":77,"OomKillDisable":false,"NGoroutines":106,"SystemTime":"2025-09-08T12:21:30.731629221Z","LoggingDriver":"json-file","CgroupDriver":"cgroupfs","CgroupVersion":"2","NEventsListener":12,"KernelVersion":"6.10.14-linuxkit","OperatingSystem":"Docker - Desktop","OSVersion":"","OSType":"linux","Architecture":"aarch64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true},"hubproxy.docker.internal:5555":{"Mirrors":[],"Name":"hubproxy.docker.internal:5555","Official":false,"Secure":false}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":8218316800,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"http.docker.internal:3128","HttpsProxy":"http.docker.internal:3128","NoProxy":"hubproxy.docker.internal","Name":"docker-desktop","Labels":["com.docker.desktop.address=unix:///Users/rleone/Library/Containers/com.docker.docker/Data/docker-cli.sock"],"ExperimentalBuild":false,"ServerVersion":"28.3.3","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.0\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.4\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.2.5-0-g59923ef\",\"org.opencontainers.runc.version\":\"1.2.5\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.0\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.4\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.2.5-0-g59923ef\",\"org.opencontainers.runc.version\":\"1.2.5\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":false,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"05044ec0a9a75232cad458027ca83437aae3f4da"},"RuncCommit":{"ID":"v1.2.5-0-g59923ef"},"InitCommit":{"ID":"de40ad0"},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"DiscoveredDevices":[{"Source":"cdi","ID":"docker.com/gpu=webgpu"}],"Containerd":{"Address":"/run/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null}' + body: | + {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:22.521471971+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} form: {} headers: {} url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/info method: GET response: - body: '{"ID":"975e74fa-53bf-48e6-943d-57166a21cc2f","Containers":9,"ContainersRunning":2,"ContainersPaused":0,"ContainersStopped":7,"Images":13,"Driver":"overlayfs","DriverStatus":[["driver-type","io.containerd.snapshotter.v1"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":77,"OomKillDisable":false,"NGoroutines":106,"SystemTime":"2025-09-08T12:21:30.731629221Z","LoggingDriver":"json-file","CgroupDriver":"cgroupfs","CgroupVersion":"2","NEventsListener":12,"KernelVersion":"6.10.14-linuxkit","OperatingSystem":"Docker - Desktop","OSVersion":"","OSType":"linux","Architecture":"aarch64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true},"hubproxy.docker.internal:5555":{"Mirrors":[],"Name":"hubproxy.docker.internal:5555","Official":false,"Secure":false}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":8218316800,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"http.docker.internal:3128","HttpsProxy":"http.docker.internal:3128","NoProxy":"hubproxy.docker.internal","Name":"docker-desktop","Labels":["com.docker.desktop.address=unix:///Users/rleone/Library/Containers/com.docker.docker/Data/docker-cli.sock"],"ExperimentalBuild":false,"ServerVersion":"28.3.3","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.0\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.4\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.2.5-0-g59923ef\",\"org.opencontainers.runc.version\":\"1.2.5\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.0\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.4\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.2.5-0-g59923ef\",\"org.opencontainers.runc.version\":\"1.2.5\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":false,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"05044ec0a9a75232cad458027ca83437aae3f4da"},"RuncCommit":{"ID":"v1.2.5-0-g59923ef"},"InitCommit":{"ID":"de40ad0"},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"DiscoveredDevices":[{"Source":"cdi","ID":"docker.com/gpu=webgpu"}],"Containerd":{"Address":"/run/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null}' + body: | + {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:22.521471971+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:30 GMT + - Mon, 15 Dec 2025 13:30:22 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"701f035295c4\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c501d664298a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"e9b0651695e6\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"56978885fa25\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"55da4429b611\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"e11df7931423\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"875a356f58ea\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"4f4fb700ef54\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"686478ccd1a8\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"291e801251ce\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"57c192fae994\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"94b225bdc67e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f1f67c157b63\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"95594c47491a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"2b392e907140\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"3d76c5781478\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"4d2589678569\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6c4f44ffe99d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9404b6072a7e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"534fc96b7944\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Already - exists\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4f4fb700ef54\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4f4fb700ef54\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4729741},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.73MB\",\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4729741,\"total\":4729741},\"progress\":\"[==================================================\\u003e] - \ 4.73MB/4.73MB\",\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11496075},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4510793,\"total\":4510793},\"progress\":\"[==================================================\\u003e] - \ 4.511MB/4.511MB\",\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11496075},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11496075},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e9b0651695e6\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c501d664298a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3068880},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.069MB\",\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11496075},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11496075},\"progress\":\"[=============================================\\u003e - \ ] 10.49MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4730276},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.73MB\",\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":812,\"total\":812},\"progress\":\"[==================================================\\u003e] - \ 812B/812B\",\"id\":\"701f035295c4\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"701f035295c4\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8929683},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8773101},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.773MB\",\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8929683},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8773101},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.773MB\",\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8929683},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19416440},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19416440},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19416440},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"875a356f58ea\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3d76c5781478\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c4f44ffe99d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19416440},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19416440},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"686478ccd1a8\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9404b6072a7e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"57c192fae994\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f1f67c157b63\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19416440},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19416440},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"534fc96b7944\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19416440},\"progress\":\"[=============================================\\u003e - \ ] 17.83MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1665702},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.666MB\",\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1665702},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.666MB\",\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1665702},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.666MB\",\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4123016},\"progress\":\"[============\\u003e - \ ] 1.049MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4123016},\"progress\":\"[============\\u003e - \ ] 1.049MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2178531},\"progress\":\"[================================================\\u003e - \ ] 2.097MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"94b225bdc67e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":24957698},\"progress\":\"[==\\u003e - \ ] 1.049MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11013167},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8929683},\"progress\":\"[==============================================\\u003e - \ ] 8.389MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":24957698},\"progress\":\"[==\\u003e - \ ] 1.049MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11013167},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8929683,\"total\":8929683},\"progress\":\"[==================================================\\u003e] - \ 8.93MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":578,\"total\":578},\"progress\":\"[==================================================\\u003e] - \ 578B/578B\",\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":24957698},\"progress\":\"[==\\u003e - \ ] 1.049MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11013167},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":24957698},\"progress\":\"[====\\u003e - \ ] 2.097MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18443026},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11013167},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":24957698},\"progress\":\"[====\\u003e - \ ] 2.097MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18443026},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11013167},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":24957698},\"progress\":\"[====\\u003e - \ ] 2.097MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18443026},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11013167},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4533150},\"progress\":\"[==============================================\\u003e - \ ] 4.194MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1234816},\"progress\":\"[==========================================\\u003e - \ ] 1.049MB/1.235MB\",\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3022536},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":24957698},\"progress\":\"[======\\u003e - \ ] 3.146MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11013167},\"progress\":\"[==============\\u003e - \ ] 3.146MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4533150},\"progress\":\"[==============================================\\u003e - \ ] 4.194MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19893460},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11013167},\"progress\":\"[==============\\u003e - \ ] 3.146MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19893460},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3022536},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":24957698},\"progress\":\"[======\\u003e - \ ] 3.146MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3022536},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":24957698},\"progress\":\"[======\\u003e - \ ] 3.146MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11013167},\"progress\":\"[==============\\u003e - \ ] 3.146MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":24957698},\"progress\":\"[========\\u003e - \ ] 4.194MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11013167},\"progress\":\"[===================\\u003e - \ ] 4.194MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3022536},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":24957698},\"progress\":\"[========\\u003e - \ ] 4.194MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18443026},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11013167},\"progress\":\"[===================\\u003e - \ ] 4.194MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":24957698},\"progress\":\"[========\\u003e - \ ] 4.194MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18443026},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11013167},\"progress\":\"[===================\\u003e - \ ] 4.194MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18443026},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11013167},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19893460},\"progress\":\"[===============\\u003e - \ ] 6.291MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":24957698},\"progress\":\"[==========\\u003e - \ ] 5.243MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11013167},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19893460},\"progress\":\"[===============\\u003e - \ ] 6.291MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":24957698},\"progress\":\"[==========\\u003e - \ ] 5.243MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11013167},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19893460},\"progress\":\"[===============\\u003e - \ ] 6.291MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":24957698},\"progress\":\"[============\\u003e - \ ] 6.291MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19893460},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":24957698},\"progress\":\"[============\\u003e - \ ] 6.291MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19893460},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":24957698},\"progress\":\"[============\\u003e - \ ] 6.291MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":24957698},\"progress\":\"[==============\\u003e - \ ] 7.34MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18443026},\"progress\":\"[===================\\u003e - \ ] 7.34MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19893460},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":24957698},\"progress\":\"[==============\\u003e - \ ] 7.34MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18443026},\"progress\":\"[===================\\u003e - \ ] 7.34MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19893460},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19893460},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4778125},\"progress\":\"[===========================================\\u003e - \ ] 4.194MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":24957698},\"progress\":\"[==============\\u003e - \ ] 7.34MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18443026},\"progress\":\"[===================\\u003e - \ ] 7.34MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19893460},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4778125},\"progress\":\"[===========================================\\u003e - \ ] 4.194MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18443026},\"progress\":\"[======================\\u003e - \ ] 8.389MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4778125},\"progress\":\"[===========================================\\u003e - \ ] 4.194MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4825088,\"total\":8776512},\"progress\":\"[===========================\\u003e - \ ] 4.825MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18443026},\"progress\":\"[======================\\u003e - \ ] 8.389MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19893460},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18443026},\"progress\":\"[======================\\u003e - \ ] 8.389MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19893460},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4778125,\"total\":4778125},\"progress\":\"[==================================================\\u003e] - \ 4.778MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18443026},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19893460},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19893460},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":24957698},\"progress\":\"[==================\\u003e - \ ] 9.437MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4690441},\"progress\":\"[============================================\\u003e - \ ] 4.194MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18443026},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19893460},\"progress\":\"[============================\\u003e - \ ] 11.53MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":24957698},\"progress\":\"[==================\\u003e - \ ] 9.437MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4690441},\"progress\":\"[============================================\\u003e - \ ] 4.194MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18443026},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19893460},\"progress\":\"[============================\\u003e - \ ] 11.53MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":24957698},\"progress\":\"[=====================\\u003e - \ ] 10.49MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4690441},\"progress\":\"[============================================\\u003e - \ ] 4.194MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18443026},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":24957698},\"progress\":\"[=====================\\u003e - \ ] 10.49MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18443026},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19893460},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19893460},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":24957698},\"progress\":\"[=======================\\u003e - \ ] 11.53MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18443026},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19893460},\"progress\":\"[==================================\\u003e - \ ] 13.63MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19268802},\"progress\":\"[===================\\u003e - \ ] 7.34MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":24957698},\"progress\":\"[=======================\\u003e - \ ] 11.53MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18443026},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8676127},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19268802},\"progress\":\"[===================\\u003e - \ ] 7.34MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":24957698},\"progress\":\"[=========================\\u003e - \ ] 12.58MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18443026},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8676127},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19893460},\"progress\":\"[==================================\\u003e - \ ] 13.63MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11637574},\"progress\":\"[====================================\\u003e - \ ] 8.389MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19268802},\"progress\":\"[===================\\u003e - \ ] 7.34MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":24957698},\"progress\":\"[=========================\\u003e - \ ] 12.58MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18443026},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8676127},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19893460},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11637574},\"progress\":\"[====================================\\u003e - \ ] 8.389MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19268802},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":24957698},\"progress\":\"[===========================\\u003e - \ ] 13.63MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18443026},\"progress\":\"[====================================\\u003e - \ ] 13.63MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8676127},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2150320},\"progress\":\"[================================================\\u003e - \ ] 2.097MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19893460},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19893460},\"progress\":\"[=======================================\\u003e - \ ] 15.73MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8882259},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11637574},\"progress\":\"[====================================\\u003e - \ ] 8.389MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19268802},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":24957698},\"progress\":\"[===========================\\u003e - \ ] 13.63MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18443026},\"progress\":\"[====================================\\u003e - \ ] 13.63MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8676127},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8676127},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19893460},\"progress\":\"[=======================================\\u003e - \ ] 15.73MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11637574},\"progress\":\"[========================================\\u003e - \ ] 9.437MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19268802},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":24957698},\"progress\":\"[=============================\\u003e - \ ] 14.68MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18443026},\"progress\":\"[=======================================\\u003e - \ ] 14.68MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11637574},\"progress\":\"[========================================\\u003e - \ ] 9.437MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19268802},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 8.389MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":24957698},\"progress\":\"[===============================\\u003e - \ ] 15.73MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18443026},\"progress\":\"[=======================================\\u003e - \ ] 14.68MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8676127},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19893460},\"progress\":\"[==========================================\\u003e - \ ] 16.78MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18443026},\"progress\":\"[==========================================\\u003e - \ ] 15.73MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8676127},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19893460},\"progress\":\"[==========================================\\u003e - \ ] 16.78MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11637574},\"progress\":\"[=============================================\\u003e - \ ] 10.49MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19268802},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 8.389MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":5467079},\"progress\":\"[===============================================\\u003e - \ ] 5.243MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":24957698},\"progress\":\"[===============================\\u003e - \ ] 15.73MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19268802},\"progress\":\"[===========================\\u003e - \ ] 10.49MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 8.389MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":24957698},\"progress\":\"[=================================\\u003e - \ ] 16.78MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18443026},\"progress\":\"[==========================================\\u003e - \ ] 15.73MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8676127},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19893460},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11637574},\"progress\":\"[=============================================\\u003e - \ ] 10.49MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8676127},\"progress\":\"[==========================================\\u003e - \ ] 7.34MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19893460},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19268802},\"progress\":\"[===========================\\u003e - \ ] 10.49MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":24957698},\"progress\":\"[===================================\\u003e - \ ] 17.83MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18443026},\"progress\":\"[=============================================\\u003e - \ ] 16.78MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19268802},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":24957698},\"progress\":\"[===================================\\u003e - \ ] 17.83MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18443026},\"progress\":\"[=============================================\\u003e - \ ] 16.78MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8676127},\"progress\":\"[==========================================\\u003e - \ ] 7.34MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":19893460},\"progress\":\"[===============================================\\u003e - \ ] 18.87MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":19893460},\"progress\":\"[===============================================\\u003e - \ ] 18.87MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19268802},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":24957698},\"progress\":\"[=====================================\\u003e - \ ] 18.87MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":18443026},\"progress\":\"[================================================\\u003e - \ ] 17.83MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19268802},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":24957698},\"progress\":\"[=====================================\\u003e - \ ] 18.87MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19268802},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 10.49MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":24957698},\"progress\":\"[=======================================\\u003e - \ ] 19.92MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8776512},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19268802},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 10.49MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":24957698},\"progress\":\"[==========================================\\u003e - \ ] 20.97MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8776512},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19448054},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":33985969},\"progress\":\"[===============\\u003e - \ ] 10.49MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19448054},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19268802},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 10.49MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":24957698},\"progress\":\"[============================================\\u003e - \ ] 22.02MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8776512,\"total\":8776512},\"progress\":\"[==================================================\\u003e] - \ 8.777MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19268802},\"progress\":\"[======================================\\u003e - \ ] 14.68MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 11.53MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":24957698},\"progress\":\"[==============================================\\u003e - \ ] 23.07MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":33985969},\"progress\":\"[===============\\u003e - \ ] 10.49MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18197353},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19448054},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":33985969},\"progress\":\"[===============\\u003e - \ ] 10.49MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18197353},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19448054},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806058},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19268802},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 11.53MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24117248,\"total\":24957698},\"progress\":\"[================================================\\u003e - \ ] 24.12MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19268802},\"progress\":\"[===========================================\\u003e - \ ] 16.78MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 11.53MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21703965},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":33985969},\"progress\":\"[================\\u003e - \ ] 11.53MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18197353},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19448054},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806058},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10253599},\"progress\":\"[========================================\\u003e - \ ] 8.389MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14306296},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18197353},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19448054},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806058},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21638054},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10253599},\"progress\":\"[========================================\\u003e - \ ] 8.389MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19268802},\"progress\":\"[==============================================\\u003e - \ ] 17.83MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 12.58MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21703965},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":33985969},\"progress\":\"[================\\u003e - \ ] 11.53MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21638054},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10253599},\"progress\":\"[========================================\\u003e - \ ] 8.389MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19268802},\"progress\":\"[==============================================\\u003e - \ ] 17.83MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 12.58MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21703965},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":33985969},\"progress\":\"[================\\u003e - \ ] 11.53MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14306296},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18197353},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19448054},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":17806058},\"progress\":\"[=============================\\u003e - \ ] 10.49MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21638054},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10253599},\"progress\":\"[==============================================\\u003e - \ ] 9.437MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 13.63MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21703965},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11013167},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":33985969},\"progress\":\"[==================\\u003e - \ ] 12.58MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14306296},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18197353},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19448054},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":17806058},\"progress\":\"[=============================\\u003e - \ ] 10.49MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21638054},\"progress\":\"[=============================\\u003e - \ ] 12.58MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10253599},\"progress\":\"[==============================================\\u003e - \ ] 9.437MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 13.63MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21703965},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11013167},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":33985969},\"progress\":\"[==================\\u003e - \ ] 12.58MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14306296},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18197353},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19448054},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":17806058},\"progress\":\"[================================\\u003e - \ ] 11.53MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11013167},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":33985969},\"progress\":\"[====================\\u003e - \ ] 13.63MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14306296},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18197353},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19448054},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":17806058},\"progress\":\"[================================\\u003e - \ ] 11.53MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8894811},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14323670},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21638054},\"progress\":\"[=============================\\u003e - \ ] 12.58MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10253599,\"total\":10253599},\"progress\":\"[==================================================\\u003e] - \ 10.25MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 14.68MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21703965},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11013167,\"total\":11013167},\"progress\":\"[==================================================\\u003e] - \ 11.01MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":33985969},\"progress\":\"[====================\\u003e - \ ] 13.63MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14306296},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18197353},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19448054},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":17806058},\"progress\":\"[===================================\\u003e - \ ] 12.58MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8894811},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14323670},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21638054},\"progress\":\"[=============================\\u003e - \ ] 12.58MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 14.68MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21703965},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":33985969},\"progress\":\"[====================\\u003e - \ ] 13.63MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14306296},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18197353},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19448054},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":17806058},\"progress\":\"[===================================\\u003e - \ ] 12.58MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14323670},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21638054},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 15.73MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21703965},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 16.78MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21703965},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":33985969},\"progress\":\"[=====================\\u003e - \ ] 14.68MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18197353},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19448054},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":17806058},\"progress\":\"[======================================\\u003e - \ ] 13.63MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14323670},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21638054},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 16.78MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14321765},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21703965},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":33985969},\"progress\":\"[=====================\\u003e - \ ] 14.68MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18197353},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19448054},\"progress\":\"[=====================================\\u003e - \ ] 14.68MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":17806058},\"progress\":\"[======================================\\u003e - \ ] 13.63MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14323670},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21638054},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":17806058},\"progress\":\"[=========================================\\u003e - \ ] 14.68MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":10981664},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14323670},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21638054},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 17.83MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14321765},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21703965},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":33985969},\"progress\":\"[=======================\\u003e - \ ] 15.73MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":20148427},\"progress\":\"[====================\\u003e - \ ] 8.389MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18197353},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19448054},\"progress\":\"[=====================================\\u003e - \ ] 14.68MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":33985969},\"progress\":\"[=======================\\u003e - \ ] 15.73MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":20148427},\"progress\":\"[====================\\u003e - \ ] 8.389MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18197353},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19448054},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":17806058},\"progress\":\"[============================================\\u003e - \ ] 15.73MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":10981664},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14323670},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21638054},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":129989008},\"progress\":\"[=======\\u003e - \ ] 18.87MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14321765},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21703965},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":17806058},\"progress\":\"[============================================\\u003e - \ ] 15.73MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14323670},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21638054},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":129989008},\"progress\":\"[=======\\u003e - \ ] 18.87MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14321765},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21703965},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":33985969},\"progress\":\"[========================\\u003e - \ ] 16.78MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":20148427},\"progress\":\"[====================\\u003e - \ ] 8.389MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18197353},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19448054},\"progress\":\"[===========================================\\u003e - \ ] 16.78MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21638054},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":129989008},\"progress\":\"[=======\\u003e - \ ] 19.92MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14321765},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21703965},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":33985969},\"progress\":\"[========================\\u003e - \ ] 16.78MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":20148427},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18197353},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19448054},\"progress\":\"[===========================================\\u003e - \ ] 16.78MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18190569},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":17806058},\"progress\":\"[===============================================\\u003e - \ ] 16.78MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820818},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":129989008},\"progress\":\"[========\\u003e - \ ] 20.97MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14321765},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21703965},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":33985969},\"progress\":\"[==========================\\u003e - \ ] 17.83MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":20148427},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19448054},\"progress\":\"[=============================================\\u003e - \ ] 17.83MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18190569},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17806058,\"total\":17806058},\"progress\":\"[==================================================\\u003e] - \ 17.81MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820818},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21638054},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18190569},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820818},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21638054},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":129989008},\"progress\":\"[========\\u003e - \ ] 22.02MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14321765},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21703965},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":33985969},\"progress\":\"[===========================\\u003e - \ ] 18.87MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":20148427},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19448054,\"total\":19448054},\"progress\":\"[==================================================\\u003e] - \ 19.45MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":129989008},\"progress\":\"[========\\u003e - \ ] 23.07MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14321765},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":21703965},\"progress\":\"[===========================================\\u003e - \ ] 18.87MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":33985969},\"progress\":\"[===========================\\u003e - \ ] 18.87MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":20148427},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18190569},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21638054},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24117248,\"total\":129989008},\"progress\":\"[=========\\u003e - \ ] 24.12MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14321765},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21703965},\"progress\":\"[=============================================\\u003e - \ ] 19.92MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":33985969},\"progress\":\"[=============================\\u003e - \ ] 19.92MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":20148427},\"progress\":\"[============================\\u003e - \ ] 11.53MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18190569},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21638054},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21638054},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25165824,\"total\":129989008},\"progress\":\"[=========\\u003e - \ ] 25.17MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14321765},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21703965},\"progress\":\"[=============================================\\u003e - \ ] 19.92MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":33985969},\"progress\":\"[=============================\\u003e - \ ] 19.92MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":20148427},\"progress\":\"[============================\\u003e - \ ] 11.53MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18190569},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26214400,\"total\":129989008},\"progress\":\"[==========\\u003e - \ ] 26.21MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14321765},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21703965,\"total\":21703965},\"progress\":\"[==================================================\\u003e] - \ 21.7MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":33985969},\"progress\":\"[==============================\\u003e - \ ] 20.97MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":20148427},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14353138},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18194533},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18190569},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21638054},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":33985969},\"progress\":\"[================================\\u003e - \ ] 22.02MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":20148427},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14353138},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18194533},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18190569},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":21638054},\"progress\":\"[===========================================\\u003e - \ ] 18.87MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27262976,\"total\":129989008},\"progress\":\"[==========\\u003e - \ ] 27.26MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14321765},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21638054},\"progress\":\"[==============================================\\u003e - \ ] 19.92MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28311552,\"total\":129989008},\"progress\":\"[==========\\u003e - \ ] 28.31MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14321765},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":33985969},\"progress\":\"[================================\\u003e - \ ] 22.02MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":20148427},\"progress\":\"[=================================\\u003e - \ ] 13.63MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14353138},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18194533},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18190569},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21638054},\"progress\":\"[==============================================\\u003e - \ ] 19.92MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30408704,\"total\":129989008},\"progress\":\"[===========\\u003e - \ ] 30.41MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14321765},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":33985969},\"progress\":\"[=================================\\u003e - \ ] 23.07MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":20148427},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14353138},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18194533},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18190569},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14321765},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24117248,\"total\":33985969},\"progress\":\"[===================================\\u003e - \ ] 24.12MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":20148427},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14353138},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18194533},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18190569},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21638054,\"total\":21638054},\"progress\":\"[==================================================\\u003e] - \ 21.64MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31457280,\"total\":129989008},\"progress\":\"[============\\u003e - \ ] 31.46MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14353138},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18194533},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18190569},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32505856,\"total\":129989008},\"progress\":\"[============\\u003e - \ ] 32.51MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25165824,\"total\":33985969},\"progress\":\"[=====================================\\u003e - \ ] 25.17MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":20148427},\"progress\":\"[=======================================\\u003e - \ ] 15.73MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34603008,\"total\":129989008},\"progress\":\"[=============\\u003e - \ ] 34.6MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26214400,\"total\":33985969},\"progress\":\"[======================================\\u003e - \ ] 26.21MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":20148427},\"progress\":\"[=========================================\\u003e - \ ] 16.78MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14353138},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18194533},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18190569},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27262976,\"total\":33985969},\"progress\":\"[========================================\\u003e - \ ] 27.26MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":20148427},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14353138},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18194533},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18190569},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35651584,\"total\":129989008},\"progress\":\"[=============\\u003e - \ ] 35.65MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28311552,\"total\":33985969},\"progress\":\"[=========================================\\u003e - \ ] 28.31MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":20148427},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14353138},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18194533},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":18190569},\"progress\":\"[================================================\\u003e - \ ] 17.83MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37748736,\"total\":129989008},\"progress\":\"[==============\\u003e - \ ] 37.75MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8674271},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39845888,\"total\":129989008},\"progress\":\"[===============\\u003e - \ ] 39.85MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30408704,\"total\":33985969},\"progress\":\"[============================================\\u003e - \ ] 30.41MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":20148427},\"progress\":\"[=================================================\\u003e - ] 19.92MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14353138},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31457280,\"total\":33985969},\"progress\":\"[==============================================\\u003e - \ ] 31.46MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14353138},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8674271},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42991616,\"total\":129989008},\"progress\":\"[================\\u003e - \ ] 42.99MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46137344,\"total\":129989008},\"progress\":\"[=================\\u003e - \ ] 46.14MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31457280,\"total\":33985969},\"progress\":\"[==============================================\\u003e - \ ] 31.46MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8674271},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8674271},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48234496,\"total\":129989008},\"progress\":\"[==================\\u003e - \ ] 48.23MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32505856,\"total\":33985969},\"progress\":\"[===============================================\\u003e - \ ] 32.51MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50331648,\"total\":129989008},\"progress\":\"[===================\\u003e - \ ] 50.33MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18194533},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52428800,\"total\":129989008},\"progress\":\"[====================\\u003e - \ ] 52.43MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18196455},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18194533},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56623104,\"total\":129989008},\"progress\":\"[=====================\\u003e - \ ] 56.62MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18196455},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18194533},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18194533},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60817408,\"total\":129989008},\"progress\":\"[=======================\\u003e - \ ] 60.82MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67108864,\"total\":129989008},\"progress\":\"[=========================\\u003e - \ ] 67.11MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18194533},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68157440,\"total\":129989008},\"progress\":\"[==========================\\u003e - \ ] 68.16MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18194533},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68157440,\"total\":129989008},\"progress\":\"[==========================\\u003e - \ ] 68.16MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18194533},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72876032,\"total\":129989008},\"progress\":\"[============================\\u003e - \ ] 72.88MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18194533},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18196455},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18194533},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78643200,\"total\":129989008},\"progress\":\"[==============================\\u003e - \ ] 78.64MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83886080,\"total\":129989008},\"progress\":\"[================================\\u003e - \ ] 83.89MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18196455},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89231360,\"total\":129989008},\"progress\":\"[==================================\\u003e - \ ] 89.23MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18196455},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18196455},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92274688,\"total\":129989008},\"progress\":\"[===================================\\u003e - \ ] 92.27MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97517568,\"total\":129989008},\"progress\":\"[=====================================\\u003e - \ ] 97.52MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18196455},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18196455},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103809024,\"total\":129989008},\"progress\":\"[=======================================\\u003e - \ ] 103.8MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109051904,\"total\":129989008},\"progress\":\"[=========================================\\u003e - \ ] 109.1MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18196455},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113246208,\"total\":129989008},\"progress\":\"[===========================================\\u003e - \ ] 113.2MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18196455},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18196455},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117440512,\"total\":129989008},\"progress\":\"[=============================================\\u003e - \ ] 117.4MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123731968,\"total\":129989008},\"progress\":\"[===============================================\\u003e - \ ] 123.7MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18196455},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126877696,\"total\":129989008},\"progress\":\"[================================================\\u003e - \ ] 126.9MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18196455},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18196455},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2952583,\"total\":2952583},\"progress\":\"[==================================================\\u003e] - \ 2.953MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129989008,\"total\":129989008},\"progress\":\"[==================================================\\u003e] - \ 130MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806906},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18196455},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4975515},\"progress\":\"[==========================================\\u003e - \ ] 4.194MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10768502},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806906},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18196455},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806906},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4975515},\"progress\":\"[==========================================\\u003e - \ ] 4.194MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10768502},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4975515,\"total\":4975515},\"progress\":\"[==================================================\\u003e] - \ 4.976MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21747525},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10768502},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806906},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806906},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":39354542},\"progress\":\"[=======\\u003e - \ ] 6.291MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21747525},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10768502},\"progress\":\"[========================\\u003e - \ ] 5.243MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21747525},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10768502},\"progress\":\"[=============================\\u003e - \ ] 6.291MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806906},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":39354542},\"progress\":\"[=======\\u003e - \ ] 6.291MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":17806906},\"progress\":\"[=============================\\u003e - \ ] 10.49MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":39354542},\"progress\":\"[=========\\u003e - \ ] 7.34MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21747525},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10768502},\"progress\":\"[=============================\\u003e - \ ] 6.291MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":39354542},\"progress\":\"[=========\\u003e - \ ] 7.34MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21747525},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10768502},\"progress\":\"[==================================\\u003e - \ ] 7.34MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":17806906},\"progress\":\"[================================\\u003e - \ ] 11.53MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":17806906},\"progress\":\"[===================================\\u003e - \ ] 12.58MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":39354542},\"progress\":\"[==========\\u003e - \ ] 8.389MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21747525},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10768502},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":17806906},\"progress\":\"[======================================\\u003e - \ ] 13.63MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":39354542},\"progress\":\"[===========\\u003e - \ ] 9.437MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21747525},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10768502},\"progress\":\"[===========================================\\u003e - \ ] 9.437MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21747525},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":17806906},\"progress\":\"[=========================================\\u003e - \ ] 14.68MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":39354542},\"progress\":\"[=============\\u003e - \ ] 10.49MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21747525},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":17806906},\"progress\":\"[===============================================\\u003e - \ ] 16.78MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":39354542},\"progress\":\"[===============\\u003e - \ ] 12.58MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":39354542},\"progress\":\"[===================\\u003e - \ ] 15.73MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21747525},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":39354542},\"progress\":\"[======================\\u003e - \ ] 17.83MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21747525},\"progress\":\"[========================================\\u003e - \ ] 17.83MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":39354542},\"progress\":\"[=========================\\u003e - \ ] 19.92MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":21747525},\"progress\":\"[===========================================\\u003e - \ ] 18.87MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":39354542},\"progress\":\"[=============================\\u003e - \ ] 23.07MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":21747525},\"progress\":\"[================================================\\u003e - \ ] 20.97MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25165824,\"total\":39354542},\"progress\":\"[===============================\\u003e - \ ] 25.17MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30408704,\"total\":39354542},\"progress\":\"[======================================\\u003e - \ ] 30.41MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35209216,\"total\":39354542},\"progress\":\"[============================================\\u003e - \ ] 35.21MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39354542,\"total\":39354542},\"progress\":\"[==================================================\\u003e] - \ 39.35MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"701f035295c4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c501d664298a\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"56978885fa25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e9b0651695e6\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"875a356f58ea\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e11df7931423\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"94b225bdc67e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3d76c5781478\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2b392e907140\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4d2589678569\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"291e801251ce\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"686478ccd1a8\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9404b6072a7e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c4f44ffe99d\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"57c192fae994\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f1f67c157b63\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"534fc96b7944\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Digest: - sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486\"}\r\n{\"status\":\"Status: - Downloaded newer image for paketobuildpacks/builder-jammy-base:latest\"}\r\n" + body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: + sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a\"}\r\n{\"status\":\"Status: + Image is up to date for paketobuildpacks/builder-jammy-base:latest\"}\r\n" form: {} headers: X-Registry-Auth: - - eyJ1c2VybmFtZSI6InJsZW9uZXNjdyIsInBhc3N3b3JkIjoiZGNrcl9wYXRfYWtmOTRtTldxdzdrajJkSVN5bWc5dVFRVUR3IiwiYXV0aCI6ImNteGxiMjVsYzJOM09tUmphM0pmY0dGMFgyRnJaamswYlU1WGNYYzNhMm95WkVsVGVXMW5PWFZSVVZWRWR3PT0ifQ== + - eyJhdXRoIjoiT2c9PSJ9 url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Fbuilder-jammy-base&tag=latest method: POST response: - body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"701f035295c4\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c501d664298a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"e9b0651695e6\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"56978885fa25\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"55da4429b611\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"e11df7931423\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"875a356f58ea\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"4f4fb700ef54\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"686478ccd1a8\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"291e801251ce\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"57c192fae994\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"94b225bdc67e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f1f67c157b63\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"95594c47491a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"2b392e907140\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"3d76c5781478\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"4d2589678569\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6c4f44ffe99d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"9404b6072a7e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"534fc96b7944\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Already - exists\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4f4fb700ef54\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4f4fb700ef54\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4729741},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.73MB\",\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4729741,\"total\":4729741},\"progress\":\"[==================================================\\u003e] - \ 4.73MB/4.73MB\",\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11496075},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4510793,\"total\":4510793},\"progress\":\"[==================================================\\u003e] - \ 4.511MB/4.511MB\",\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11496075},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11496075},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e9b0651695e6\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c501d664298a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3068880},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.069MB\",\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11496075},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11496075},\"progress\":\"[=============================================\\u003e - \ ] 10.49MB/11.5MB\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4730276},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.73MB\",\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":812,\"total\":812},\"progress\":\"[==================================================\\u003e] - \ 812B/812B\",\"id\":\"701f035295c4\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"701f035295c4\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8929683},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8773101},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.773MB\",\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8929683},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8773101},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.773MB\",\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8929683},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19416440},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19416440},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19416440},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"875a356f58ea\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3d76c5781478\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c4f44ffe99d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19416440},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19416440},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"686478ccd1a8\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9404b6072a7e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"57c192fae994\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f1f67c157b63\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19416440},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19416440},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"534fc96b7944\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19416440},\"progress\":\"[=============================================\\u003e - \ ] 17.83MB/19.42MB\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"55da4429b611\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4533150},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1665702},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.666MB\",\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1665702},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.666MB\",\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1665702},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.666MB\",\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4123016},\"progress\":\"[============\\u003e - \ ] 1.049MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 1.049MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14306296},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3099321},\"progress\":\"[================\\u003e - \ ] 1.049MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1947541},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.948MB\",\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10981664},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14323670},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4123016},\"progress\":\"[============\\u003e - \ ] 1.049MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2178531},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21638054},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3066368},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.066MB\",\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19893460},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":9605460},\"progress\":\"[=====\\u003e - \ ] 1.049MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2178531},\"progress\":\"[================================================\\u003e - \ ] 2.097MB/2.179MB\",\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18443026},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3047406},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18197353},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"94b225bdc67e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e11df7931423\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4018737},\"progress\":\"[=============\\u003e - \ ] 1.049MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21703965},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4533150},\"progress\":\"[=======================\\u003e - \ ] 2.097MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2980719},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8776512},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":33985969},\"progress\":\"[=\\u003e - \ ] 1.049MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8929683},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2018415},\"progress\":\"[=========================\\u003e - \ ] 1.049MB/2.018MB\",\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19893460},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":6067143},\"progress\":\"[========\\u003e - \ ] 1.049MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19448054},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":24957698},\"progress\":\"[==\\u003e - \ ] 1.049MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11013167},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8929683},\"progress\":\"[==============================================\\u003e - \ ] 8.389MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"291e801251ce\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":9605460},\"progress\":\"[==========\\u003e - \ ] 2.097MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4123016},\"progress\":\"[=========================\\u003e - \ ] 2.097MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1743403},\"progress\":\"[==============================\\u003e - \ ] 1.049MB/1.743MB\",\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":19268802},\"progress\":\"[==\\u003e - \ ] 1.049MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":24957698},\"progress\":\"[==\\u003e - \ ] 1.049MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11013167},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8929683,\"total\":8929683},\"progress\":\"[==================================================\\u003e] - \ 8.93MB/8.93MB\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14306296},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":578,\"total\":578},\"progress\":\"[==================================================\\u003e] - \ 578B/578B\",\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8882259},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10981664},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11637574},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4018737},\"progress\":\"[==========================\\u003e - \ ] 2.097MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4778125},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":24957698},\"progress\":\"[==\\u003e - \ ] 1.049MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18443026},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":11013167},\"progress\":\"[====\\u003e - \ ] 1.049MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1821101},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3047406},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":24957698},\"progress\":\"[====\\u003e - \ ] 2.097MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18443026},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11013167},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21638054},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4533150},\"progress\":\"[==================================\\u003e - \ ] 3.146MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":24957698},\"progress\":\"[====\\u003e - \ ] 2.097MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18443026},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11013167},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4123016},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.123MB\",\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2008677},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.009MB\",\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2099006},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.099MB\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982133},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":129989008},\"progress\":\"[\\u003e - \ ] 2.097MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":24957698},\"progress\":\"[====\\u003e - \ ] 2.097MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4690441},\"progress\":\"[===========\\u003e - \ ] 1.049MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21703965},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18443026},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11013167},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4533150},\"progress\":\"[==============================================\\u003e - \ ] 4.194MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19893460},\"progress\":\"[=======\\u003e - \ ] 3.146MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":9605460},\"progress\":\"[================\\u003e - \ ] 3.146MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18197353},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3099321},\"progress\":\"[=================================\\u003e - \ ] 2.097MB/3.099MB\",\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1234816},\"progress\":\"[==========================================\\u003e - \ ] 1.049MB/1.235MB\",\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14323670},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3022536},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2980719},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.981MB\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":24957698},\"progress\":\"[======\\u003e - \ ] 3.146MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8776512},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11013167},\"progress\":\"[==============\\u003e - \ ] 3.146MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":33985969},\"progress\":\"[===\\u003e - \ ] 2.097MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820839},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4533150},\"progress\":\"[==============================================\\u003e - \ ] 4.194MB/4.533MB\",\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19893460},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11013167},\"progress\":\"[==============\\u003e - \ ] 3.146MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19893460},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19448054},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21638054},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3022536},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4018737},\"progress\":\"[=======================================\\u003e - \ ] 3.146MB/4.019MB\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":24957698},\"progress\":\"[======\\u003e - \ ] 3.146MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8894811},\"progress\":\"[=====\\u003e - \ ] 1.049MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":11637574},\"progress\":\"[=========\\u003e - \ ] 2.097MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3022536},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10253599},\"progress\":\"[=====\\u003e - \ ] 1.049MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":19268802},\"progress\":\"[=====\\u003e - \ ] 2.097MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":24957698},\"progress\":\"[======\\u003e - \ ] 3.146MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11013167},\"progress\":\"[==============\\u003e - \ ] 3.146MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14306296},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8882259},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":24957698},\"progress\":\"[========\\u003e - \ ] 4.194MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18443026},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11013167},\"progress\":\"[===================\\u003e - \ ] 4.194MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":9605460},\"progress\":\"[=====================\\u003e - \ ] 4.194MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":6067143},\"progress\":\"[=================\\u003e - \ ] 2.097MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3022536},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.023MB\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2005094},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.005MB\",\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3046535},\"progress\":\"[=================\\u003e - \ ] 1.049MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":24957698},\"progress\":\"[========\\u003e - \ ] 4.194MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21703965},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18443026},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11013167},\"progress\":\"[===================\\u003e - \ ] 4.194MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2135228},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.135MB\",\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2015895},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/2.016MB\",\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4778125},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 3.146MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":24957698},\"progress\":\"[========\\u003e - \ ] 4.194MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18443026},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11013167},\"progress\":\"[===================\\u003e - \ ] 4.194MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":33985969},\"progress\":\"[====\\u003e - \ ] 3.146MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2b392e907140\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19893460},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18194533},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806058},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10981664},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8776512},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18443026},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11013167},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19893460},\"progress\":\"[===============\\u003e - \ ] 6.291MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18197353},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14323670},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21638054},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":24957698},\"progress\":\"[==========\\u003e - \ ] 5.243MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11013167},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":20148427},\"progress\":\"[==\\u003e - \ ] 1.049MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19893460},\"progress\":\"[===============\\u003e - \ ] 6.291MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":9605460},\"progress\":\"[===========================\\u003e - \ ] 5.243MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1940433},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.94MB\",\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8882259},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18190569},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2151359},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.151MB\",\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":11637574},\"progress\":\"[=============\\u003e - \ ] 3.146MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19268802},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":24957698},\"progress\":\"[==========\\u003e - \ ] 5.243MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11013167},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19893460},\"progress\":\"[===============\\u003e - \ ] 6.291MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14353138},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":5467079},\"progress\":\"[=========\\u003e - \ ] 1.049MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":24957698},\"progress\":\"[============\\u003e - \ ] 6.291MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21703965},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14306296},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19893460},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":19448054},\"progress\":\"[========\\u003e - \ ] 3.146MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982133},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":24957698},\"progress\":\"[============\\u003e - \ ] 6.291MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4690441},\"progress\":\"[======================\\u003e - \ ] 2.097MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19893460},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":24957698},\"progress\":\"[============\\u003e - \ ] 6.291MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18443026},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":33985969},\"progress\":\"[======\\u003e - \ ] 4.194MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8676127},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806058},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":11637574},\"progress\":\"[==================\\u003e - \ ] 4.194MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10253599},\"progress\":\"[==========\\u003e - \ ] 2.097MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":129989008},\"progress\":\"[=\\u003e - \ ] 4.194MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3046535},\"progress\":\"[==================================\\u003e - \ ] 2.097MB/3.047MB\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":24957698},\"progress\":\"[==============\\u003e - \ ] 7.34MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":14321765},\"progress\":\"[===\\u003e - \ ] 1.049MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18443026},\"progress\":\"[===================\\u003e - \ ] 7.34MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19893460},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8894811},\"progress\":\"[===========\\u003e - \ ] 2.097MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21638054},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4778125},\"progress\":\"[================================\\u003e - \ ] 3.146MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19268802},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":24957698},\"progress\":\"[==============\\u003e - \ ] 7.34MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18443026},\"progress\":\"[===================\\u003e - \ ] 7.34MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19893460},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8882259},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19893460},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":9605460},\"progress\":\"[================================\\u003e - \ ] 6.291MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18197353},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":6067143},\"progress\":\"[=========================\\u003e - \ ] 3.146MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1661545},\"progress\":\"[===============================\\u003e - \ ] 1.049MB/1.662MB\",\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4778125},\"progress\":\"[===========================================\\u003e - \ ] 4.194MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":24957698},\"progress\":\"[==============\\u003e - \ ] 7.34MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18443026},\"progress\":\"[===================\\u003e - \ ] 7.34MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19893460},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4778125},\"progress\":\"[===========================================\\u003e - \ ] 4.194MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8776512},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18443026},\"progress\":\"[======================\\u003e - \ ] 8.389MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":11637574},\"progress\":\"[======================\\u003e - \ ] 5.243MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4778125},\"progress\":\"[===========================================\\u003e - \ ] 4.194MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820482},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4825088,\"total\":8776512},\"progress\":\"[===========================\\u003e - \ ] 4.825MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18443026},\"progress\":\"[======================\\u003e - \ ] 8.389MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11013167},\"progress\":\"[============================\\u003e - \ ] 6.291MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8676127},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19893460},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2101482},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.101MB\",\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14323670},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":5467079},\"progress\":\"[===================\\u003e - \ ] 2.097MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18443026},\"progress\":\"[======================\\u003e - \ ] 8.389MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14306296},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19893460},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806058},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10981664},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4778125,\"total\":4778125},\"progress\":\"[==================================================\\u003e] - \ 4.778MB/4.778MB\",\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":24957698},\"progress\":\"[================\\u003e - \ ] 8.389MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4690441},\"progress\":\"[=================================\\u003e - \ ] 3.146MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18443026},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19893460},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":19448054},\"progress\":\"[==========\\u003e - \ ] 4.194MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8882259},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19893460},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19268802},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":24957698},\"progress\":\"[==================\\u003e - \ ] 9.437MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4690441},\"progress\":\"[============================================\\u003e - \ ] 4.194MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21703965},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18443026},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":33985969},\"progress\":\"[=======\\u003e - \ ] 5.243MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19893460},\"progress\":\"[============================\\u003e - \ ] 11.53MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18194533},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10253599},\"progress\":\"[===============\\u003e - \ ] 3.146MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 5.243MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":24957698},\"progress\":\"[==================\\u003e - \ ] 9.437MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4690441},\"progress\":\"[============================================\\u003e - \ ] 4.194MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18443026},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":20148427},\"progress\":\"[=====\\u003e - \ ] 2.097MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19893460},\"progress\":\"[============================\\u003e - \ ] 11.53MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1886268},\"progress\":\"[===========================\\u003e - \ ] 1.049MB/1.886MB\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":9605460},\"progress\":\"[======================================\\u003e - \ ] 7.34MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18197353},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18190569},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21638054},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":11637574},\"progress\":\"[===========================\\u003e - \ ] 6.291MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":24957698},\"progress\":\"[=====================\\u003e - \ ] 10.49MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4690441},\"progress\":\"[============================================\\u003e - \ ] 4.194MB/4.69MB\",\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18443026},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":24957698},\"progress\":\"[=====================\\u003e - \ ] 10.49MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"56978885fa25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18443026},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19893460},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806058},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14306296},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19893460},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":6067143},\"progress\":\"[==================================\\u003e - \ ] 4.194MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":19448054},\"progress\":\"[=============\\u003e - \ ] 5.243MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14353138},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8882259},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8894811},\"progress\":\"[=================\\u003e - \ ] 3.146MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19268802},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":24957698},\"progress\":\"[=======================\\u003e - \ ] 11.53MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18443026},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8676127},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19893460},\"progress\":\"[==================================\\u003e - \ ] 13.63MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14323670},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19268802},\"progress\":\"[===================\\u003e - \ ] 7.34MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":5467079},\"progress\":\"[============================\\u003e - \ ] 3.146MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":24957698},\"progress\":\"[=======================\\u003e - \ ] 11.53MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8776512},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21703965},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18443026},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8676127},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10981664},\"progress\":\"[=======================\\u003e - \ ] 5.243MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11637574},\"progress\":\"[===============================\\u003e - \ ] 7.34MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19268802},\"progress\":\"[===================\\u003e - \ ] 7.34MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 6.291MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":24957698},\"progress\":\"[=========================\\u003e - \ ] 12.58MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18443026},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":11013167},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1941956},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.942MB\",\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":33985969},\"progress\":\"[=========\\u003e - \ ] 6.291MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8676127},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19893460},\"progress\":\"[==================================\\u003e - \ ] 13.63MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18197353},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21638054},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11637574},\"progress\":\"[====================================\\u003e - \ ] 8.389MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10253599},\"progress\":\"[====================\\u003e - \ ] 4.194MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19268802},\"progress\":\"[===================\\u003e - \ ] 7.34MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":24957698},\"progress\":\"[=========================\\u003e - \ ] 12.58MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":14321765},\"progress\":\"[=======\\u003e - \ ] 2.097MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18443026},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8676127},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2150320},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19893460},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":9605460},\"progress\":\"[===========================================\\u003e - \ ] 8.389MB/9.605MB\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806058},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11637574},\"progress\":\"[====================================\\u003e - \ ] 8.389MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19268802},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":24957698},\"progress\":\"[===========================\\u003e - \ ] 13.63MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18443026},\"progress\":\"[====================================\\u003e - \ ] 13.63MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8676127},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2150320},\"progress\":\"[================================================\\u003e - \ ] 2.097MB/2.15MB\",\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19893460},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":19448054},\"progress\":\"[================\\u003e - \ ] 6.291MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8882259},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14306296},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19893460},\"progress\":\"[=======================================\\u003e - \ ] 15.73MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8882259},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.882MB\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1946082},\"progress\":\"[==========================\\u003e - \ ] 1.049MB/1.946MB\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11637574},\"progress\":\"[====================================\\u003e - \ ] 8.389MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19268802},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":24957698},\"progress\":\"[===========================\\u003e - \ ] 13.63MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21703965},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18443026},\"progress\":\"[====================================\\u003e - \ ] 13.63MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8676127},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2982186},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":33985969},\"progress\":\"[==========\\u003e - \ ] 7.34MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8676127},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19893460},\"progress\":\"[=======================================\\u003e - \ ] 15.73MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":6067143},\"progress\":\"[===========================================\\u003e - \ ] 5.243MB/6.067MB\",\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18194533},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18190569},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11637574},\"progress\":\"[========================================\\u003e - \ ] 9.437MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19268802},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":129989008},\"progress\":\"[==\\u003e - \ ] 7.34MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":24957698},\"progress\":\"[=============================\\u003e - \ ] 14.68MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18443026},\"progress\":\"[=======================================\\u003e - \ ] 14.68MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18197353},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8894811},\"progress\":\"[=======================\\u003e - \ ] 4.194MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14323670},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11637574},\"progress\":\"[========================================\\u003e - \ ] 9.437MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19268802},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 8.389MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":5467079},\"progress\":\"[======================================\\u003e - \ ] 4.194MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":24957698},\"progress\":\"[===============================\\u003e - \ ] 15.73MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8776512},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18443026},\"progress\":\"[=======================================\\u003e - \ ] 14.68MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8676127},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":20148427},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19893460},\"progress\":\"[==========================================\\u003e - \ ] 16.78MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18443026},\"progress\":\"[==========================================\\u003e - \ ] 15.73MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8676127},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19893460},\"progress\":\"[==========================================\\u003e - \ ] 16.78MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806058},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11637574},\"progress\":\"[=============================================\\u003e - \ ] 10.49MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19268802},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 8.389MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":5467079},\"progress\":\"[===============================================\\u003e - \ ] 5.243MB/5.467MB\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":24957698},\"progress\":\"[===============================\\u003e - \ ] 15.73MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19268802},\"progress\":\"[===========================\\u003e - \ ] 10.49MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 8.389MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":24957698},\"progress\":\"[=================================\\u003e - \ ] 16.78MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18443026},\"progress\":\"[==========================================\\u003e - \ ] 15.73MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8676127},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19893460},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":19448054},\"progress\":\"[==================\\u003e - \ ] 7.34MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21638054},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11637574},\"progress\":\"[=============================================\\u003e - \ ] 10.49MB/11.64MB\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10253599},\"progress\":\"[=========================\\u003e - \ ] 5.243MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8676127},\"progress\":\"[==========================================\\u003e - \ ] 7.34MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19893460},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14353138},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19268802},\"progress\":\"[===========================\\u003e - \ ] 10.49MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":24957698},\"progress\":\"[===================================\\u003e - \ ] 17.83MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21703965},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18443026},\"progress\":\"[=============================================\\u003e - \ ] 16.78MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10981664},\"progress\":\"[============================\\u003e - \ ] 6.291MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19268802},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":24957698},\"progress\":\"[===================================\\u003e - \ ] 17.83MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18443026},\"progress\":\"[=============================================\\u003e - \ ] 16.78MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":33985969},\"progress\":\"[============\\u003e - \ ] 8.389MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8676127},\"progress\":\"[==========================================\\u003e - \ ] 7.34MB/8.676MB\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14306296},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":19893460},\"progress\":\"[===============================================\\u003e - \ ] 18.87MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":19893460},\"progress\":\"[===============================================\\u003e - \ ] 18.87MB/19.89MB\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18197353},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19268802},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":24957698},\"progress\":\"[=====================================\\u003e - \ ] 18.87MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":14321765},\"progress\":\"[==========\\u003e - \ ] 3.146MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":18443026},\"progress\":\"[================================================\\u003e - \ ] 17.83MB/18.44MB\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820134},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.82MB\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18190569},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806058},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8894811},\"progress\":\"[=============================\\u003e - \ ] 5.243MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19268802},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":129989008},\"progress\":\"[===\\u003e - \ ] 9.437MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":24957698},\"progress\":\"[=====================================\\u003e - \ ] 18.87MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8776512},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":11013167},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":20148427},\"progress\":\"[==========\\u003e - \ ] 4.194MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":19448054},\"progress\":\"[=====================\\u003e - \ ] 8.389MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14323670},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21638054},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10253599},\"progress\":\"[==============================\\u003e - \ ] 6.291MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19268802},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 10.49MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":24957698},\"progress\":\"[=======================================\\u003e - \ ] 19.92MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8776512},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21703965},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19268802},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 10.49MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":24957698},\"progress\":\"[==========================================\\u003e - \ ] 20.97MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8776512},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":33985969},\"progress\":\"[=============\\u003e - \ ] 9.437MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14306296},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19448054},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18194533},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":3604943},\"progress\":\"[==============\\u003e - \ ] 1.049MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":33985969},\"progress\":\"[===============\\u003e - \ ] 10.49MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18197353},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19448054},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19268802},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 10.49MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":24957698},\"progress\":\"[============================================\\u003e - \ ] 22.02MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8776512,\"total\":8776512},\"progress\":\"[==================================================\\u003e] - \ 8.777MB/8.777MB\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806058},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19268802},\"progress\":\"[======================================\\u003e - \ ] 14.68MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 11.53MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":24957698},\"progress\":\"[==============================================\\u003e - \ ] 23.07MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2982186},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.982MB\",\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":33985969},\"progress\":\"[===============\\u003e - \ ] 10.49MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18197353},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":19448054},\"progress\":\"[========================\\u003e - \ ] 9.437MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14353138},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":33985969},\"progress\":\"[===============\\u003e - \ ] 10.49MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18197353},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19448054},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806058},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10981664},\"progress\":\"[=================================\\u003e - \ ] 7.34MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10253599},\"progress\":\"[===================================\\u003e - \ ] 7.34MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19268802},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 11.53MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24117248,\"total\":24957698},\"progress\":\"[================================================\\u003e - \ ] 24.12MB/24.96MB\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":14321765},\"progress\":\"[==============\\u003e - \ ] 4.194MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21703965},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19268802},\"progress\":\"[===========================================\\u003e - \ ] 16.78MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 11.53MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21703965},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":33985969},\"progress\":\"[================\\u003e - \ ] 11.53MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14306296},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18197353},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19448054},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18190569},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806058},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8894811},\"progress\":\"[===================================\\u003e - \ ] 6.291MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14323670},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21638054},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10253599},\"progress\":\"[========================================\\u003e - \ ] 8.389MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14306296},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18197353},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":19448054},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806058},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21638054},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10253599},\"progress\":\"[========================================\\u003e - \ ] 8.389MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19268802},\"progress\":\"[==============================================\\u003e - \ ] 17.83MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 12.58MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21703965},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":33985969},\"progress\":\"[================\\u003e - \ ] 11.53MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":20148427},\"progress\":\"[=============\\u003e - \ ] 5.243MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21638054},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10253599},\"progress\":\"[========================================\\u003e - \ ] 8.389MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19268802},\"progress\":\"[==============================================\\u003e - \ ] 17.83MB/19.27MB\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":129989008},\"progress\":\"[====\\u003e - \ ] 12.58MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21703965},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":11013167},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":33985969},\"progress\":\"[================\\u003e - \ ] 11.53MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14306296},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18197353},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19448054},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":17806058},\"progress\":\"[=============================\\u003e - \ ] 10.49MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21638054},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10253599},\"progress\":\"[==============================================\\u003e - \ ] 9.437MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 13.63MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21703965},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11013167},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":33985969},\"progress\":\"[==================\\u003e - \ ] 12.58MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14306296},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18197353},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19448054},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18194533},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":17806058},\"progress\":\"[=============================\\u003e - \ ] 10.49MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":8674271},\"progress\":\"[======\\u003e - \ ] 1.049MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21638054},\"progress\":\"[=============================\\u003e - \ ] 12.58MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10253599},\"progress\":\"[==============================================\\u003e - \ ] 9.437MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 13.63MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14321765},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21703965},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11013167},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":33985969},\"progress\":\"[==================\\u003e - \ ] 12.58MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14306296},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18197353},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":18196455},\"progress\":\"[==\\u003e - \ ] 1.049MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":19448054},\"progress\":\"[=============================\\u003e - \ ] 11.53MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18190569},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":17806058},\"progress\":\"[================================\\u003e - \ ] 11.53MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":8894811},\"progress\":\"[=========================================\\u003e - \ ] 7.34MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14323670},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":11013167},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":33985969},\"progress\":\"[====================\\u003e - \ ] 13.63MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":20148427},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14306296},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18197353},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19448054},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":14353138},\"progress\":\"[==================\\u003e - \ ] 5.243MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":17806058},\"progress\":\"[================================\\u003e - \ ] 11.53MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8894811},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10981664},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14323670},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21638054},\"progress\":\"[=============================\\u003e - \ ] 12.58MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10253599,\"total\":10253599},\"progress\":\"[==================================================\\u003e] - \ 10.25MB/10.25MB\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 14.68MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21703965},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11013167,\"total\":11013167},\"progress\":\"[==================================================\\u003e] - \ 11.01MB/11.01MB\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":33985969},\"progress\":\"[====================\\u003e - \ ] 13.63MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14306296},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18197353},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":19448054},\"progress\":\"[================================\\u003e - \ ] 12.58MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":17806058},\"progress\":\"[===================================\\u003e - \ ] 12.58MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8894811},\"progress\":\"[===============================================\\u003e - \ ] 8.389MB/8.895MB\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14323670},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21638054},\"progress\":\"[=============================\\u003e - \ ] 12.58MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":129989008},\"progress\":\"[=====\\u003e - \ ] 14.68MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21703965},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":33985969},\"progress\":\"[====================\\u003e - \ ] 13.63MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14306296},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.31MB\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18197353},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19448054},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":17806058},\"progress\":\"[===================================\\u003e - \ ] 12.58MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14323670},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21638054},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 15.73MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21703965},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 16.78MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14321765},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21703965},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":33985969},\"progress\":\"[=====================\\u003e - \ ] 14.68MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":17806906},\"progress\":\"[==\\u003e - \ ] 1.049MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18197353},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":39354542},\"progress\":\"[=\\u003e - \ ] 1.049MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":19448054},\"progress\":\"[===================================\\u003e - \ ] 13.63MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18190569},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":17806058},\"progress\":\"[======================================\\u003e - \ ] 13.63MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14323670},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":3604943},\"progress\":\"[=============================\\u003e - \ ] 2.097MB/3.605MB\",\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21638054},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 16.78MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14321765},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21703965},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":33985969},\"progress\":\"[=====================\\u003e - \ ] 14.68MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":20148427},\"progress\":\"[==================\\u003e - \ ] 7.34MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18197353},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19448054},\"progress\":\"[=====================================\\u003e - \ ] 14.68MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18194533},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":17806058},\"progress\":\"[======================================\\u003e - \ ] 13.63MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10981664},\"progress\":\"[==========================================\\u003e - \ ] 9.437MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14323670},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21638054},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":14353138},\"progress\":\"[=====================\\u003e - \ ] 6.291MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":17806058},\"progress\":\"[=========================================\\u003e - \ ] 14.68MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":10981664},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14323670},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21638054},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":129989008},\"progress\":\"[======\\u003e - \ ] 17.83MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14321765},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21703965},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":33985969},\"progress\":\"[=======================\\u003e - \ ] 15.73MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":20148427},\"progress\":\"[====================\\u003e - \ ] 8.389MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18197353},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":19448054},\"progress\":\"[=====================================\\u003e - \ ] 14.68MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":33985969},\"progress\":\"[=======================\\u003e - \ ] 15.73MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":20148427},\"progress\":\"[====================\\u003e - \ ] 8.389MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18197353},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":19448054},\"progress\":\"[========================================\\u003e - \ ] 15.73MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":17806058},\"progress\":\"[============================================\\u003e - \ ] 15.73MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":10981664},\"progress\":\"[===============================================\\u003e - \ ] 10.49MB/10.98MB\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14323670},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21638054},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":129989008},\"progress\":\"[=======\\u003e - \ ] 18.87MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14321765},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21703965},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18190569},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":17806058},\"progress\":\"[============================================\\u003e - \ ] 15.73MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14323670},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.32MB\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":21638054},\"progress\":\"[=================================\\u003e - \ ] 14.68MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":129989008},\"progress\":\"[=======\\u003e - \ ] 18.87MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14321765},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21703965},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":33985969},\"progress\":\"[========================\\u003e - \ ] 16.78MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":20148427},\"progress\":\"[====================\\u003e - \ ] 8.389MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18197353},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19448054},\"progress\":\"[===========================================\\u003e - \ ] 16.78MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21638054},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":129989008},\"progress\":\"[=======\\u003e - \ ] 19.92MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14321765},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21703965},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":33985969},\"progress\":\"[========================\\u003e - \ ] 16.78MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":20148427},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18197353},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.2MB\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":18196455},\"progress\":\"[=====\\u003e - \ ] 2.097MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":19448054},\"progress\":\"[===========================================\\u003e - \ ] 16.78MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18190569},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":17806058},\"progress\":\"[===============================================\\u003e - \ ] 16.78MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":21747525},\"progress\":\"[==\\u003e - \ ] 1.049MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820818},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":129989008},\"progress\":\"[========\\u003e - \ ] 20.97MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14321765},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21703965},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":33985969},\"progress\":\"[==========================\\u003e - \ ] 17.83MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":20148427},\"progress\":\"[=======================\\u003e - \ ] 9.437MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":19448054},\"progress\":\"[=============================================\\u003e - \ ] 17.83MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":14353138},\"progress\":\"[=========================\\u003e - \ ] 7.34MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18194533},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18190569},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17806058,\"total\":17806058},\"progress\":\"[==================================================\\u003e] - \ 17.81MB/17.81MB\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820818},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":21638054},\"progress\":\"[====================================\\u003e - \ ] 15.73MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18190569},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":1820818},\"progress\":\"[============================\\u003e - \ ] 1.049MB/1.821MB\",\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21638054},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":129989008},\"progress\":\"[========\\u003e - \ ] 22.02MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14321765},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21703965},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":33985969},\"progress\":\"[===========================\\u003e - \ ] 18.87MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":20148427},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19448054,\"total\":19448054},\"progress\":\"[==================================================\\u003e] - \ 19.45MB/19.45MB\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":129989008},\"progress\":\"[========\\u003e - \ ] 23.07MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14321765},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":21703965},\"progress\":\"[===========================================\\u003e - \ ] 18.87MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":33985969},\"progress\":\"[===========================\\u003e - \ ] 18.87MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":20148427},\"progress\":\"[==========================\\u003e - \ ] 10.49MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18190569},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":8674271},\"progress\":\"[============\\u003e - \ ] 2.097MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21638054},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24117248,\"total\":129989008},\"progress\":\"[=========\\u003e - \ ] 24.12MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14321765},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21703965},\"progress\":\"[=============================================\\u003e - \ ] 19.92MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":33985969},\"progress\":\"[=============================\\u003e - \ ] 19.92MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":20148427},\"progress\":\"[============================\\u003e - \ ] 11.53MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18190569},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21638054},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21638054},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25165824,\"total\":129989008},\"progress\":\"[=========\\u003e - \ ] 25.17MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14321765},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21703965},\"progress\":\"[=============================================\\u003e - \ ] 19.92MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":33985969},\"progress\":\"[=============================\\u003e - \ ] 19.92MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":20148427},\"progress\":\"[============================\\u003e - \ ] 11.53MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":17806906},\"progress\":\"[=====\\u003e - \ ] 2.097MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":14353138},\"progress\":\"[=============================\\u003e - \ ] 8.389MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18194533},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18190569},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26214400,\"total\":129989008},\"progress\":\"[==========\\u003e - \ ] 26.21MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14321765},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21703965,\"total\":21703965},\"progress\":\"[==================================================\\u003e] - \ 21.7MB/21.7MB\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":33985969},\"progress\":\"[==============================\\u003e - \ ] 20.97MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":20148427},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14353138},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18194533},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18190569},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21638054},\"progress\":\"[=========================================\\u003e - \ ] 17.83MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":33985969},\"progress\":\"[================================\\u003e - \ ] 22.02MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2100204},\"progress\":\"[========================\\u003e - \ ] 1.049MB/2.1MB\",\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":20148427},\"progress\":\"[===============================\\u003e - \ ] 12.58MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":18196455},\"progress\":\"[========\\u003e - \ ] 3.146MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14353138},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18194533},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18190569},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":21638054},\"progress\":\"[===========================================\\u003e - \ ] 18.87MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27262976,\"total\":129989008},\"progress\":\"[==========\\u003e - \ ] 27.26MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14321765},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21638054},\"progress\":\"[==============================================\\u003e - \ ] 19.92MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28311552,\"total\":129989008},\"progress\":\"[==========\\u003e - \ ] 28.31MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14321765},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22020096,\"total\":33985969},\"progress\":\"[================================\\u003e - \ ] 22.02MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":20148427},\"progress\":\"[=================================\\u003e - \ ] 13.63MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":14353138},\"progress\":\"[================================\\u003e - \ ] 9.437MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18194533},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18190569},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":21747525},\"progress\":\"[====\\u003e - \ ] 2.097MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":21638054},\"progress\":\"[==============================================\\u003e - \ ] 19.92MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30408704,\"total\":129989008},\"progress\":\"[===========\\u003e - \ ] 30.41MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14321765},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":33985969},\"progress\":\"[=================================\\u003e - \ ] 23.07MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":20148427},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14353138},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18194533},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18190569},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14321765},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.32MB\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24117248,\"total\":33985969},\"progress\":\"[===================================\\u003e - \ ] 24.12MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":20148427},\"progress\":\"[====================================\\u003e - \ ] 14.68MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":14353138},\"progress\":\"[====================================\\u003e - \ ] 10.49MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18194533},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18190569},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":8674271},\"progress\":\"[==================\\u003e - \ ] 3.146MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21638054,\"total\":21638054},\"progress\":\"[==================================================\\u003e] - \ 21.64MB/21.64MB\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31457280,\"total\":129989008},\"progress\":\"[============\\u003e - \ ] 31.46MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":39354542},\"progress\":\"[==\\u003e - \ ] 2.097MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14353138},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18194533},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18190569},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32505856,\"total\":129989008},\"progress\":\"[============\\u003e - \ ] 32.51MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4d2589678569\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25165824,\"total\":33985969},\"progress\":\"[=====================================\\u003e - \ ] 25.17MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":20148427},\"progress\":\"[=======================================\\u003e - \ ] 15.73MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34603008,\"total\":129989008},\"progress\":\"[=============\\u003e - \ ] 34.6MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26214400,\"total\":33985969},\"progress\":\"[======================================\\u003e - \ ] 26.21MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":20148427},\"progress\":\"[=========================================\\u003e - \ ] 16.78MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14353138},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18194533},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18190569},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27262976,\"total\":33985969},\"progress\":\"[========================================\\u003e - \ ] 27.26MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":20148427},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":14353138},\"progress\":\"[========================================\\u003e - \ ] 11.53MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18194533},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18190569},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35651584,\"total\":129989008},\"progress\":\"[=============\\u003e - \ ] 35.65MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28311552,\"total\":33985969},\"progress\":\"[=========================================\\u003e - \ ] 28.31MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":20148427},\"progress\":\"[============================================\\u003e - \ ] 17.83MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":14353138},\"progress\":\"[===========================================\\u003e - \ ] 12.58MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18194533},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":18190569},\"progress\":\"[================================================\\u003e - \ ] 17.83MB/18.19MB\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":8674271},\"progress\":\"[========================\\u003e - \ ] 4.194MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37748736,\"total\":129989008},\"progress\":\"[==============\\u003e - \ ] 37.75MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8674271},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39845888,\"total\":129989008},\"progress\":\"[===============\\u003e - \ ] 39.85MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30408704,\"total\":33985969},\"progress\":\"[============================================\\u003e - \ ] 30.41MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":20148427},\"progress\":\"[=================================================\\u003e - ] 19.92MB/20.15MB\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":17806906},\"progress\":\"[========\\u003e - \ ] 3.146MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":18196455},\"progress\":\"[===========\\u003e - \ ] 4.194MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14353138},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31457280,\"total\":33985969},\"progress\":\"[==============================================\\u003e - \ ] 31.46MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":14353138},\"progress\":\"[===============================================\\u003e - \ ] 13.63MB/14.35MB\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8674271},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":10768502},\"progress\":\"[====\\u003e - \ ] 1.049MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42991616,\"total\":129989008},\"progress\":\"[================\\u003e - \ ] 42.99MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46137344,\"total\":129989008},\"progress\":\"[=================\\u003e - \ ] 46.14MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31457280,\"total\":33985969},\"progress\":\"[==============================================\\u003e - \ ] 31.46MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":4975515},\"progress\":\"[==========\\u003e - \ ] 1.049MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":8674271},\"progress\":\"[==============================\\u003e - \ ] 5.243MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18194533},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":8674271},\"progress\":\"[====================================\\u003e - \ ] 6.291MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48234496,\"total\":129989008},\"progress\":\"[==================\\u003e - \ ] 48.23MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32505856,\"total\":33985969},\"progress\":\"[===============================================\\u003e - \ ] 32.51MB/33.99MB\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50331648,\"total\":129989008},\"progress\":\"[===================\\u003e - \ ] 50.33MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":18196455},\"progress\":\"[==============\\u003e - \ ] 5.243MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18194533},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":21747525},\"progress\":\"[=======\\u003e - \ ] 3.146MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52428800,\"total\":129989008},\"progress\":\"[====================\\u003e - \ ] 52.43MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18196455},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18194533},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56623104,\"total\":129989008},\"progress\":\"[=====================\\u003e - \ ] 56.62MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":18196455},\"progress\":\"[=================\\u003e - \ ] 6.291MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18194533},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18194533},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60817408,\"total\":129989008},\"progress\":\"[=======================\\u003e - \ ] 60.82MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":17806906},\"progress\":\"[===========\\u003e - \ ] 4.194MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67108864,\"total\":129989008},\"progress\":\"[=========================\\u003e - \ ] 67.11MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18194533},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":8674271},\"progress\":\"[================================================\\u003e - \ ] 8.389MB/8.674MB\",\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68157440,\"total\":129989008},\"progress\":\"[==========================\\u003e - \ ] 68.16MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18194533},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68157440,\"total\":129989008},\"progress\":\"[==========================\\u003e - \ ] 68.16MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18194533},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c9c7a2b325\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72876032,\"total\":129989008},\"progress\":\"[============================\\u003e - \ ] 72.88MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":18196455},\"progress\":\"[====================\\u003e - \ ] 7.34MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18194533},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1048576,\"total\":2952583},\"progress\":\"[=================\\u003e - \ ] 1.049MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18196455},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18194533},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.19MB\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78643200,\"total\":129989008},\"progress\":\"[==============================\\u003e - \ ] 78.64MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83886080,\"total\":129989008},\"progress\":\"[================================\\u003e - \ ] 83.89MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":18196455},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":21747525},\"progress\":\"[=========\\u003e - \ ] 4.194MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89231360,\"total\":129989008},\"progress\":\"[==================================\\u003e - \ ] 89.23MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18196455},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":39354542},\"progress\":\"[===\\u003e - \ ] 3.146MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":18196455},\"progress\":\"[=========================\\u003e - \ ] 9.437MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92274688,\"total\":129989008},\"progress\":\"[===================================\\u003e - \ ] 92.27MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10768502},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97517568,\"total\":129989008},\"progress\":\"[=====================================\\u003e - \ ] 97.52MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18196455},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":18196455},\"progress\":\"[============================\\u003e - \ ] 10.49MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":4975515},\"progress\":\"[=====================\\u003e - \ ] 2.097MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103809024,\"total\":129989008},\"progress\":\"[=======================================\\u003e - \ ] 103.8MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109051904,\"total\":129989008},\"progress\":\"[=========================================\\u003e - \ ] 109.1MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":17806906},\"progress\":\"[==============\\u003e - \ ] 5.243MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18196455},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113246208,\"total\":129989008},\"progress\":\"[===========================================\\u003e - \ ] 113.2MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":18196455},\"progress\":\"[===============================\\u003e - \ ] 11.53MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18196455},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117440512,\"total\":129989008},\"progress\":\"[=============================================\\u003e - \ ] 117.4MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123731968,\"total\":129989008},\"progress\":\"[===============================================\\u003e - \ ] 123.7MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":18196455},\"progress\":\"[==================================\\u003e - \ ] 12.58MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":2952583},\"progress\":\"[===================================\\u003e - \ ] 2.097MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126877696,\"total\":129989008},\"progress\":\"[================================================\\u003e - \ ] 126.9MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":18196455},\"progress\":\"[=====================================\\u003e - \ ] 13.63MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":21747525},\"progress\":\"[============\\u003e - \ ] 5.243MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":17806906},\"progress\":\"[=================\\u003e - \ ] 6.291MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":18196455},\"progress\":\"[========================================\\u003e - \ ] 14.68MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":39354542},\"progress\":\"[=====\\u003e - \ ] 4.194MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2952583,\"total\":2952583},\"progress\":\"[==================================================\\u003e] - \ 2.953MB/2.953MB\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129989008,\"total\":129989008},\"progress\":\"[==================================================\\u003e] - \ 130MB/130MB\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806906},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":18196455},\"progress\":\"[===========================================\\u003e - \ ] 15.73MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":4975515},\"progress\":\"[===============================\\u003e - \ ] 3.146MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145728,\"total\":10768502},\"progress\":\"[==============\\u003e - \ ] 3.146MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4975515},\"progress\":\"[==========================================\\u003e - \ ] 4.194MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10768502},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806906},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":18196455},\"progress\":\"[==============================================\\u003e - \ ] 16.78MB/18.2MB\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":17806906},\"progress\":\"[====================\\u003e - \ ] 7.34MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":4975515},\"progress\":\"[==========================================\\u003e - \ ] 4.194MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":21747525},\"progress\":\"[==============\\u003e - \ ] 6.291MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10768502},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4975515,\"total\":4975515},\"progress\":\"[==================================================\\u003e] - \ 4.976MB/4.976MB\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21747525},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4194304,\"total\":10768502},\"progress\":\"[===================\\u003e - \ ] 4.194MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806906},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":39354542},\"progress\":\"[======\\u003e - \ ] 5.243MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":17806906},\"progress\":\"[=======================\\u003e - \ ] 8.389MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":39354542},\"progress\":\"[=======\\u003e - \ ] 6.291MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":21747525},\"progress\":\"[================\\u003e - \ ] 7.34MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5242880,\"total\":10768502},\"progress\":\"[========================\\u003e - \ ] 5.243MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21747525},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10768502},\"progress\":\"[=============================\\u003e - \ ] 6.291MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":17806906},\"progress\":\"[==========================\\u003e - \ ] 9.437MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":39354542},\"progress\":\"[=======\\u003e - \ ] 6.291MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":17806906},\"progress\":\"[=============================\\u003e - \ ] 10.49MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":39354542},\"progress\":\"[=========\\u003e - \ ] 7.34MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":21747525},\"progress\":\"[===================\\u003e - \ ] 8.389MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":10768502},\"progress\":\"[=============================\\u003e - \ ] 6.291MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":39354542},\"progress\":\"[=========\\u003e - \ ] 7.34MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":21747525},\"progress\":\"[=====================\\u003e - \ ] 9.437MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10768502},\"progress\":\"[==================================\\u003e - \ ] 7.34MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":17806906},\"progress\":\"[================================\\u003e - \ ] 11.53MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":17806906},\"progress\":\"[===================================\\u003e - \ ] 12.58MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":39354542},\"progress\":\"[==========\\u003e - \ ] 8.389MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":21747525},\"progress\":\"[========================\\u003e - \ ] 10.49MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8388608,\"total\":10768502},\"progress\":\"[======================================\\u003e - \ ] 8.389MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":17806906},\"progress\":\"[======================================\\u003e - \ ] 13.63MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":39354542},\"progress\":\"[===========\\u003e - \ ] 9.437MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11534336,\"total\":21747525},\"progress\":\"[==========================\\u003e - \ ] 11.53MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9437184,\"total\":10768502},\"progress\":\"[===========================================\\u003e - \ ] 9.437MB/10.77MB\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":21747525},\"progress\":\"[============================\\u003e - \ ] 12.58MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"95594c47491a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":17806906},\"progress\":\"[=========================================\\u003e - \ ] 14.68MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":39354542},\"progress\":\"[=============\\u003e - \ ] 10.49MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13631488,\"total\":21747525},\"progress\":\"[===============================\\u003e - \ ] 13.63MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":17806906},\"progress\":\"[===============================================\\u003e - \ ] 16.78MB/17.81MB\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12582912,\"total\":39354542},\"progress\":\"[===============\\u003e - \ ] 12.58MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15728640,\"total\":39354542},\"progress\":\"[===================\\u003e - \ ] 15.73MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16777216,\"total\":21747525},\"progress\":\"[======================================\\u003e - \ ] 16.78MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":39354542},\"progress\":\"[======================\\u003e - \ ] 17.83MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17825792,\"total\":21747525},\"progress\":\"[========================================\\u003e - \ ] 17.83MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19922944,\"total\":39354542},\"progress\":\"[=========================\\u003e - \ ] 19.92MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18874368,\"total\":21747525},\"progress\":\"[===========================================\\u003e - \ ] 18.87MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068672,\"total\":39354542},\"progress\":\"[=============================\\u003e - \ ] 23.07MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20971520,\"total\":21747525},\"progress\":\"[================================================\\u003e - \ ] 20.97MB/21.75MB\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25165824,\"total\":39354542},\"progress\":\"[===============================\\u003e - \ ] 25.17MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30408704,\"total\":39354542},\"progress\":\"[======================================\\u003e - \ ] 30.41MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35209216,\"total\":39354542},\"progress\":\"[============================================\\u003e - \ ] 35.21MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39354542,\"total\":39354542},\"progress\":\"[==================================================\\u003e] - \ 39.35MB/39.35MB\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2,\"units\":\"s\"},\"progress\":\"2 - s\",\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"701f035295c4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f8c96f821b83\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c501d664298a\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b674bfe736ee\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f44a8877da5a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"a6c03a1851a1\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"56978885fa25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cf55b7de4d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"95594c47491a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"95594c47491a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"711dc54c2a51\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"fdac1f7d6b9a\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb2e7e743b4e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"730b2ef6ad52\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b9605fa80598\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d9599c7a5a59\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"232ef382c62a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c80904bf9b0f\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e9b0651695e6\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6589ba64d2c9\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"875a356f58ea\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"574d4bb1f605\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b0baadff5508\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6723cc338c21\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f00d4c1d4550\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6930fdca952d\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"11568d0bc07c\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"bb9cb78eb598\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"e11df7931423\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27dd6d591748\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f75884c2fd72\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6cad87efaa07\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"94b225bdc67e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27e544cf3526\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"338f713ca5d1\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d6a55405b7d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9252d5db7601\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"20233d1a150b\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"33f6e7b890f1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ac80ca087bb3\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"19a98aecab5b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6e3286db28b5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8b2d9f736d70\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3d76c5781478\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7d06715269f5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"003b4c7b5345\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ef8ab9ba8e6a\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"46184dc6fe3d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c442be0131bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"8ea2c12f84ca\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3a4bfa1388b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7398dd34c909\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0a3df5278d6e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"55da4429b611\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9a6dc7f27570\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"3bdacfb2fb87\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6659af8d6ff9\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2b392e907140\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"91d8d97a307d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"27208697d5c5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6f9039e33d3a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b70e1eaa11e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"4d2589678569\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"89dae27c73dd\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4d2589678569\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"60e7e0a63750\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"729333aa8d05\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"87af244a2d66\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"ccca3b9b02be\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"b38e880df0a5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"291e801251ce\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1ebdbf629f72\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c0deed25df98\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"686478ccd1a8\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9381ce43653e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"2a2ad8cb6a77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"1cabf22413b5\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9404b6072a7e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"92b6d7cf7fed\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"cdca6b8aca10\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"909e6f1044d1\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"79589c2487f7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"d64ca7a935a0\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"09faabbbffd9\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"9ac865894d36\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6be01752a11c\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fed10e34b2c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"518d24cb298e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c4f44ffe99d\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0049746f3b8\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0fa2a1ff4d56\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"c5e12a4c28ab\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f0b85671a94e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"938abc4629b2\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"efbeafa4d94d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"7aef9d03535a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"57c192fae994\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f1f67c157b63\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"534fc96b7944\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"eec18bb99a23\"}\r\n{\"status\":\"Digest: - sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486\"}\r\n{\"status\":\"Status: - Downloaded newer image for paketobuildpacks/builder-jammy-base:latest\"}\r\n" + body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: + sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a\"}\r\n{\"status\":\"Status: + Image is up to date for paketobuildpacks/builder-jammy-base:latest\"}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:31 GMT + - Mon, 15 Dec 2025 13:30:23 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: body: | - {"Platform":{"Name":"Docker Desktop 4.45.0 (203075)"},"Components":[{"Name":"Engine","Version":"28.3.3","Details":{"ApiVersion":"1.51","Arch":"arm64","BuildTime":"2025-07-25T11:35:32.000000000+00:00","Experimental":"false","GitCommit":"bea959c","GoVersion":"go1.24.5","KernelVersion":"6.10.14-linuxkit","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"1.7.27","Details":{"GitCommit":"05044ec0a9a75232cad458027ca83437aae3f4da"}},{"Name":"runc","Version":"1.2.5","Details":{"GitCommit":"v1.2.5-0-g59923ef"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"28.3.3","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"bea959c","GoVersion":"go1.24.5","Os":"linux","Arch":"arm64","KernelVersion":"6.10.14-linuxkit","BuildTime":"2025-07-25T11:35:32.000000000+00:00"} + {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} form: {} headers: {} url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/version method: GET response: body: | - {"Platform":{"Name":"Docker Desktop 4.45.0 (203075)"},"Components":[{"Name":"Engine","Version":"28.3.3","Details":{"ApiVersion":"1.51","Arch":"arm64","BuildTime":"2025-07-25T11:35:32.000000000+00:00","Experimental":"false","GitCommit":"bea959c","GoVersion":"go1.24.5","KernelVersion":"6.10.14-linuxkit","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"1.7.27","Details":{"GitCommit":"05044ec0a9a75232cad458027ca83437aae3f4da"}},{"Name":"runc","Version":"1.2.5","Details":{"GitCommit":"v1.2.5-0-g59923ef"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"28.3.3","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"bea959c","GoVersion":"go1.24.5","Os":"linux","Arch":"arm64","KernelVersion":"6.10.14-linuxkit","BuildTime":"2025-07-25T11:35:32.000000000+00:00"} + {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} headers: Api-Version: - "1.51" + Content-Length: + - "727" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:59 GMT + - Mon, 15 Dec 2025 13:30:23 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: body: | - {"Id":"sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486","RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486"],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":853817301,"GraphDriver":{"Data":null,"Name":"overlayfs"},"RootFS":{"Type":"layers","Layers":["sha256:90a2bf02e851326fc70d05470553ed33e578342d6e06bfa0cfaf331c4079b7e4","sha256:c2bab01e9d6e90ad01c09ce0ecef66e1473e5dfc09cbb8a686a771be0b6df9fb","sha256:ddeff17ba530c293a4b0d28bb87b14008c81d02fb5d24267414e5dff565fd8c4","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:7b714f94cc9ce53002651e44c7f50bfc2808a192d8f0b8b8f62c78ed9849a33d","sha256:3d41762eaa929e053839783b943426176b6485a64584e2b49e0cf9ea96c1487c","sha256:34ea5aa2132a466c3d2ab1d3ef802e4f7927698c4b6b9fad53dcbc3321041c34","sha256:159ac78f523409fa3c6d235e3bc41b93071f742abbad83a2f5fd8a0308e91581","sha256:0c525ee6423cf14c15c0c9362042f31876dd93363bdb32e6175e50962943966a","sha256:8213569454472636160a04c88c7187282c2eb93f771265910d22a8c5809c1236","sha256:4bf672c07a49118ad2510d2cab894c4105e321dd699fcf0031a1d582609444c4","sha256:72c0622cf73940808e22034178b612daf356465efed763bac900082da37273be","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:1b0c32c8eae94c8286608cddd265145dda5d2bdf2577c8e189f8a373557a038d","sha256:84a208e2c63730eab13557a79036ea326d6cc6525012707f43abcbf4472a89b5","sha256:0af1f95b97e1e9106805ad1349ad2e301abdcf4dc6c92f738f38fb0d7283cc44","sha256:a17239ec851d8274dc728676dbb8db3b8aa84713e8cc61cf702d80e9efb81405","sha256:8b41d55cb106c9dedc09b8a4a338e29d577cd2ddf07d51a83b322264664502ff","sha256:d8a521d69966808a441b40cdebb7973fc311847bdedac9d3df3ae0eda7825af3","sha256:d6d0720e53471deaa2e645a29d151fed8500e60bebb2b1eec307d80576e8d66e","sha256:086fa35b8d75d387972ea6a7871cd1cb62354e3358dfe202ece878a04c7b0a52","sha256:1b8cff24524203d0f99fb87123ec821b501487bc08b2b8c81c4e61431b8ee6dd","sha256:f56b2d64ee5923707ebd6c709fb037f23e09c73cf1ff413749f62b143fc1d80d","sha256:089fdfdf8d41679ecd14d237fc1adc87425ca814435380415c7c42303e09a85e","sha256:22828ade27e23afb78c1dc3cebad750062b93743f480baac4e1baf719c360a9b","sha256:25930ffc5bd5759226e008e6e19661b51bca35428306bc00c8e4a1d228547a70","sha256:9330fc909d7eb4c9d2be01a722226f907f2464f5c606ce2acd9a77ddd8177172","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:ce9a3a48c9ad56ceb3fe1db554ec5e16914570e6a90d2e30b76329b531659e70","sha256:f581e11ab02a4c23bb2cac1908198a09c626623a2e79884f583ad8c3a2da59df","sha256:2fae43446e5edbcda6cb18c138d70079ba34b02fe93fc9dfb81b6da063d4a755","sha256:c03d1e6d1bc5e5619112659ac7ed59b210169b0cc96c8adb4e97b9e355a128c9","sha256:81e495ffac78ba195874b201cc27ecbe5cf50ad7bcaab0e2aad25fba467f0118","sha256:86160cc095dd6ca478352fb9e7599295a33973000821900ee45d295dc270a654","sha256:71f126d14a9304db4f840599f6c5ecef94ce627c29b5317e0f3a9f174df3af47","sha256:ae966d6c54a126c80ecf10aab370e556d3931d2ff0e85dcbfd2586fe56e882fa","sha256:5becc357e9e1b1221fd41999670730654af37293a0c72ee7da660f39cc2b561d","sha256:d3cbc103967d70da9ba66bb8223cbefe16f30a4e5baeb2d3719eee1541c5c570","sha256:7f92ff68b266e8d347f04c4cd560ccbbf4ec415d27486f99b65b24f8a8e9e1d9","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:10f0a34d2257a427925d0310211f62e2fc0ee3b9a157b5295723e9d303f308ac","sha256:5ba32faa69213e0a5159fb3e84c38aa58d9b140f31ffb80c97a79d2b2cad3430","sha256:cba275116a4e880a55fd846b85eda1911a508775b432c2206e87a6e2cf8bbbf3","sha256:21830091a6ae7dcc5c6dc577f4b535c56d8a01b6672fe622245a912749f97ad2","sha256:a895ef586393bd14154c8dea412ca182b881c34959b54464c224a197742b98bc","sha256:0601960eec061828af97cd2510830bea79bfbb350616e384011d5f82375cd677","sha256:c3d9013f39e9b1001eb695c0a08fbe6c5d0ebb78e92e6f5efc4d29ef7c3058a7","sha256:ab3e942eb47b3de6ef76c8bb3d17fa147816dd816f3cd44df1adddfbcc922240","sha256:e68a976e07b2267e7fd653a1b0e066100ad1bc35ee4cb3f297a4330b292325dc","sha256:2666a9db2ac7fffd93b083e09f0d3f3e89ba1d63870ed5ff8383454af7d01dad","sha256:cb32d85fa8004785812d6d077feb779a5d107b6a0bb09b49f6df1a0d20ccfb70","sha256:7017f7e5a95d99c011cb792bb86cbc71fedfcbbebecbddb3ddc85ad903de0e9a","sha256:4898c17387777e8f98af1e1521d6028204cf998bd599d682b19c6654e014443e","sha256:91c5f661e93a69d37db28ae94c2a6c6f6da6ef5282bed2b0e05279aa4f048507","sha256:dab096146b5c2acb46dcf8af656ab0af01c30788565fffb4a2cd8c982bd59d2b","sha256:dcf7dcbbdd166c05f64313a072367e4822f876e7e63389146b5c96a920345bde","sha256:5c3ff33f4f1fe6b8f59bcf98e67138338c0aae3ebb135c518a00929dd319de88","sha256:477de3c6d0e4cbd209fdcae219d53950949a762052994a1a7003b9b98a6d45d1","sha256:c7d469ede07c6eb9612af378eee69428334f98c311febbd3977d6531b533ec50","sha256:fad44e65a5ee84bfc8d538507fac7c9c05412544f0eedde9f846d6bde9281321","sha256:561e5f150a7b33bc8206159fa160e0bbf833dc8c0cbced82f764c79d0c8e2b28","sha256:f020af78df8aaaa276241ee567647ca6f6513014feac840804c7696484093b86","sha256:a4709de5c648e83ff5be0386bc82c1cafb9342153280fea943ab8e95d7eafe97","sha256:0d983845b06fe8bbbed668d003ae7c2efa648d311d66b1de404f70e69171b782","sha256:a6005e682ddccb3d4e925433537377df249f1f873fbf41a8ba6ed8657bf22902","sha256:bc947722860c52caeea43cb632c38e2bd482e883ca38ad25180be958ab262f8d","sha256:dce09ae87e76b9e2ff0e94b175257aa039512104e3f0845a7ea2135d4eb6ea89","sha256:9e32f99daa8588be8ae1304c2a04d1c0c78b732c5e506eb1fb97578cc98a3e69","sha256:ad93a6f79a8c99c9d6eb72c1b1faa7133c00c608fdec821995fe98986efa0601","sha256:52a22366cd058d49661db853988216a29a43fa32195dc2086bb3566219953639","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:9ac9d0eb434127cbac17d5af30f64170742c90bfce44e2aed8b0317552aac9f0","sha256:13f8c35e46add8222603831ef8c873c8c66bfd570c9811dead6bf083ca87c463","sha256:815c88629df3ddddc2cc6c1086a2fd01cec5a65cbc90af6a88bac0065a108df9","sha256:345e0168fe7afcf17ece25615d4f96d9d3e17323ef47da5a744830ad95ae03b5","sha256:45707ef2e5d9a147263816b6cff41729f0a0e35b2b0cfc4013adb9bd8d2cfea7","sha256:ad9ce1fd8fa2e7124e434afd06581310b28e56a72d05df7e40336f20e32b3716","sha256:088a9c6b5f726362b79c25ffddba57cbfff47bf852f7597795b4315c147e9ea2","sha256:be9bd9ea5e8b0bb53abf642cbc1bd583df82ac4a31ebc20b9d1d9fdbb4ebdd39","sha256:bb3a02d034f281ea5d3191c427d744bd90709064fface527cf72f7a71f5a4147","sha256:e37dc22e160349262edb75139c90fcac1de080516be75e6983ba502b33be55cf","sha256:84cbab2bf0e7e3901be3870a4e1dde3877a16309c3ae1607610794aadfbd3624","sha256:45b767e8e7563e2ad517d9df49865ce99674d32820a7173a11e3a9c28fc37eef","sha256:f42a1f30abd7e6cd933f04ae5709bc87f8a464a097972a03635e90cee0abdebd","sha256:ff1fb171820804c6c00b3e5424601c0ffd4f3aca47abcbaeccf0fcd93fac9be9","sha256:93a961ae68b8850e7f261f3d31a0331026bcfae5f18de19b4929af5a19548ee6","sha256:3f015c08571054e10d2b7d34a33fc09d6a440455f16164b8c6528f8c6ddb85b9","sha256:3d3ebe9adf873cccfc9aae8b6f0a4d51696b7495dac1a06e84a19b2f22be85db","sha256:86f77b1ec20929d5b638cca759fc64e99d02e584da7fbbf9215c7d8d6fba8e2f","sha256:e8dbd2fa24cadb77838e567e6fbb072b21f642ba30dc66655db7cf53e46ea3ce","sha256:609f27040556f3f83b5eac9cc6c24d03330d9c2830872498d21563000432038d","sha256:98ca92e980b9b2200e07cb7f965b754a64f1acb27107d8186b807eddf309a5f7","sha256:86a57e6ef66e187c50a5fff15118d623ab6159a2b3d20a51775bfce3b6a17c00","sha256:36cc67f9bbb65f84857ad786581524ee17939cdfe0a6e2d2ed406120c8655e7b","sha256:0ca88a875c231977bd9e5ccd0e7fe2b6728d57125dcdbd40e9bb09d1a29ce5c7","sha256:e363c8e2e172191f441bc43f28ecb8c478e5f62ad4d1de33402a84da08a80912","sha256:991016f4b3301e3c9ee0a00551148466c5577aa429a1be15346f4fa1e8ba57f8","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"2025-09-08T12:21:59.208807971Z"},"Descriptor":{"mediaType":"application/vnd.docker.distribution.manifest.v2+json","digest":"sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486","size":21393},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.1.6\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.0.22\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.0.16\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.0.12\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.7.47\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.2\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.3.53\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.3\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.16.12\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.0.61\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.2.40\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.7.14\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.0.69\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.2\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.3\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"11.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"5.37.1\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.13.3\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"7.19.5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.20.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.16.3\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.19.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.33.4\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"18.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.6.3\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"5.26.2\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"5.37.1\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.9.6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.13.3\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"9.4.3\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"7.19.5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.1.6\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.20.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.19.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.33.4\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.3.2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.32.0\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.22.0\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.0\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.0\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.6\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.14\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.25\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.8.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.7.2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.7.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.17.15\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"4.1.11\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.11\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.56\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.51\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.24\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.56\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.51\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.54\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"1.3.15\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.0.9\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"2.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"0.7.66\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"0.18.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"0.2.59\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.13\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.38.2+git-f1c347c.build-6533\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.6.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3d41762eaa929e053839783b943426176b6485a64584e2b49e0cf9ea96c1487c\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.13.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:34ea5aa2132a466c3d2ab1d3ef802e4f7927698c4b6b9fad53dcbc3321041c34\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"5.26.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:159ac78f523409fa3c6d235e3bc41b93071f742abbad83a2f5fd8a0308e91581\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.2.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0c525ee6423cf14c15c0c9362042f31876dd93363bdb32e6175e50962943966a\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:8213569454472636160a04c88c7187282c2eb93f771265910d22a8c5809c1236\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:4bf672c07a49118ad2510d2cab894c4105e321dd699fcf0031a1d582609444c4\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:72c0622cf73940808e22034178b612daf356465efed763bac900082da37273be\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.8.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1b0c32c8eae94c8286608cddd265145dda5d2bdf2577c8e189f8a373557a038d\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.15.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:84a208e2c63730eab13557a79036ea326d6cc6525012707f43abcbf4472a89b5\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0af1f95b97e1e9106805ad1349ad2e301abdcf4dc6c92f738f38fb0d7283cc44\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.17.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a17239ec851d8274dc728676dbb8db3b8aa84713e8cc61cf702d80e9efb81405\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"5.37.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8b41d55cb106c9dedc09b8a4a338e29d577cd2ddf07d51a83b322264664502ff\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.10.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8a521d69966808a441b40cdebb7973fc311847bdedac9d3df3ae0eda7825af3\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.1.6\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.3.53\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.0.20\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.7.47\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.0.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.0.22\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.0.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1b8cff24524203d0f99fb87123ec821b501487bc08b2b8c81c4e61431b8ee6dd\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.0.22\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:d6d0720e53471deaa2e645a29d151fed8500e60bebb2b1eec307d80576e8d66e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.0.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:086fa35b8d75d387972ea6a7871cd1cb62354e3358dfe202ece878a04c7b0a52\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.0.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f56b2d64ee5923707ebd6c709fb037f23e09c73cf1ff413749f62b143fc1d80d\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.0.12\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:089fdfdf8d41679ecd14d237fc1adc87425ca814435380415c7c42303e09a85e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.9.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:22828ade27e23afb78c1dc3cebad750062b93743f480baac4e1baf719c360a9b\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.7.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:25930ffc5bd5759226e008e6e19661b51bca35428306bc00c8e4a1d228547a70\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9330fc909d7eb4c9d2be01a722226f907f2464f5c606ce2acd9a77ddd8177172\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.13.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce9a3a48c9ad56ceb3fe1db554ec5e16914570e6a90d2e30b76329b531659e70\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.0.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f581e11ab02a4c23bb2cac1908198a09c626623a2e79884f583ad8c3a2da59df\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.16.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.7.14\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.0.61\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.0.69\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.2.40\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.7.14\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.0.61\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.2.40\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:86160cc095dd6ca478352fb9e7599295a33973000821900ee45d295dc270a654\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.2.40\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:2fae43446e5edbcda6cb18c138d70079ba34b02fe93fc9dfb81b6da063d4a755\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.7.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c03d1e6d1bc5e5619112659ac7ed59b210169b0cc96c8adb4e97b9e355a128c9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.0.69\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:81e495ffac78ba195874b201cc27ecbe5cf50ad7bcaab0e2aad25fba467f0118\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"9.4.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71f126d14a9304db4f840599f6c5ecef94ce627c29b5317e0f3a9f174df3af47\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"7.19.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ae966d6c54a126c80ecf10aab370e556d3931d2ff0e85dcbfd2586fe56e882fa\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"0.7.66\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:5becc357e9e1b1221fd41999670730654af37293a0c72ee7da660f39cc2b561d\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.7.47\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:d3cbc103967d70da9ba66bb8223cbefe16f30a4e5baeb2d3719eee1541c5c570\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7f92ff68b266e8d347f04c4cd560ccbbf4ec415d27486f99b65b24f8a8e9e1d9\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.7.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:10f0a34d2257a427925d0310211f62e2fc0ee3b9a157b5295723e9d303f308ac\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.10.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5ba32faa69213e0a5159fb3e84c38aa58d9b140f31ffb80c97a79d2b2cad3430\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"18.13.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.2.7\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.4.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.19.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.15.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"7.19.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.20.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.19.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.13.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.6.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.1.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.33.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"5.26.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"9.4.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"5.37.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.8.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.9.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:a895ef586393bd14154c8dea412ca182b881c34959b54464c224a197742b98bc\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cba275116a4e880a55fd846b85eda1911a508775b432c2206e87a6e2cf8bbbf3\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"11.16.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.8.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.2.7\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.19.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"7.19.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.20.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.19.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.13.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.33.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"5.37.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.16.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:21830091a6ae7dcc5c6dc577f4b535c56d8a01b6672fe622245a912749f97ad2\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.12.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0601960eec061828af97cd2510830bea79bfbb350616e384011d5f82375cd677\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.1.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c3d9013f39e9b1001eb695c0a08fbe6c5d0ebb78e92e6f5efc4d29ef7c3058a7\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.20.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ab3e942eb47b3de6ef76c8bb3d17fa147816dd816f3cd44df1adddfbcc922240\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e68a976e07b2267e7fd653a1b0e066100ad1bc35ee4cb3f297a4330b292325dc\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.17.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:2666a9db2ac7fffd93b083e09f0d3f3e89ba1d63870ed5ff8383454af7d01dad\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.16.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cb32d85fa8004785812d6d077feb779a5d107b6a0bb09b49f6df1a0d20ccfb70\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"0.18.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:7017f7e5a95d99c011cb792bb86cbc71fedfcbbebecbddb3ddc85ad903de0e9a\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"4.1.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4898c17387777e8f98af1e1521d6028204cf998bd599d682b19c6654e014443e\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:91c5f661e93a69d37db28ae94c2a6c6f6da6ef5282bed2b0e05279aa4f048507\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.4.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dab096146b5c2acb46dcf8af656ab0af01c30788565fffb4a2cd8c982bd59d2b\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dcf7dcbbdd166c05f64313a072367e4822f876e7e63389146b5c96a920345bde\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:5c3ff33f4f1fe6b8f59bcf98e67138338c0aae3ebb135c518a00929dd319de88\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.4.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:477de3c6d0e4cbd209fdcae219d53950949a762052994a1a7003b9b98a6d45d1\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.5.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.2\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.5.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.3.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.1.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.4.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:c7d469ede07c6eb9612af378eee69428334f98c311febbd3977d6531b533ec50\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fad44e65a5ee84bfc8d538507fac7c9c05412544f0eedde9f846d6bde9281321\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:561e5f150a7b33bc8206159fa160e0bbf833dc8c0cbced82f764c79d0c8e2b28\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:f020af78df8aaaa276241ee567647ca6f6513014feac840804c7696484093b86\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.23.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0d983845b06fe8bbbed668d003ae7c2efa648d311d66b1de404f70e69171b782\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a4709de5c648e83ff5be0386bc82c1cafb9342153280fea943ab8e95d7eafe97\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.22.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc947722860c52caeea43cb632c38e2bd482e883ca38ad25180be958ab262f8d\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a6005e682ddccb3d4e925433537377df249f1f873fbf41a8ba6ed8657bf22902\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ad93a6f79a8c99c9d6eb72c1b1faa7133c00c608fdec821995fe98986efa0601\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dce09ae87e76b9e2ff0e94b175257aa039512104e3f0845a7ea2135d4eb6ea89\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.0\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9e32f99daa8588be8ae1304c2a04d1c0c78b732c5e506eb1fb97578cc98a3e69\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:52a22366cd058d49661db853988216a29a43fa32195dc2086bb3566219953639\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9ac9d0eb434127cbac17d5af30f64170742c90bfce44e2aed8b0317552aac9f0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:13f8c35e46add8222603831ef8c873c8c66bfd570c9811dead6bf083ca87c463\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.32.0\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.22.0\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.0\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:345e0168fe7afcf17ece25615d4f96d9d3e17323ef47da5a744830ad95ae03b5\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.0\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:815c88629df3ddddc2cc6c1086a2fd01cec5a65cbc90af6a88bac0065a108df9\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.51\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:45707ef2e5d9a147263816b6cff41729f0a0e35b2b0cfc4013adb9bd8d2cfea7\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:ad9ce1fd8fa2e7124e434afd06581310b28e56a72d05df7e40336f20e32b3716\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:088a9c6b5f726362b79c25ffddba57cbfff47bf852f7597795b4315c147e9ea2\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.6\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.51\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.54\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.11\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.51\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:be9bd9ea5e8b0bb53abf642cbc1bd583df82ac4a31ebc20b9d1d9fdbb4ebdd39\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.19.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bb3a02d034f281ea5d3191c427d744bd90709064fface527cf72f7a71f5a4147\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"0.2.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:e37dc22e160349262edb75139c90fcac1de080516be75e6983ba502b33be55cf\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.33.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:84cbab2bf0e7e3901be3870a4e1dde3877a16309c3ae1607610794aadfbd3624\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:45b767e8e7563e2ad517d9df49865ce99674d32820a7173a11e3a9c28fc37eef\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.51\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f42a1f30abd7e6cd933f04ae5709bc87f8a464a097972a03635e90cee0abdebd\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.54\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:ff1fb171820804c6c00b3e5424601c0ffd4f3aca47abcbaeccf0fcd93fac9be9\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:93a961ae68b8850e7f261f3d31a0331026bcfae5f18de19b4929af5a19548ee6\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.3.53\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:3f015c08571054e10d2b7d34a33fc09d6a440455f16164b8c6528f8c6ddb85b9\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3d3ebe9adf873cccfc9aae8b6f0a4d51696b7495dac1a06e84a19b2f22be85db\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.5.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:86f77b1ec20929d5b638cca759fc64e99d02e584da7fbbf9215c7d8d6fba8e2f\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"2.7.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.2\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.5.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"0.18.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.1.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"0.18.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.2\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.5.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"0.7.66\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.1.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"0.7.66\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"0.18.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"0.7.66\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]}],\"layerDiffID\":\"sha256:e8dbd2fa24cadb77838e567e6fbb072b21f642ba30dc66655db7cf53e46ea3ce\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"1.3.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:36cc67f9bbb65f84857ad786581524ee17939cdfe0a6e2d2ed406120c8655e7b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:0ca88a875c231977bd9e5ccd0e7fe2b6728d57125dcdbd40e9bb09d1a29ce5c7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.1.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:e363c8e2e172191f441bc43f28ecb8c478e5f62ad4d1de33402a84da08a80912\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.0.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:609f27040556f3f83b5eac9cc6c24d03330d9c2830872498d21563000432038d\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:98ca92e980b9b2200e07cb7f965b754a64f1acb27107d8186b807eddf309a5f7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.3.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:86a57e6ef66e187c50a5fff15118d623ab6159a2b3d20a51775bfce3b6a17c00\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.6\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.1.6\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.16.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"11.16.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"18.13.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"2.7.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.5.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.32.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-08-28T03:59:48Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} + {"Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a"],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502372,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/merged","UpperDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff","WorkDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.39.1+git-dc9220d.build-6702\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} form: {} headers: {} url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/builder-jammy-base:latest/json method: GET response: body: | - {"Id":"sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486","RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486"],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":853817301,"GraphDriver":{"Data":null,"Name":"overlayfs"},"RootFS":{"Type":"layers","Layers":["sha256:90a2bf02e851326fc70d05470553ed33e578342d6e06bfa0cfaf331c4079b7e4","sha256:c2bab01e9d6e90ad01c09ce0ecef66e1473e5dfc09cbb8a686a771be0b6df9fb","sha256:ddeff17ba530c293a4b0d28bb87b14008c81d02fb5d24267414e5dff565fd8c4","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:7b714f94cc9ce53002651e44c7f50bfc2808a192d8f0b8b8f62c78ed9849a33d","sha256:3d41762eaa929e053839783b943426176b6485a64584e2b49e0cf9ea96c1487c","sha256:34ea5aa2132a466c3d2ab1d3ef802e4f7927698c4b6b9fad53dcbc3321041c34","sha256:159ac78f523409fa3c6d235e3bc41b93071f742abbad83a2f5fd8a0308e91581","sha256:0c525ee6423cf14c15c0c9362042f31876dd93363bdb32e6175e50962943966a","sha256:8213569454472636160a04c88c7187282c2eb93f771265910d22a8c5809c1236","sha256:4bf672c07a49118ad2510d2cab894c4105e321dd699fcf0031a1d582609444c4","sha256:72c0622cf73940808e22034178b612daf356465efed763bac900082da37273be","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:1b0c32c8eae94c8286608cddd265145dda5d2bdf2577c8e189f8a373557a038d","sha256:84a208e2c63730eab13557a79036ea326d6cc6525012707f43abcbf4472a89b5","sha256:0af1f95b97e1e9106805ad1349ad2e301abdcf4dc6c92f738f38fb0d7283cc44","sha256:a17239ec851d8274dc728676dbb8db3b8aa84713e8cc61cf702d80e9efb81405","sha256:8b41d55cb106c9dedc09b8a4a338e29d577cd2ddf07d51a83b322264664502ff","sha256:d8a521d69966808a441b40cdebb7973fc311847bdedac9d3df3ae0eda7825af3","sha256:d6d0720e53471deaa2e645a29d151fed8500e60bebb2b1eec307d80576e8d66e","sha256:086fa35b8d75d387972ea6a7871cd1cb62354e3358dfe202ece878a04c7b0a52","sha256:1b8cff24524203d0f99fb87123ec821b501487bc08b2b8c81c4e61431b8ee6dd","sha256:f56b2d64ee5923707ebd6c709fb037f23e09c73cf1ff413749f62b143fc1d80d","sha256:089fdfdf8d41679ecd14d237fc1adc87425ca814435380415c7c42303e09a85e","sha256:22828ade27e23afb78c1dc3cebad750062b93743f480baac4e1baf719c360a9b","sha256:25930ffc5bd5759226e008e6e19661b51bca35428306bc00c8e4a1d228547a70","sha256:9330fc909d7eb4c9d2be01a722226f907f2464f5c606ce2acd9a77ddd8177172","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:ce9a3a48c9ad56ceb3fe1db554ec5e16914570e6a90d2e30b76329b531659e70","sha256:f581e11ab02a4c23bb2cac1908198a09c626623a2e79884f583ad8c3a2da59df","sha256:2fae43446e5edbcda6cb18c138d70079ba34b02fe93fc9dfb81b6da063d4a755","sha256:c03d1e6d1bc5e5619112659ac7ed59b210169b0cc96c8adb4e97b9e355a128c9","sha256:81e495ffac78ba195874b201cc27ecbe5cf50ad7bcaab0e2aad25fba467f0118","sha256:86160cc095dd6ca478352fb9e7599295a33973000821900ee45d295dc270a654","sha256:71f126d14a9304db4f840599f6c5ecef94ce627c29b5317e0f3a9f174df3af47","sha256:ae966d6c54a126c80ecf10aab370e556d3931d2ff0e85dcbfd2586fe56e882fa","sha256:5becc357e9e1b1221fd41999670730654af37293a0c72ee7da660f39cc2b561d","sha256:d3cbc103967d70da9ba66bb8223cbefe16f30a4e5baeb2d3719eee1541c5c570","sha256:7f92ff68b266e8d347f04c4cd560ccbbf4ec415d27486f99b65b24f8a8e9e1d9","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:10f0a34d2257a427925d0310211f62e2fc0ee3b9a157b5295723e9d303f308ac","sha256:5ba32faa69213e0a5159fb3e84c38aa58d9b140f31ffb80c97a79d2b2cad3430","sha256:cba275116a4e880a55fd846b85eda1911a508775b432c2206e87a6e2cf8bbbf3","sha256:21830091a6ae7dcc5c6dc577f4b535c56d8a01b6672fe622245a912749f97ad2","sha256:a895ef586393bd14154c8dea412ca182b881c34959b54464c224a197742b98bc","sha256:0601960eec061828af97cd2510830bea79bfbb350616e384011d5f82375cd677","sha256:c3d9013f39e9b1001eb695c0a08fbe6c5d0ebb78e92e6f5efc4d29ef7c3058a7","sha256:ab3e942eb47b3de6ef76c8bb3d17fa147816dd816f3cd44df1adddfbcc922240","sha256:e68a976e07b2267e7fd653a1b0e066100ad1bc35ee4cb3f297a4330b292325dc","sha256:2666a9db2ac7fffd93b083e09f0d3f3e89ba1d63870ed5ff8383454af7d01dad","sha256:cb32d85fa8004785812d6d077feb779a5d107b6a0bb09b49f6df1a0d20ccfb70","sha256:7017f7e5a95d99c011cb792bb86cbc71fedfcbbebecbddb3ddc85ad903de0e9a","sha256:4898c17387777e8f98af1e1521d6028204cf998bd599d682b19c6654e014443e","sha256:91c5f661e93a69d37db28ae94c2a6c6f6da6ef5282bed2b0e05279aa4f048507","sha256:dab096146b5c2acb46dcf8af656ab0af01c30788565fffb4a2cd8c982bd59d2b","sha256:dcf7dcbbdd166c05f64313a072367e4822f876e7e63389146b5c96a920345bde","sha256:5c3ff33f4f1fe6b8f59bcf98e67138338c0aae3ebb135c518a00929dd319de88","sha256:477de3c6d0e4cbd209fdcae219d53950949a762052994a1a7003b9b98a6d45d1","sha256:c7d469ede07c6eb9612af378eee69428334f98c311febbd3977d6531b533ec50","sha256:fad44e65a5ee84bfc8d538507fac7c9c05412544f0eedde9f846d6bde9281321","sha256:561e5f150a7b33bc8206159fa160e0bbf833dc8c0cbced82f764c79d0c8e2b28","sha256:f020af78df8aaaa276241ee567647ca6f6513014feac840804c7696484093b86","sha256:a4709de5c648e83ff5be0386bc82c1cafb9342153280fea943ab8e95d7eafe97","sha256:0d983845b06fe8bbbed668d003ae7c2efa648d311d66b1de404f70e69171b782","sha256:a6005e682ddccb3d4e925433537377df249f1f873fbf41a8ba6ed8657bf22902","sha256:bc947722860c52caeea43cb632c38e2bd482e883ca38ad25180be958ab262f8d","sha256:dce09ae87e76b9e2ff0e94b175257aa039512104e3f0845a7ea2135d4eb6ea89","sha256:9e32f99daa8588be8ae1304c2a04d1c0c78b732c5e506eb1fb97578cc98a3e69","sha256:ad93a6f79a8c99c9d6eb72c1b1faa7133c00c608fdec821995fe98986efa0601","sha256:52a22366cd058d49661db853988216a29a43fa32195dc2086bb3566219953639","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:9ac9d0eb434127cbac17d5af30f64170742c90bfce44e2aed8b0317552aac9f0","sha256:13f8c35e46add8222603831ef8c873c8c66bfd570c9811dead6bf083ca87c463","sha256:815c88629df3ddddc2cc6c1086a2fd01cec5a65cbc90af6a88bac0065a108df9","sha256:345e0168fe7afcf17ece25615d4f96d9d3e17323ef47da5a744830ad95ae03b5","sha256:45707ef2e5d9a147263816b6cff41729f0a0e35b2b0cfc4013adb9bd8d2cfea7","sha256:ad9ce1fd8fa2e7124e434afd06581310b28e56a72d05df7e40336f20e32b3716","sha256:088a9c6b5f726362b79c25ffddba57cbfff47bf852f7597795b4315c147e9ea2","sha256:be9bd9ea5e8b0bb53abf642cbc1bd583df82ac4a31ebc20b9d1d9fdbb4ebdd39","sha256:bb3a02d034f281ea5d3191c427d744bd90709064fface527cf72f7a71f5a4147","sha256:e37dc22e160349262edb75139c90fcac1de080516be75e6983ba502b33be55cf","sha256:84cbab2bf0e7e3901be3870a4e1dde3877a16309c3ae1607610794aadfbd3624","sha256:45b767e8e7563e2ad517d9df49865ce99674d32820a7173a11e3a9c28fc37eef","sha256:f42a1f30abd7e6cd933f04ae5709bc87f8a464a097972a03635e90cee0abdebd","sha256:ff1fb171820804c6c00b3e5424601c0ffd4f3aca47abcbaeccf0fcd93fac9be9","sha256:93a961ae68b8850e7f261f3d31a0331026bcfae5f18de19b4929af5a19548ee6","sha256:3f015c08571054e10d2b7d34a33fc09d6a440455f16164b8c6528f8c6ddb85b9","sha256:3d3ebe9adf873cccfc9aae8b6f0a4d51696b7495dac1a06e84a19b2f22be85db","sha256:86f77b1ec20929d5b638cca759fc64e99d02e584da7fbbf9215c7d8d6fba8e2f","sha256:e8dbd2fa24cadb77838e567e6fbb072b21f642ba30dc66655db7cf53e46ea3ce","sha256:609f27040556f3f83b5eac9cc6c24d03330d9c2830872498d21563000432038d","sha256:98ca92e980b9b2200e07cb7f965b754a64f1acb27107d8186b807eddf309a5f7","sha256:86a57e6ef66e187c50a5fff15118d623ab6159a2b3d20a51775bfce3b6a17c00","sha256:36cc67f9bbb65f84857ad786581524ee17939cdfe0a6e2d2ed406120c8655e7b","sha256:0ca88a875c231977bd9e5ccd0e7fe2b6728d57125dcdbd40e9bb09d1a29ce5c7","sha256:e363c8e2e172191f441bc43f28ecb8c478e5f62ad4d1de33402a84da08a80912","sha256:991016f4b3301e3c9ee0a00551148466c5577aa429a1be15346f4fa1e8ba57f8","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"2025-09-08T12:21:59.208807971Z"},"Descriptor":{"mediaType":"application/vnd.docker.distribution.manifest.v2+json","digest":"sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486","size":21393},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.1.6\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.0.22\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.0.16\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.0.12\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.7.47\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.2\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.3.53\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.3\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.16.12\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.0.61\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.2.40\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.7.14\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.0.69\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.2\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.3\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"11.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"5.37.1\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.13.3\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"7.19.5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.20.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.16.3\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.19.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.33.4\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"18.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.6.3\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"5.26.2\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"5.37.1\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.9.6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.13.3\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"9.4.3\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"7.19.5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.1.6\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.20.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.19.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.33.4\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.3.2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.32.0\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.22.0\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.0\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.0\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.6\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.14\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.25\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.8.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.7.2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.7.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.17.15\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"4.1.11\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.11\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.56\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.51\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.24\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.56\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.51\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.54\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"1.3.15\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.0.9\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"2.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"0.7.66\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"0.18.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"0.2.59\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.4\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.13\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.38.2+git-f1c347c.build-6533\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.6.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3d41762eaa929e053839783b943426176b6485a64584e2b49e0cf9ea96c1487c\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.13.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:34ea5aa2132a466c3d2ab1d3ef802e4f7927698c4b6b9fad53dcbc3321041c34\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"5.26.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:159ac78f523409fa3c6d235e3bc41b93071f742abbad83a2f5fd8a0308e91581\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.2.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0c525ee6423cf14c15c0c9362042f31876dd93363bdb32e6175e50962943966a\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:8213569454472636160a04c88c7187282c2eb93f771265910d22a8c5809c1236\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:4bf672c07a49118ad2510d2cab894c4105e321dd699fcf0031a1d582609444c4\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:72c0622cf73940808e22034178b612daf356465efed763bac900082da37273be\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.8.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1b0c32c8eae94c8286608cddd265145dda5d2bdf2577c8e189f8a373557a038d\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.15.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:84a208e2c63730eab13557a79036ea326d6cc6525012707f43abcbf4472a89b5\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0af1f95b97e1e9106805ad1349ad2e301abdcf4dc6c92f738f38fb0d7283cc44\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.17.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a17239ec851d8274dc728676dbb8db3b8aa84713e8cc61cf702d80e9efb81405\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"5.37.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8b41d55cb106c9dedc09b8a4a338e29d577cd2ddf07d51a83b322264664502ff\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.10.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8a521d69966808a441b40cdebb7973fc311847bdedac9d3df3ae0eda7825af3\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.1.6\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.3.53\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.0.20\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.7.47\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.0.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.0.22\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.0.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1b8cff24524203d0f99fb87123ec821b501487bc08b2b8c81c4e61431b8ee6dd\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.0.22\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:d6d0720e53471deaa2e645a29d151fed8500e60bebb2b1eec307d80576e8d66e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.0.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:086fa35b8d75d387972ea6a7871cd1cb62354e3358dfe202ece878a04c7b0a52\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.0.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f56b2d64ee5923707ebd6c709fb037f23e09c73cf1ff413749f62b143fc1d80d\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.0.12\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:089fdfdf8d41679ecd14d237fc1adc87425ca814435380415c7c42303e09a85e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.9.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:22828ade27e23afb78c1dc3cebad750062b93743f480baac4e1baf719c360a9b\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.7.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:25930ffc5bd5759226e008e6e19661b51bca35428306bc00c8e4a1d228547a70\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9330fc909d7eb4c9d2be01a722226f907f2464f5c606ce2acd9a77ddd8177172\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.13.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce9a3a48c9ad56ceb3fe1db554ec5e16914570e6a90d2e30b76329b531659e70\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.0.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f581e11ab02a4c23bb2cac1908198a09c626623a2e79884f583ad8c3a2da59df\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.16.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.7.14\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.0.61\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.0.69\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.2.40\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.7.14\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.0.61\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.2.40\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:86160cc095dd6ca478352fb9e7599295a33973000821900ee45d295dc270a654\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.2.40\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:2fae43446e5edbcda6cb18c138d70079ba34b02fe93fc9dfb81b6da063d4a755\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.7.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c03d1e6d1bc5e5619112659ac7ed59b210169b0cc96c8adb4e97b9e355a128c9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.0.69\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:81e495ffac78ba195874b201cc27ecbe5cf50ad7bcaab0e2aad25fba467f0118\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"9.4.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71f126d14a9304db4f840599f6c5ecef94ce627c29b5317e0f3a9f174df3af47\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"7.19.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ae966d6c54a126c80ecf10aab370e556d3931d2ff0e85dcbfd2586fe56e882fa\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"0.7.66\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:5becc357e9e1b1221fd41999670730654af37293a0c72ee7da660f39cc2b561d\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.7.47\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:d3cbc103967d70da9ba66bb8223cbefe16f30a4e5baeb2d3719eee1541c5c570\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7f92ff68b266e8d347f04c4cd560ccbbf4ec415d27486f99b65b24f8a8e9e1d9\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.7.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:10f0a34d2257a427925d0310211f62e2fc0ee3b9a157b5295723e9d303f308ac\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.10.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5ba32faa69213e0a5159fb3e84c38aa58d9b140f31ffb80c97a79d2b2cad3430\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"18.13.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.2.7\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.4.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.19.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.15.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"7.19.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.20.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.19.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.13.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.6.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.1.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.33.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"5.26.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"9.4.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"5.37.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.8.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.9.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:a895ef586393bd14154c8dea412ca182b881c34959b54464c224a197742b98bc\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cba275116a4e880a55fd846b85eda1911a508775b432c2206e87a6e2cf8bbbf3\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"11.16.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.8.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.2.7\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.19.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"7.19.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.20.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.19.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.13.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.33.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"5.37.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.16.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:21830091a6ae7dcc5c6dc577f4b535c56d8a01b6672fe622245a912749f97ad2\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.12.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0601960eec061828af97cd2510830bea79bfbb350616e384011d5f82375cd677\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.1.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c3d9013f39e9b1001eb695c0a08fbe6c5d0ebb78e92e6f5efc4d29ef7c3058a7\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.20.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ab3e942eb47b3de6ef76c8bb3d17fa147816dd816f3cd44df1adddfbcc922240\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e68a976e07b2267e7fd653a1b0e066100ad1bc35ee4cb3f297a4330b292325dc\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.17.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:2666a9db2ac7fffd93b083e09f0d3f3e89ba1d63870ed5ff8383454af7d01dad\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.16.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cb32d85fa8004785812d6d077feb779a5d107b6a0bb09b49f6df1a0d20ccfb70\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"0.18.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:7017f7e5a95d99c011cb792bb86cbc71fedfcbbebecbddb3ddc85ad903de0e9a\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"4.1.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4898c17387777e8f98af1e1521d6028204cf998bd599d682b19c6654e014443e\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:91c5f661e93a69d37db28ae94c2a6c6f6da6ef5282bed2b0e05279aa4f048507\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.4.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dab096146b5c2acb46dcf8af656ab0af01c30788565fffb4a2cd8c982bd59d2b\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dcf7dcbbdd166c05f64313a072367e4822f876e7e63389146b5c96a920345bde\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:5c3ff33f4f1fe6b8f59bcf98e67138338c0aae3ebb135c518a00929dd319de88\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.4.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:477de3c6d0e4cbd209fdcae219d53950949a762052994a1a7003b9b98a6d45d1\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.5.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.2\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.5.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.3.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.1.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.4.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:c7d469ede07c6eb9612af378eee69428334f98c311febbd3977d6531b533ec50\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fad44e65a5ee84bfc8d538507fac7c9c05412544f0eedde9f846d6bde9281321\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:561e5f150a7b33bc8206159fa160e0bbf833dc8c0cbced82f764c79d0c8e2b28\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:f020af78df8aaaa276241ee567647ca6f6513014feac840804c7696484093b86\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.23.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0d983845b06fe8bbbed668d003ae7c2efa648d311d66b1de404f70e69171b782\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a4709de5c648e83ff5be0386bc82c1cafb9342153280fea943ab8e95d7eafe97\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.22.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc947722860c52caeea43cb632c38e2bd482e883ca38ad25180be958ab262f8d\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a6005e682ddccb3d4e925433537377df249f1f873fbf41a8ba6ed8657bf22902\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ad93a6f79a8c99c9d6eb72c1b1faa7133c00c608fdec821995fe98986efa0601\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dce09ae87e76b9e2ff0e94b175257aa039512104e3f0845a7ea2135d4eb6ea89\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.0\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9e32f99daa8588be8ae1304c2a04d1c0c78b732c5e506eb1fb97578cc98a3e69\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:52a22366cd058d49661db853988216a29a43fa32195dc2086bb3566219953639\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9ac9d0eb434127cbac17d5af30f64170742c90bfce44e2aed8b0317552aac9f0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:13f8c35e46add8222603831ef8c873c8c66bfd570c9811dead6bf083ca87c463\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.32.0\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.22.0\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.0\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.23.0\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.11.0\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.0\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.17.1\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:345e0168fe7afcf17ece25615d4f96d9d3e17323ef47da5a744830ad95ae03b5\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.0\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:815c88629df3ddddc2cc6c1086a2fd01cec5a65cbc90af6a88bac0065a108df9\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.51\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:45707ef2e5d9a147263816b6cff41729f0a0e35b2b0cfc4013adb9bd8d2cfea7\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:ad9ce1fd8fa2e7124e434afd06581310b28e56a72d05df7e40336f20e32b3716\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:088a9c6b5f726362b79c25ffddba57cbfff47bf852f7597795b4315c147e9ea2\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.6\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.51\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.54\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.11\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"4.1.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"1.3.15\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.0.9\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.51\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.8.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.17.15\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.14\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.7.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.7.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:be9bd9ea5e8b0bb53abf642cbc1bd583df82ac4a31ebc20b9d1d9fdbb4ebdd39\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.19.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bb3a02d034f281ea5d3191c427d744bd90709064fface527cf72f7a71f5a4147\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"0.2.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:e37dc22e160349262edb75139c90fcac1de080516be75e6983ba502b33be55cf\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.33.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:84cbab2bf0e7e3901be3870a4e1dde3877a16309c3ae1607610794aadfbd3624\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:45b767e8e7563e2ad517d9df49865ce99674d32820a7173a11e3a9c28fc37eef\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.51\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f42a1f30abd7e6cd933f04ae5709bc87f8a464a097972a03635e90cee0abdebd\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.54\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:ff1fb171820804c6c00b3e5424601c0ffd4f3aca47abcbaeccf0fcd93fac9be9\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:93a961ae68b8850e7f261f3d31a0331026bcfae5f18de19b4929af5a19548ee6\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.3.53\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:3f015c08571054e10d2b7d34a33fc09d6a440455f16164b8c6528f8c6ddb85b9\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3d3ebe9adf873cccfc9aae8b6f0a4d51696b7495dac1a06e84a19b2f22be85db\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.5.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:86f77b1ec20929d5b638cca759fc64e99d02e584da7fbbf9215c7d8d6fba8e2f\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"2.7.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.2\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.5.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"0.18.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.1.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"0.18.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.1.2\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.5.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"0.7.66\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.5.0\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.1.0\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.2.2\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"0.7.66\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"0.18.3\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"0.7.66\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"0.2.59\"}]}],\"layerDiffID\":\"sha256:e8dbd2fa24cadb77838e567e6fbb072b21f642ba30dc66655db7cf53e46ea3ce\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"1.3.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:36cc67f9bbb65f84857ad786581524ee17939cdfe0a6e2d2ed406120c8655e7b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:0ca88a875c231977bd9e5ccd0e7fe2b6728d57125dcdbd40e9bb09d1a29ce5c7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.1.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"layerDiffID\":\"sha256:e363c8e2e172191f441bc43f28ecb8c478e5f62ad4d1de33402a84da08a80912\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.0.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:609f27040556f3f83b5eac9cc6c24d03330d9c2830872498d21563000432038d\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:98ca92e980b9b2200e07cb7f965b754a64f1acb27107d8186b807eddf309a5f7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.3.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:86a57e6ef66e187c50a5fff15118d623ab6159a2b3d20a51775bfce3b6a17c00\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.6\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.1.6\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.16.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"11.16.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"18.13.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"2.7.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.5.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.32.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-08-28T03:59:48Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} + {"Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a"],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502372,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/merged","UpperDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff","WorkDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.39.1+git-dc9220d.build-6702\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:59 GMT + - Mon, 15 Dec 2025 13:30:23 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: body: | - [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486","Size":4096,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":57712640,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":56188928,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21843968,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4923392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":74473472,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":30101504,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7090176,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7081984,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":29229056,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7090176,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7024640,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11759616,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2859008,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7299072,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4362240,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702208,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4202496,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3932160,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4681728,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4681728,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41340928,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4706304,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52236288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41426944,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52244480,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41328640,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52232192,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21839872,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4931584,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":122908672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4931584,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5005312,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64737280,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":59846656,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":59731968,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":25309184,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":61198336,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5017600,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22077440,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41308160,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7385088,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":14434304,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7245824,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10633216,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7188480,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3735552,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4521984,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4513792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22548480,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":61493248,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7323648,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11210752,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67129344,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":56172544,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67235840,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5058560,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5079040,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4509696,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4501504,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3751936,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9379840,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":29306880,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":30662656,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22577152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22700032,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4657152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10571776,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":59609088,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52240384,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7254016,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":8163328,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9576448,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9572352,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22061056,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28577792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13070336,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11005952,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11268096,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11251712,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":27090944,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":40960,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":340217856,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":87502848,"Tags":null}] + [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","Size":0,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":816,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64928620,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64932717,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49826669,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4887425,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78316782,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78415087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":63325423,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":18906,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7118157,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77036224,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7117286,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178639,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052527,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11802398,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2831246,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7338712,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7016,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4330205,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4174537,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5433,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4658057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4649181,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4645085,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64887132,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4670145,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76591924,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64990046,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76641207,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64957002,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76559278,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21846392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4895759,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112466284,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112462188,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3346,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4891521,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68636468,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68534068,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68513005,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68545976,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5036882,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65205217,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41174864,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7422057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":14476470,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7285326,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":20598,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":17626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10705898,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7212445,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4526546,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65234266,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64586026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7357429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11166686,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76584043,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64814007,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76690543,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969196,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5091349,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4512655,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9423863,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77059170,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78476634,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1744,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65294455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65363805,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4672439,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10518994,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":66809080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":72819714,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7286083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9636192,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9546080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9533792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22805966,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28652373,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13151637,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10962370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11311370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11304152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":27474628,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":0,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":320599029,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77871919,"Tags":null}] form: {} headers: {} url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/builder-jammy-base:latest/history method: GET response: body: | - [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:18749722b88f4755131a2ebc04a9e8e81fe044a4d9cd27be38dfd9e39ea9f486","Size":4096,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":57712640,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":56188928,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21843968,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4923392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":74473472,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":30101504,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7090176,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7081984,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":29229056,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7090176,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7024640,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11759616,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2859008,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7299072,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4362240,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4206592,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702208,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4202496,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3932160,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4681728,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4681728,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41340928,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4706304,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52236288,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41426944,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52244480,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41328640,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52232192,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21839872,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4931584,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":122908672,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4931584,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5005312,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64737280,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":59846656,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":59731968,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":25309184,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":61198336,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5017600,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22077440,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41308160,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7385088,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":14434304,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7245824,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10633216,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7188480,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3735552,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4521984,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4513792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22548480,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":61493248,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7323648,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11210752,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67129344,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":56172544,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67235840,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5058560,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5079040,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4509696,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4501504,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3751936,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9379840,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":29306880,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":30662656,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22577152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22700032,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4657152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10571776,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":59609088,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":52240384,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7254016,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":8163328,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9576448,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9572352,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22061056,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28577792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13070336,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11005952,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11268096,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11251712,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":27090944,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":40960,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":340217856,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":87502848,"Tags":null}] + [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","Size":0,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":816,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64928620,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64932717,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49826669,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4887425,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78316782,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78415087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":63325423,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":18906,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7118157,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77036224,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7117286,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178639,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052527,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11802398,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2831246,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7338712,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7016,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4330205,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4174537,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5433,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4658057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4649181,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4645085,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64887132,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4670145,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76591924,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64990046,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76641207,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64957002,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76559278,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21846392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4895759,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112466284,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112462188,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3346,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4891521,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68636468,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68534068,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68513005,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68545976,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5036882,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65205217,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41174864,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7422057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":14476470,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7285326,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":20598,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":17626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10705898,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7212445,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4526546,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65234266,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64586026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7357429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11166686,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76584043,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64814007,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76690543,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969196,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5091349,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4512655,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9423863,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77059170,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78476634,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1744,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65294455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65363805,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4672439,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10518994,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":66809080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":72819714,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7286083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9636192,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9546080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9533792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22805966,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28652373,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13151637,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10962370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11311370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11304152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":27474628,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":0,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":320599029,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77871919,"Tags":null}] headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:21:59 GMT + - Mon, 15 Dec 2025 13:30:23 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"4fedb3851895\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"23adbdab88da\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"23adbdab88da\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4fedb3851895\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10606618},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.61MB\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10606618},\"progress\":\"[==================================\\u003e - \ ] 7.34MB/10.61MB\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"23adbdab88da\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4fedb3851895\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Digest: - sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96\"}\r\n{\"status\":\"Status: - Downloaded newer image for paketobuildpacks/run-jammy-base:latest\"}\r\n" + body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: + sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e\"}\r\n{\"status\":\"Status: + Image is up to date for paketobuildpacks/run-jammy-base:latest\"}\r\n" form: {} headers: X-Registry-Auth: - - eyJ1c2VybmFtZSI6InJsZW9uZXNjdyIsInBhc3N3b3JkIjoiZGNrcl9wYXRfYWtmOTRtTldxdzdrajJkSVN5bWc5dVFRVUR3IiwiYXV0aCI6ImNteGxiMjVsYzJOM09tUmphM0pmY0dGMFgyRnJaamswYlU1WGNYYzNhMm95WkVsVGVXMW5PWFZSVVZWRWR3PT0ifQ== + - eyJhdXRoIjoiT2c9PSJ9 url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Frun-jammy-base&platform=linux%2Famd64&tag=latest method: POST response: - body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"4fedb3851895\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"23adbdab88da\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"23adbdab88da\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4fedb3851895\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":10606618},\"progress\":\"[=========\\u003e - \ ] 2.097MB/10.61MB\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7340032,\"total\":10606618},\"progress\":\"[==================================\\u003e - \ ] 7.34MB/10.61MB\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"23adbdab88da\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"4fedb3851895\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"f14039c87b0c\"}\r\n{\"status\":\"Digest: - sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96\"}\r\n{\"status\":\"Status: - Downloaded newer image for paketobuildpacks/run-jammy-base:latest\"}\r\n" + body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: + sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e\"}\r\n{\"status\":\"Status: + Image is up to date for paketobuildpacks/run-jammy-base:latest\"}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:01 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: body: | - {"Platform":{"Name":"Docker Desktop 4.45.0 (203075)"},"Components":[{"Name":"Engine","Version":"28.3.3","Details":{"ApiVersion":"1.51","Arch":"arm64","BuildTime":"2025-07-25T11:35:32.000000000+00:00","Experimental":"false","GitCommit":"bea959c","GoVersion":"go1.24.5","KernelVersion":"6.10.14-linuxkit","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"1.7.27","Details":{"GitCommit":"05044ec0a9a75232cad458027ca83437aae3f4da"}},{"Name":"runc","Version":"1.2.5","Details":{"GitCommit":"v1.2.5-0-g59923ef"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"28.3.3","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"bea959c","GoVersion":"go1.24.5","Os":"linux","Arch":"arm64","KernelVersion":"6.10.14-linuxkit","BuildTime":"2025-07-25T11:35:32.000000000+00:00"} + {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} form: {} headers: {} url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/version method: GET response: body: | - {"Platform":{"Name":"Docker Desktop 4.45.0 (203075)"},"Components":[{"Name":"Engine","Version":"28.3.3","Details":{"ApiVersion":"1.51","Arch":"arm64","BuildTime":"2025-07-25T11:35:32.000000000+00:00","Experimental":"false","GitCommit":"bea959c","GoVersion":"go1.24.5","KernelVersion":"6.10.14-linuxkit","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"1.7.27","Details":{"GitCommit":"05044ec0a9a75232cad458027ca83437aae3f4da"}},{"Name":"runc","Version":"1.2.5","Details":{"GitCommit":"v1.2.5-0-g59923ef"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"Version":"28.3.3","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"bea959c","GoVersion":"go1.24.5","Os":"linux","Arch":"arm64","KernelVersion":"6.10.14-linuxkit","BuildTime":"2025-07-25T11:35:32.000000000+00:00"} + {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} + headers: + Api-Version: + - "1.51" + Content-Length: + - "727" + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:30:24 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/28.5.1 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RepoDigests":["paketobuildpacks/run-jammy-base@sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e"],"Parent":"","Comment":"","Created":"2025-12-08T04:43:30.878371044Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":109483652,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/81200a7826ef679d04d8706c847a251b3083f059047c48d5c2120ec2a605fd36/diff:/var/lib/docker/overlay2/b88bf6b550ed6540de80c5ba1e2c9f373f42ffabdcff6d16db0b3dce26df9cd1/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/merged","UpperDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/diff","WorkDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:c11ee8f96dca1dddff3b0275b59f38593aa5d6585f45185088b869773d2baafe","sha256:6c963d3b99498646b594ba9e3684721b9ad9797a347e4d661828a62214b32a2c","sha256:5c6e39b36b811278e902fa997cdcb4a7cd57e03f2a4359afec25e3afdc62cef0"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""}} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/paketobuildpacks/run-jammy-base:latest/json + method: GET + response: + body: | + {"Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RepoDigests":["paketobuildpacks/run-jammy-base@sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e"],"Parent":"","Comment":"","Created":"2025-12-08T04:43:30.878371044Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":109483652,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/81200a7826ef679d04d8706c847a251b3083f059047c48d5c2120ec2a605fd36/diff:/var/lib/docker/overlay2/b88bf6b550ed6540de80c5ba1e2c9f373f42ffabdcff6d16db0b3dce26df9cd1/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/merged","UpperDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/diff","WorkDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:c11ee8f96dca1dddff3b0275b59f38593aa5d6585f45185088b869773d2baafe","sha256:6c963d3b99498646b594ba9e3684721b9ad9797a347e4d661828a62214b32a2c","sha256:5c6e39b36b811278e902fa997cdcb4a7cd57e03f2a4359afec25e3afdc62cef0"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""}} + headers: + Api-Version: + - "1.51" + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:30:24 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/28.5.1 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","Size":505,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":31609811,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / ","Id":"","Size":77871919,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/paketobuildpacks/run-jammy-base:latest/history + method: GET + response: + body: | + [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","Size":505,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":31609811,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / ","Id":"","Size":77871919,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: body: | - {"Id":"sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96","RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RepoDigests":["paketobuildpacks/run-jammy-base@sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96"],"Parent":"","Comment":"","Created":"2025-08-28T03:59:16.806685097Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":1637,"GraphDriver":{"Data":null,"Name":"overlayfs"},"RootFS":{"Type":"layers","Layers":["sha256:90a2bf02e851326fc70d05470553ed33e578342d6e06bfa0cfaf331c4079b7e4","sha256:9355c99d7a3453589b05e56d8ecc0bee41d98e106dea287441f12b80a4566fc7","sha256:079ec0d0481e785920305d8c1ab118d743fbace595f35c8f4bd3b2fc8e6c5ce1","sha256:06775fdd6ec63a72a358975969577edd01b2e3190c3d0f9c998646bafa66f2b4"]},"Metadata":{"LastTagTime":"2025-09-08T12:22:03.13364925Z"},"Descriptor":{"mediaType":"application/vnd.oci.image.index.v1+json","digest":"sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96","size":723},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2025-08-28T03:59:48Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""}} + {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:24.293608641+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/run-jammy-base:latest/json + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/info method: GET response: body: | - {"Id":"sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96","RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RepoDigests":["paketobuildpacks/run-jammy-base@sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96"],"Parent":"","Comment":"","Created":"2025-08-28T03:59:16.806685097Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":1637,"GraphDriver":{"Data":null,"Name":"overlayfs"},"RootFS":{"Type":"layers","Layers":["sha256:90a2bf02e851326fc70d05470553ed33e578342d6e06bfa0cfaf331c4079b7e4","sha256:9355c99d7a3453589b05e56d8ecc0bee41d98e106dea287441f12b80a4566fc7","sha256:079ec0d0481e785920305d8c1ab118d743fbace595f35c8f4bd3b2fc8e6c5ce1","sha256:06775fdd6ec63a72a358975969577edd01b2e3190c3d0f9c998646bafa66f2b4"]},"Metadata":{"LastTagTime":"2025-09-08T12:22:03.13364925Z"},"Descriptor":{"mediaType":"application/vnd.oci.image.index.v1+json","digest":"sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96","size":723},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2025-08-28T03:59:48Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""}} + {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:24.293608641+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} + headers: + Api-Version: + - "1.51" + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:30:24 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/28.5.1 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"stream\":\"Loaded image: pack.local/builder/11111111111111111111:latest\\n\"}\r\n" + form: {} + headers: + Content-Type: + - application/x-tar + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/load?quiet=1 + method: POST + response: + body: "{\"stream\":\"Loaded image: pack.local/builder/11111111111111111111:latest\\n\"}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: body: | - [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96","Size":12288,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":36085760,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853534,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853534,"CreatedBy":"/bin/sh -c #(nop) ADD file:598bb7ba54e5a576778e9ebe1f4e514188812bea30c08d00446f8d04c37053e6 in / ","Id":"","Size":87502848,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] + {"Id":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78","RepoTags":["pack.local/builder/11111111111111111111:latest"],"RepoDigests":[],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502497,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/5f76e0948cee0b71b73f3f410a69aebbf4eaf3375e41866f93a34d9e02f93478/diff:/var/lib/docker/overlay2/f3830a9b05d9c751ee334e3a739052502ecc860ada1a9cf3a5361826e65d7791/diff:/var/lib/docker/overlay2/cf041afa27e3975285990541386340277c9126631ba95410493351eaf4679fb5/diff:/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff:/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/merged","UpperDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/diff","WorkDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:d4007a247175ebde7b7bde7ec0651475b52510ef13e142ee4cd755d955908853","sha256:0195544f89043f65b9f6c79ac87b62f380de067a218e0f023ecea168ab91053e","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.0.0\"},\"images\":[{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/run-jammy-base:latest/history + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/pack.local/builder/11111111111111111111:latest/json method: GET response: body: | - [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:33e767321fe4c2a0c76eb9e302d30f656d829611019cde40e607417853c62d96","Size":12288,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":24576,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":36085760,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1756353556,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853534,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853534,"CreatedBy":"/bin/sh -c #(nop) ADD file:598bb7ba54e5a576778e9ebe1f4e514188812bea30c08d00446f8d04c37053e6 in / ","Id":"","Size":87502848,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1753853531,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] + {"Id":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78","RepoTags":["pack.local/builder/11111111111111111111:latest"],"RepoDigests":[],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502497,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/5f76e0948cee0b71b73f3f410a69aebbf4eaf3375e41866f93a34d9e02f93478/diff:/var/lib/docker/overlay2/f3830a9b05d9c751ee334e3a739052502ecc860ada1a9cf3a5361826e65d7791/diff:/var/lib/docker/overlay2/cf041afa27e3975285990541386340277c9126631ba95410493351eaf4679fb5/diff:/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff:/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/merged","UpperDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/diff","WorkDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:d4007a247175ebde7b7bde7ec0651475b52510ef13e142ee4cd755d955908853","sha256:0195544f89043f65b9f6c79ac87b62f380de067a218e0f023ecea168ab91053e","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.0.0\"},\"images\":[{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78/tag?repo=pack.local%2Fbuilder%2F11111111111111111111&tag=latest + method: POST + response: + body: "" + headers: + Api-Version: + - "1.51" + Content-Length: + - "0" + Date: + - Mon, 15 Dec 2025 13:30:24 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/28.5.1 (linux) + status: 201 Created + code: 201 + duration: "" - request: body: | - {"Id":"366e7677b87d8161fd17bd35341b08f8b2d64b53781da67a39bd484a20786e98","Warning":""} + {"Id":"a2c1b5af8cbc948d73893c8cc276bb2edb909dbe7ce198d4d6f9997df630fb9c","Warning":""} form: {} headers: Content-Type: @@ -6916,26 +556,28 @@ interactions: method: POST response: body: | - {"Id":"366e7677b87d8161fd17bd35341b08f8b2d64b53781da67a39bd484a20786e98","Warning":""} + {"Id":"a2c1b5af8cbc948d73893c8cc276bb2edb909dbe7ce198d4d6f9997df630fb9c","Warning":""} headers: Api-Version: - "1.51" + Content-Length: + - "87" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 201 Created code: 201 duration: "" - request: body: | - {"Id":"ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632","Warnings":["The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested"]} + {"Id":"201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9","Warnings":[]} form: {} headers: Content-Type: @@ -6944,20 +586,22 @@ interactions: method: POST response: body: | - {"Id":"ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632","Warnings":["The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested"]} + {"Id":"201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9","Warnings":[]} headers: Api-Version: - "1.51" + Content-Length: + - "88" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 201 Created code: 201 duration: "" @@ -6967,21 +611,23 @@ interactions: headers: Content-Type: - text/plain - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632/archive?noOverwriteDirNonDir=true&path=%2F + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/archive?noOverwriteDirNonDir=true&path=%2F method: PUT response: body: "" headers: Api-Version: - "1.51" + Content-Length: + - "0" Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" @@ -6991,21 +637,23 @@ interactions: headers: Content-Type: - text/plain - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632/archive?noOverwriteDirNonDir=true&path=%2F + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/archive?noOverwriteDirNonDir=true&path=%2F method: PUT response: body: "" headers: Api-Version: - "1.51" + Content-Length: + - "0" Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" @@ -7013,7 +661,7 @@ interactions: body: "" form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632/start + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/start method: POST response: body: "" @@ -7021,138 +669,137 @@ interactions: Api-Version: - "1.51" Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 204 No Content code: 204 duration: "" - request: body: !!binary | AQAAAAAAABgbWzM2bT09PT4gQU5BTFlaSU5HG1swbQoBAAAAAAAAbEltYWdlIHdpdGggbm - FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licDVyd2Nv - eHZ4L2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdCIgbm90IGZvdW5kCgEAAAAAAAAYG1 + FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1k + dXlpL2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdCIgbm90IGZvdW5kCgEAAAAAAAAYG1 szNm09PT0+IERFVEVDVElORxtbMG0KAQAAAAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVy c2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZWFkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCg - EAAAAAAATIPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z - Y3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF - 0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNj - cmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2 - RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMp - IFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZG - UtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRw - YWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2 - NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBh - Y2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG - 8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90 - IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by - 1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0 - OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY2 - 91bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjog - IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT - 0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09 - PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc2 - 9uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkK - NSBvZiAxMCBidWlsZHBhY2tzIHBhcnRpY2lwYXRpbmcKcGFrZXRvLWJ1aWxkcGFja3MvY2 - EtY2VydGlmaWNhdGVzIDMuMTAuNApwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZSAg - ICAgNy41LjAKcGFrZXRvLWJ1aWxkcGFja3MvbnBtLWluc3RhbGwgICAgIDIuMS4wCnBha2 - V0by1idWlsZHBhY2tzL25vZGUtc3RhcnQgICAgICAyLjQuMgpwYWtldG8tYnVpbGRwYWNr - cy9ucG0tc3RhcnQgICAgICAgMi4yLjIKAQAAAAAAABgbWzM2bT09PT4gUkVTVE9SSU5HG1 - swbQoBAAAAAAAAFxtbMzZtPT09PiBCVUlMRElORxtbMG0KAQAAAAAAAEp0YXJnZXQgZGlz - dHJvIG5hbWUvdmVyc2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZWFkaW5nIC9ldGMvb3Mtcm - VsZWFzZSBmaWxlCgEAAAAAAACQG1szNG0bWzBtChtbMzRtG1sxbVBha2V0byBCdWlsZHBh - Y2sgZm9yIENBIENlcnRpZmljYXRlcxtbMG0bWzM0bSAzLjEwLjQbWzBtCiAgG1szNDsyOz - NtaHR0cHM6Ly9naXRodWIuY29tL3Bha2V0by1idWlsZHBhY2tzL2NhLWNlcnRpZmljYXRl - cxtbMG0KAQAAAAAAAB8gIBtbMm1CdWlsZCBDb25maWd1cmF0aW9uOhtbMG0KAQAAAAAAAU - kbWzJtICAgICRCUF9FTUJFRF9DRVJUUyAgICAgICAgICAgICAgICAgICAgZmFsc2UgIEVt - YmVkIGNlcnRpZmljYXRlcyBpbnRvIHRoZSBpbWFnZRtbMG0KG1sybSAgICAkQlBfRU5BQk - xFX1JVTlRJTUVfQ0VSVF9CSU5ESU5HICAgIHRydWUgICBEZXByZWNhdGVkOiBFbmFibGUv - ZGlzYWJsZSBjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIGF0IHJ1bn - RpbWUbWzBtChtbMm0gICAgJEJQX1JVTlRJTUVfQ0VSVF9CSU5ESU5HX0RJU0FCTEVEICBm - YWxzZSAgRGlzYWJsZSBjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIG - F0IHJ1bnRpbWUbWzBtCgEAAAAAAAA5ICAbWzM0bUxhdW5jaCBIZWxwZXIbWzBtOiAbWzMz - bUNvbnRyaWJ1dGluZxtbMG0gdG8gbGF5ZXIKAQAAAAAAAGQbWzJtICAgIENyZWF0aW5nIC - 9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3NfY2EtY2VydGlmaWNhdGVzL2hlbHBlci9leGVj - LmQvY2EtY2VydGlmaWNhdGVzLWhlbHBlchtbMG0KAQAAAAAAACdQYWtldG8gQnVpbGRwYW - NrIGZvciBOb2RlIEVuZ2luZSA3LjUuMAoBAAAAAAAAICAgUmVzb2x2aW5nIE5vZGUgRW5n - aW5lIHZlcnNpb24KAQAAAAAAADMgICAgQ2FuZGlkYXRlIHZlcnNpb24gc291cmNlcyAoaW - 4gcHJpb3JpdHkgb3JkZXIpOgoBAAAAAAAALSAgICAgICAgICAgICAgICAtPiAiIgogICAg - ICA8dW5rbm93bj4gLT4gIiIKCgEAAAAAAAAzICAgIFNlbGVjdGVkIE5vZGUgRW5naW5lIH - ZlcnNpb24gKHVzaW5nICk6IDIyLjE4LjAKAQAAAAAAAAEKAQAAAAAAABogIEV4ZWN1dGlu - ZyBidWlsZCBwcm9jZXNzCgEAAAAAAAAjICAgIEluc3RhbGxpbmcgTm9kZSBFbmdpbmUgMj - IuMTguMAoBAAAAAAAAXCAgICAgIENvbXBsZXRlZCBpbiA1LjY1MnMKCiAgR2VuZXJhdGlu + EAAAAAAATXPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z + Y3JpcHRAMi4zLjEzID09PT09PT09CmNvdWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbG + RdIGluIHBhY2thZ2UuanNvbgplcnI6ICBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z + Y3JpcHRAMi4zLjEzICgxKQo9PT09PT09PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL2 + 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0 + KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL2 + 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgKDEpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1 + aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyA9PT09PT09PQpjb3VsZCBub3QgZm + luZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1 + aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyAoMSkKPT09PT09PT0gT3V0cHV0Oi + BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzID09PT09PT09CmNv + dWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRdIGluIHBhY2thZ2UuanNvbgplcnI6IC + BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzICgxKQo9PT09PT09 + PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgPT + 09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5q + c29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgKD + EpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 + QDIuMy4xMiA9PT09PT09PQpjb3VsZCBub3QgZmluZCBzY3JpcHQocykgW2J1aWxkXSBpbi + BwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 + QDIuMy4xMiAoMSkKNSBvZiAxMSBidWlsZHBhY2tzIHBhcnRpY2lwYXRpbmcKcGFrZXRvLW + J1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzIDMuMTAuNQpwYWtldG8tYnVpbGRwYWNrcy9u + b2RlLWVuZ2luZSAgICAgNy4xMi4yCnBha2V0by1idWlsZHBhY2tzL25wbS1pbnN0YWxsIC + AgICAyLjIuNQpwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXN0YXJ0ICAgICAgMi41LjEyCnBh + a2V0by1idWlsZHBhY2tzL25wbS1zdGFydCAgICAgICAyLjMuMTEKAQAAAAAAABgbWzM2bT + 09PT4gUkVTVE9SSU5HG1swbQoBAAAAAAAAFxtbMzZtPT09PiBCVUlMRElORxtbMG0KAQAA + AAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVyc2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZW + FkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCgEAAAAAAABMG1szNG0bWzBtChtbMzRtG1sx + bVBha2V0byBCdWlsZHBhY2sgZm9yIENBIENlcnRpZmljYXRlcxtbMG0bWzM0bSAzLjEwLj + UbWzBtCgEAAAAAAABEICAbWzM0OzI7M21odHRwczovL2dpdGh1Yi5jb20vcGFrZXRvLWJ1 + aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzG1swbQoBAAAAAAAAHyAgG1sybUJ1aWxkIENvbm + ZpZ3VyYXRpb246G1swbQoBAAAAAAAAWBtbMm0gICAgJEJQX0VNQkVEX0NFUlRTICAgICAg + ICAgICAgICAgICAgICBmYWxzZSAgRW1iZWQgY2VydGlmaWNhdGVzIGludG8gdGhlIGltYW + dlG1swbQoBAAAAAAAAghtbMm0gICAgJEJQX0VOQUJMRV9SVU5USU1FX0NFUlRfQklORElO + RyAgICB0cnVlICAgRGVwcmVjYXRlZDogRW5hYmxlL2Rpc2FibGUgY2VydGlmaWNhdGUgaG + VscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1swbQoBAAAAAAAAbxtbMm0g + ICAgJEJQX1JVTlRJTUVfQ0VSVF9CSU5ESU5HX0RJU0FCTEVEICBmYWxzZSAgRGlzYWJsZS + BjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIGF0IHJ1bnRpbWUbWzBt + CgEAAAAAAAA5ICAbWzM0bUxhdW5jaCBIZWxwZXIbWzBtOiAbWzMzbUNvbnRyaWJ1dGluZx + tbMG0gdG8gbGF5ZXIKAQAAAAAAAGQbWzJtICAgIENyZWF0aW5nIC9sYXllcnMvcGFrZXRv + LWJ1aWxkcGFja3NfY2EtY2VydGlmaWNhdGVzL2hlbHBlci9leGVjLmQvY2EtY2VydGlmaW + NhdGVzLWhlbHBlchtbMG0KAQAAAAAAAKhQYWtldG8gQnVpbGRwYWNrIGZvciBOb2RlIEVu + Z2luZSA3LjEyLjIKICBSZXNvbHZpbmcgTm9kZSBFbmdpbmUgdmVyc2lvbgogICAgQ2FuZG + lkYXRlIHZlcnNpb24gc291cmNlcyAoaW4gcHJpb3JpdHkgb3JkZXIpOgogICAgICAgICAg + ICAgICAgLT4gIiIKICAgICAgPHVua25vd24+IC0+ICIiCgoBAAAAAAAANCAgICBTZWxlY3 + RlZCBOb2RlIEVuZ2luZSB2ZXJzaW9uICh1c2luZyApOiAyMi4yMS4xCgoBAAAAAAAAPSAg + RXhlY3V0aW5nIGJ1aWxkIHByb2Nlc3MKICAgIEluc3RhbGxpbmcgTm9kZSBFbmdpbmUgMj + IuMjEuMQoBAAAAAAAAXCAgICAgIENvbXBsZXRlZCBpbiA4LjkxNnMKCiAgR2VuZXJhdGlu ZyBTQk9NIGZvciAvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUtZW5naW5lL25vZG - UKAQAAAAAAABggICAgICBDb21wbGV0ZWQgaW4gNG1zCgoBAAAAAAAAICAgQ29uZmlndXJp - bmcgYnVpbGQgZW52aXJvbm1lbnQKAQAAAAAAAkEgICAgTk9ERV9FTlYgICAgIC0+ICJwcm - 9kdWN0aW9uIgogICAgTk9ERV9IT01FICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBh - Y2tzX25vZGUtZW5naW5lL25vZGUiCiAgICBOT0RFX09QVElPTlMgLT4gIi0tdXNlLW9wZW - 5zc2wtY2EiCiAgICBOT0RFX1ZFUkJPU0UgLT4gImZhbHNlIgoKICBDb25maWd1cmluZyBs - YXVuY2ggZW52aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlvbiIKIC - AgIE5PREVfSE9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVu - Z2luZS9ub2RlIgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNhIgogIC - AgTk9ERV9WRVJCT1NFIC0+ICJmYWxzZSIKCiAgICBXcml0aW5nIGV4ZWMuZC8wLW9wdGlt - aXplLW1lbW9yeQogICAgICBDYWxjdWxhdGVzIGF2YWlsYWJsZSBtZW1vcnkgYmFzZWQgb2 - 4gY29udGFpbmVyIGxpbWl0cyBhdCBsYXVuY2ggdGltZS4KICAgICAgTWFkZSBhdmFpbGFi - bGUgaW4gdGhlIE1FTU9SWV9BVkFJTEFCTEUgZW52aXJvbm1lbnQgdmFyaWFibGUuCiAgIC - BXcml0aW5nIGV4ZWMuZC8xLWluc3BlY3RvcgoKAQAAAAAAACdQYWtldG8gQnVpbGRwYWNr - IGZvciBOUE0gSW5zdGFsbCAyLjEuMAoBAAAAAAAAISAgUmVzb2x2aW5nIGluc3RhbGxhdG - lvbiBwcm9jZXNzCgEAAAAAAAAUICAgIFByb2Nlc3MgaW5wdXRzOgoBAAAAAAAAnCAgICAg - IG5vZGVfbW9kdWxlcyAgICAgIC0+ICJOb3QgZm91bmQiCiAgICAgIG5wbS1jYWNoZSAgIC - AgICAgIC0+ICJOb3QgZm91bmQiCiAgICAgIHBhY2thZ2UtbG9jay5qc29uIC0+ICJGb3Vu - ZCIKCiAgICBTZWxlY3RlZCBOUE0gYnVpbGQgcHJvY2VzczogJ25wbSBjaScKCgEAAAAAAA - AvICBFeGVjdXRpbmcgbGF1bmNoIGVudmlyb25tZW50IGluc3RhbGwgcHJvY2VzcwoBAAAA - AAAAWyAgICBSdW5uaW5nICducG0gY2kgLS11bnNhZmUtcGVybSAtLWNhY2hlIC9sYXllcn - MvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbnBtLWNhY2hlJwoBAAAAAAAAkSAg - ICAgIAogICAgICBhZGRlZCA1NyBwYWNrYWdlcywgYW5kIGF1ZGl0ZWQgNTggcGFja2FnZX - MgaW4gMXMKICAgICAgCiAgICAgIDcgcGFja2FnZXMgYXJlIGxvb2tpbmcgZm9yIGZ1bmRp - bmcKICAgICAgICBydW4gYG5wbSBmdW5kYCBmb3IgZGV0YWlscwoBAAAAAAAAmCAgICAgIA - ogICAgICA2IHZ1bG5lcmFiaWxpdGllcyAoMyBsb3csIDMgaGlnaCkKICAgICAgCiAgICAg - IFRvIGFkZHJlc3MgYWxsIGlzc3VlcywgcnVuOgogICAgICAgIG5wbSBhdWRpdCBmaXgKIC - AgICAgCiAgICAgIFJ1biBgbnBtIGF1ZGl0YCBmb3IgZGV0YWlscy4KAQAAAAAAAO4gICAg - ICBucG0gbm90aWNlCiAgICAgIG5wbSBub3RpY2UgTmV3IG1ham9yIHZlcnNpb24gb2Ygbn - BtIGF2YWlsYWJsZSEgMTAuOS4zIC0+IDExLjYuMAogICAgICBucG0gbm90aWNlIENoYW5n - ZWxvZzogaHR0cHM6Ly9naXRodWIuY29tL25wbS9jbGkvcmVsZWFzZXMvdGFnL3YxMS42Lj - AKICAgICAgbnBtIG5vdGljZSBUbyB1cGRhdGUgcnVuOiBucG0gaW5zdGFsbCAtZyBucG1A - MTEuNi4wCiAgICAgIG5wbSBub3RpY2UKAQAAAAAAABsgICAgICBDb21wbGV0ZWQgaW4gMS - 42NThzCgoBAAAAAAAAISAgQ29uZmlndXJpbmcgbGF1bmNoIGVudmlyb25tZW50CgEAAAAA - AAFOICAgIE5PREVfUFJPSkVDVF9QQVRIICAgLT4gIi93b3Jrc3BhY2UiCiAgICBOUE1fQ0 - 9ORklHX0xPR0xFVkVMIC0+ICJlcnJvciIKICAgIFBBVEggICAgICAgICAgICAgICAgLT4g - Ii9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZHVsZX - Mvbm9kZV9tb2R1bGVzLy5iaW5fbG9jYWw6JFBBVEg6L2xheWVycy9wYWtldG8tYnVpbGRw - YWNrc19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcy9ub2RlX21vZHVsZXMvLmJpbiIKCi - AgR2VuZXJhdGluZyBTQk9NIGZvciAvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25wbS1p - bnN0YWxsL2xhdW5jaC1tb2R1bGVzCgEAAAAAAAAaICAgICAgQ29tcGxldGVkIGluIDk1OG - 1zCgoBAAAAAAAAAQoBAAAAAAAAJlBha2V0byBCdWlsZHBhY2sgZm9yIE5vZGUgU3RhcnQg - Mi40LjIKAQAAAAAAAB4gIEFzc2lnbmluZyBsYXVuY2ggcHJvY2Vzc2VzOgoBAAAAAAAAIi - AgICB3ZWIgKGRlZmF1bHQpOiBub2RlIGluZGV4LmpzCgoBAAAAAAAAJVBha2V0byBCdWls - ZHBhY2sgZm9yIE5QTSBTdGFydCAyLjIuMgoBAAAAAAAAHiAgQXNzaWduaW5nIGxhdW5jaC - Bwcm9jZXNzZXM6CgEAAAAAAAArICAgIHdlYiAoZGVmYXVsdCk6IHNoIC93b3Jrc3BhY2Uv - c3RhcnQuc2gKCgEAAAAAAAAYG1szNm09PT0+IEVYUE9SVElORxtbMG0KAQAAAAAAADhBZG - RpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL2NhLWNlcnRpZmljYXRlczpoZWxwZXIn - CgEAAAAAAAAyQWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZT - pub2RlJwoBAAAAAAAAPEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvbnBtLWlu - c3RhbGw6bGF1bmNoLW1vZHVsZXMnCgEAAAAAAAAyQWRkaW5nIGxheWVyICdidWlsZHBhY2 - tzaW8vbGlmZWN5Y2xlOmxhdW5jaC5zYm9tJwoBAAAAAAAAF0FkZGVkIDEvMSBhcHAgbGF5 - ZXIocykKAQAAAAAAAC9BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saWZlY3ljbGU6bG - F1bmNoZXInCgEAAAAAAAAtQWRkaW5nIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xl - OmNvbmZpZycKAQAAAAAAADRBZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saWZlY3ljbG - U6cHJvY2Vzcy10eXBlcycKAQAAAAAAADBBZGRpbmcgbGFiZWwgJ2lvLmJ1aWxkcGFja3Mu - bGlmZWN5Y2xlLm1ldGFkYXRhJwoBAAAAAAAALEFkZGluZyBsYWJlbCAnaW8uYnVpbGRwYW - Nrcy5idWlsZC5tZXRhZGF0YScKAQAAAAAAAC5BZGRpbmcgbGFiZWwgJ2lvLmJ1aWxkcGFj - a3MucHJvamVjdC5tZXRhZGF0YScKAQAAAAAAACNTZXR0aW5nIGRlZmF1bHQgcHJvY2Vzcy - B0eXBlICd3ZWInCgEAAAAAAABaU2F2aW5nIHJnLmZyLXBhci5zY3cuY2xvdWQvZnVuY3Nj - d2NsaXRjdG5yZGVwbG95YnA1cndjb3h2eC9jbGktdC1jdG5yLWRlcGxveS1icDpsYXRlc3 - QuLi4KAQAAAAAAAHEqKiogSW1hZ2VzIChmODUxNjUyYWFhMjQpOgogICAgICByZy5mci1w - YXIuc2N3LmNsb3VkL2Z1bmNzY3djbGl0Y3RucmRlcGxveWJwNXJ3Y294dngvY2xpLXQtY3 - Ruci1kZXBsb3ktYnA6bGF0ZXN0CgEAAAAAAAA4QWRkaW5nIGNhY2hlIGxheWVyICdwYWtl - dG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZTpub2RlJwoBAAAAAAAAPUFkZGluZyBjYWNoZS - BsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvbnBtLWluc3RhbGw6bnBtLWNhY2hlJwoBAAAA - AAAAN0FkZGluZyBjYWNoZSBsYXllciAnYnVpbGRwYWNrc2lvL2xpZmVjeWNsZTpjYWNoZS - 5zYm9tJwo= + UKAQAAAAAAABcgICAgICBDb21wbGV0ZWQgaW4gMHMKCgEAAAAAAAJhICBDb25maWd1cmlu + ZyBidWlsZCBlbnZpcm9ubWVudAogICAgTk9ERV9FTlYgICAgIC0+ICJwcm9kdWN0aW9uIg + ogICAgTk9ERV9IT01FICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUt + ZW5naW5lL25vZGUiCiAgICBOT0RFX09QVElPTlMgLT4gIi0tdXNlLW9wZW5zc2wtY2EiCi + AgICBOT0RFX1ZFUkJPU0UgLT4gImZhbHNlIgoKICBDb25maWd1cmluZyBsYXVuY2ggZW52 + aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlvbiIKICAgIE5PREVfSE + 9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVuZ2luZS9ub2Rl + IgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNhIgogICAgTk9ERV9WRV + JCT1NFIC0+ICJmYWxzZSIKCiAgICBXcml0aW5nIGV4ZWMuZC8wLW9wdGltaXplLW1lbW9y + eQogICAgICBDYWxjdWxhdGVzIGF2YWlsYWJsZSBtZW1vcnkgYmFzZWQgb24gY29udGFpbm + VyIGxpbWl0cyBhdCBsYXVuY2ggdGltZS4KICAgICAgTWFkZSBhdmFpbGFibGUgaW4gdGhl + IE1FTU9SWV9BVkFJTEFCTEUgZW52aXJvbm1lbnQgdmFyaWFibGUuCiAgICBXcml0aW5nIG + V4ZWMuZC8xLWluc3BlY3RvcgoKAQAAAAAAACdQYWtldG8gQnVpbGRwYWNrIGZvciBOUE0g + SW5zdGFsbCAyLjIuNQoBAAAAAAAANSAgUmVzb2x2aW5nIGluc3RhbGxhdGlvbiBwcm9jZX + NzCiAgICBQcm9jZXNzIGlucHV0czoKAQAAAAAAAHIgICAgICBub2RlX21vZHVsZXMgICAg + ICAtPiAiTm90IGZvdW5kIgogICAgICBucG0tY2FjaGUgICAgICAgICAtPiAiTm90IGZvdW + 5kIgogICAgICBwYWNrYWdlLWxvY2suanNvbiAtPiAiRm91bmQiCgoBAAAAAAAAKiAgICBT + ZWxlY3RlZCBOUE0gYnVpbGQgcHJvY2VzczogJ25wbSBjaScKCgEAAAAAAAAvICBFeGVjdX + RpbmcgbGF1bmNoIGVudmlyb25tZW50IGluc3RhbGwgcHJvY2VzcwoBAAAAAAAAWyAgICBS + dW5uaW5nICducG0gY2kgLS11bnNhZmUtcGVybSAtLWNhY2hlIC9sYXllcnMvcGFrZXRvLW + J1aWxkcGFja3NfbnBtLWluc3RhbGwvbnBtLWNhY2hlJwoBAAAAAAAAkSAgICAgIAogICAg + ICBhZGRlZCA1NyBwYWNrYWdlcywgYW5kIGF1ZGl0ZWQgNTggcGFja2FnZXMgaW4gMXMKIC + AgICAgCiAgICAgIDcgcGFja2FnZXMgYXJlIGxvb2tpbmcgZm9yIGZ1bmRpbmcKICAgICAg + ICBydW4gYG5wbSBmdW5kYCBmb3IgZGV0YWlscwoBAAAAAAAAmCAgICAgIAogICAgICA2IH + Z1bG5lcmFiaWxpdGllcyAoMyBsb3csIDMgaGlnaCkKICAgICAgCiAgICAgIFRvIGFkZHJl + c3MgYWxsIGlzc3VlcywgcnVuOgogICAgICAgIG5wbSBhdWRpdCBmaXgKICAgICAgCiAgIC + AgIFJ1biBgbnBtIGF1ZGl0YCBmb3IgZGV0YWlscy4KAQAAAAAAAO4gICAgICBucG0gbm90 + aWNlCiAgICAgIG5wbSBub3RpY2UgTmV3IG1ham9yIHZlcnNpb24gb2YgbnBtIGF2YWlsYW + JsZSEgMTAuOS40IC0+IDExLjcuMAogICAgICBucG0gbm90aWNlIENoYW5nZWxvZzogaHR0 + cHM6Ly9naXRodWIuY29tL25wbS9jbGkvcmVsZWFzZXMvdGFnL3YxMS43LjAKICAgICAgbn + BtIG5vdGljZSBUbyB1cGRhdGUgcnVuOiBucG0gaW5zdGFsbCAtZyBucG1AMTEuNy4wCiAg + ICAgIG5wbSBub3RpY2UKAQAAAAAAAYogICAgICBDb21wbGV0ZWQgaW4gMS40OTdzCgogIE + NvbmZpZ3VyaW5nIGxhdW5jaCBlbnZpcm9ubWVudAogICAgTk9ERV9QUk9KRUNUX1BBVEgg + ICAtPiAiL3dvcmtzcGFjZSIKICAgIE5QTV9DT05GSUdfTE9HTEVWRUwgLT4gImVycm9yIg + ogICAgUEFUSCAgICAgICAgICAgICAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNr + c19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcy9ub2RlX21vZHVsZXMvLmJpbl9sb2NhbD + okUEFUSDovbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25wbS1pbnN0YWxsL2xhdW5jaC1t + b2R1bGVzL25vZGVfbW9kdWxlcy8uYmluIgoKICBHZW5lcmF0aW5nIFNCT00gZm9yIC9sYX + llcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZHVsZXMKAQAA + AAAAABsgICAgICBDb21wbGV0ZWQgaW4gMS44MDhzCgoBAAAAAAAAAQoBAAAAAAAAZ1Bha2 + V0byBCdWlsZHBhY2sgZm9yIE5vZGUgU3RhcnQgMi41LjEyCiAgQXNzaWduaW5nIGxhdW5j + aCBwcm9jZXNzZXM6CiAgICB3ZWIgKGRlZmF1bHQpOiBub2RlIGluZGV4LmpzCgoBAAAAAA + AAJlBha2V0byBCdWlsZHBhY2sgZm9yIE5QTSBTdGFydCAyLjMuMTEKAQAAAAAAAEkgIEFz + c2lnbmluZyBsYXVuY2ggcHJvY2Vzc2VzOgogICAgd2ViIChkZWZhdWx0KTogc2ggL3dvcm + tzcGFjZS9zdGFydC5zaAoKAQAAAAAAABgbWzM2bT09PT4gRVhQT1JUSU5HG1swbQoBAAAA + AAAAOEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzOm + hlbHBlcicKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUt + ZW5naW5lOm5vZGUnCgEAAAAAAAA8QWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy + 9ucG0taW5zdGFsbDpsYXVuY2gtbW9kdWxlcycKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ2J1 + aWxkcGFja3Npby9saWZlY3ljbGU6bGF1bmNoLnNib20nCgEAAAAAAAAXQWRkZWQgMS8xIG + FwcCBsYXllcihzKQoBAAAAAAAAL0FkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xpZmVj + eWNsZTpsYXVuY2hlcicKAQAAAAAAAC1BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saW + ZlY3ljbGU6Y29uZmlnJwoBAAAAAAAANEFkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xp + ZmVjeWNsZTpwcm9jZXNzLXR5cGVzJwoBAAAAAAAAMEFkZGluZyBsYWJlbCAnaW8uYnVpbG + RwYWNrcy5saWZlY3ljbGUubWV0YWRhdGEnCgEAAAAAAAAsQWRkaW5nIGxhYmVsICdpby5i + dWlsZHBhY2tzLmJ1aWxkLm1ldGFkYXRhJwoBAAAAAAAALkFkZGluZyBsYWJlbCAnaW8uYn + VpbGRwYWNrcy5wcm9qZWN0Lm1ldGFkYXRhJwoBAAAAAAAAI1NldHRpbmcgZGVmYXVsdCBw + cm9jZXNzIHR5cGUgJ3dlYicKAQAAAAAAAFpTYXZpbmcgcmcuZnItcGFyLnNjdy5jbG91ZC + 9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1kdXlpL2NsaS10LWN0bnItZGVwbG95LWJw + OmxhdGVzdC4uLgoBAAAAAAAAcSoqKiBJbWFnZXMgKDBkZTk4NjdlMjBlNSk6CiAgICAgIH + JnLmZyLXBhci5zY3cuY2xvdWQvZnVuY3Njd2NsaXRjdG5yZGVwbG95YnB6bGltZHV5aS9j + bGktdC1jdG5yLWRlcGxveS1icDpsYXRlc3QKAQAAAAAAADhBZGRpbmcgY2FjaGUgbGF5ZX + IgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUtZW5naW5lOm5vZGUnCgEAAAAAAAA9QWRkaW5n + IGNhY2hlIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ucG0taW5zdGFsbDpucG0tY2FjaG + UnCgEAAAAAAAA3QWRkaW5nIGNhY2hlIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xl + OmNhY2hlLnNib20nCg== form: {} headers: Connection: @@ -7161,130 +808,129 @@ interactions: - text/plain Upgrade: - tcp - url: http://%2Fvar%2Frun%2Fdocker.sock/containers/ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632/attach?stderr=1&stdout=1&stream=1 + url: http://%2Fvar%2Frun%2Fdocker.sock/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/attach?stderr=1&stdout=1&stream=1 method: POST response: body: !!binary | AQAAAAAAABgbWzM2bT09PT4gQU5BTFlaSU5HG1swbQoBAAAAAAAAbEltYWdlIHdpdGggbm - FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licDVyd2Nv - eHZ4L2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdCIgbm90IGZvdW5kCgEAAAAAAAAYG1 + FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1k + dXlpL2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdCIgbm90IGZvdW5kCgEAAAAAAAAYG1 szNm09PT0+IERFVEVDVElORxtbMG0KAQAAAAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVy c2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZWFkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCg - EAAAAAAATIPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z - Y3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF - 0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNj - cmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2 - RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMp - IFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZG - UtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRw - YWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2 - NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBh - Y2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG - 8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY291bGQgbm90 - IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by - 1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT0gT3V0cHV0 - OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09PT09PT0KY2 - 91bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjog - IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkKPT09PT09PT - 0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4yLjIgPT09 - PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc2 - 9uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjIuMiAoMSkK - NSBvZiAxMCBidWlsZHBhY2tzIHBhcnRpY2lwYXRpbmcKcGFrZXRvLWJ1aWxkcGFja3MvY2 - EtY2VydGlmaWNhdGVzIDMuMTAuNApwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZSAg - ICAgNy41LjAKcGFrZXRvLWJ1aWxkcGFja3MvbnBtLWluc3RhbGwgICAgIDIuMS4wCnBha2 - V0by1idWlsZHBhY2tzL25vZGUtc3RhcnQgICAgICAyLjQuMgpwYWtldG8tYnVpbGRwYWNr - cy9ucG0tc3RhcnQgICAgICAgMi4yLjIKAQAAAAAAABgbWzM2bT09PT4gUkVTVE9SSU5HG1 - swbQoBAAAAAAAAFxtbMzZtPT09PiBCVUlMRElORxtbMG0KAQAAAAAAAEp0YXJnZXQgZGlz - dHJvIG5hbWUvdmVyc2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZWFkaW5nIC9ldGMvb3Mtcm - VsZWFzZSBmaWxlCgEAAAAAAACQG1szNG0bWzBtChtbMzRtG1sxbVBha2V0byBCdWlsZHBh - Y2sgZm9yIENBIENlcnRpZmljYXRlcxtbMG0bWzM0bSAzLjEwLjQbWzBtCiAgG1szNDsyOz - NtaHR0cHM6Ly9naXRodWIuY29tL3Bha2V0by1idWlsZHBhY2tzL2NhLWNlcnRpZmljYXRl - cxtbMG0KAQAAAAAAAB8gIBtbMm1CdWlsZCBDb25maWd1cmF0aW9uOhtbMG0KAQAAAAAAAU - kbWzJtICAgICRCUF9FTUJFRF9DRVJUUyAgICAgICAgICAgICAgICAgICAgZmFsc2UgIEVt - YmVkIGNlcnRpZmljYXRlcyBpbnRvIHRoZSBpbWFnZRtbMG0KG1sybSAgICAkQlBfRU5BQk - xFX1JVTlRJTUVfQ0VSVF9CSU5ESU5HICAgIHRydWUgICBEZXByZWNhdGVkOiBFbmFibGUv - ZGlzYWJsZSBjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIGF0IHJ1bn - RpbWUbWzBtChtbMm0gICAgJEJQX1JVTlRJTUVfQ0VSVF9CSU5ESU5HX0RJU0FCTEVEICBm - YWxzZSAgRGlzYWJsZSBjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIG - F0IHJ1bnRpbWUbWzBtCgEAAAAAAAA5ICAbWzM0bUxhdW5jaCBIZWxwZXIbWzBtOiAbWzMz - bUNvbnRyaWJ1dGluZxtbMG0gdG8gbGF5ZXIKAQAAAAAAAGQbWzJtICAgIENyZWF0aW5nIC - 9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3NfY2EtY2VydGlmaWNhdGVzL2hlbHBlci9leGVj - LmQvY2EtY2VydGlmaWNhdGVzLWhlbHBlchtbMG0KAQAAAAAAACdQYWtldG8gQnVpbGRwYW - NrIGZvciBOb2RlIEVuZ2luZSA3LjUuMAoBAAAAAAAAICAgUmVzb2x2aW5nIE5vZGUgRW5n - aW5lIHZlcnNpb24KAQAAAAAAADMgICAgQ2FuZGlkYXRlIHZlcnNpb24gc291cmNlcyAoaW - 4gcHJpb3JpdHkgb3JkZXIpOgoBAAAAAAAALSAgICAgICAgICAgICAgICAtPiAiIgogICAg - ICA8dW5rbm93bj4gLT4gIiIKCgEAAAAAAAAzICAgIFNlbGVjdGVkIE5vZGUgRW5naW5lIH - ZlcnNpb24gKHVzaW5nICk6IDIyLjE4LjAKAQAAAAAAAAEKAQAAAAAAABogIEV4ZWN1dGlu - ZyBidWlsZCBwcm9jZXNzCgEAAAAAAAAjICAgIEluc3RhbGxpbmcgTm9kZSBFbmdpbmUgMj - IuMTguMAoBAAAAAAAAXCAgICAgIENvbXBsZXRlZCBpbiA1LjY1MnMKCiAgR2VuZXJhdGlu + EAAAAAAATXPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z + Y3JpcHRAMi4zLjEzID09PT09PT09CmNvdWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbG + RdIGluIHBhY2thZ2UuanNvbgplcnI6ICBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z + Y3JpcHRAMi4zLjEzICgxKQo9PT09PT09PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL2 + 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0 + KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL2 + 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgKDEpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1 + aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyA9PT09PT09PQpjb3VsZCBub3QgZm + luZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1 + aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyAoMSkKPT09PT09PT0gT3V0cHV0Oi + BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzID09PT09PT09CmNv + dWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRdIGluIHBhY2thZ2UuanNvbgplcnI6IC + BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzICgxKQo9PT09PT09 + PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgPT + 09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5q + c29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgKD + EpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 + QDIuMy4xMiA9PT09PT09PQpjb3VsZCBub3QgZmluZCBzY3JpcHQocykgW2J1aWxkXSBpbi + BwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 + QDIuMy4xMiAoMSkKNSBvZiAxMSBidWlsZHBhY2tzIHBhcnRpY2lwYXRpbmcKcGFrZXRvLW + J1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzIDMuMTAuNQpwYWtldG8tYnVpbGRwYWNrcy9u + b2RlLWVuZ2luZSAgICAgNy4xMi4yCnBha2V0by1idWlsZHBhY2tzL25wbS1pbnN0YWxsIC + AgICAyLjIuNQpwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXN0YXJ0ICAgICAgMi41LjEyCnBh + a2V0by1idWlsZHBhY2tzL25wbS1zdGFydCAgICAgICAyLjMuMTEKAQAAAAAAABgbWzM2bT + 09PT4gUkVTVE9SSU5HG1swbQoBAAAAAAAAFxtbMzZtPT09PiBCVUlMRElORxtbMG0KAQAA + AAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVyc2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZW + FkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCgEAAAAAAABMG1szNG0bWzBtChtbMzRtG1sx + bVBha2V0byBCdWlsZHBhY2sgZm9yIENBIENlcnRpZmljYXRlcxtbMG0bWzM0bSAzLjEwLj + UbWzBtCgEAAAAAAABEICAbWzM0OzI7M21odHRwczovL2dpdGh1Yi5jb20vcGFrZXRvLWJ1 + aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzG1swbQoBAAAAAAAAHyAgG1sybUJ1aWxkIENvbm + ZpZ3VyYXRpb246G1swbQoBAAAAAAAAWBtbMm0gICAgJEJQX0VNQkVEX0NFUlRTICAgICAg + ICAgICAgICAgICAgICBmYWxzZSAgRW1iZWQgY2VydGlmaWNhdGVzIGludG8gdGhlIGltYW + dlG1swbQoBAAAAAAAAghtbMm0gICAgJEJQX0VOQUJMRV9SVU5USU1FX0NFUlRfQklORElO + RyAgICB0cnVlICAgRGVwcmVjYXRlZDogRW5hYmxlL2Rpc2FibGUgY2VydGlmaWNhdGUgaG + VscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1swbQoBAAAAAAAAbxtbMm0g + ICAgJEJQX1JVTlRJTUVfQ0VSVF9CSU5ESU5HX0RJU0FCTEVEICBmYWxzZSAgRGlzYWJsZS + BjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIGF0IHJ1bnRpbWUbWzBt + CgEAAAAAAAA5ICAbWzM0bUxhdW5jaCBIZWxwZXIbWzBtOiAbWzMzbUNvbnRyaWJ1dGluZx + tbMG0gdG8gbGF5ZXIKAQAAAAAAAGQbWzJtICAgIENyZWF0aW5nIC9sYXllcnMvcGFrZXRv + LWJ1aWxkcGFja3NfY2EtY2VydGlmaWNhdGVzL2hlbHBlci9leGVjLmQvY2EtY2VydGlmaW + NhdGVzLWhlbHBlchtbMG0KAQAAAAAAAKhQYWtldG8gQnVpbGRwYWNrIGZvciBOb2RlIEVu + Z2luZSA3LjEyLjIKICBSZXNvbHZpbmcgTm9kZSBFbmdpbmUgdmVyc2lvbgogICAgQ2FuZG + lkYXRlIHZlcnNpb24gc291cmNlcyAoaW4gcHJpb3JpdHkgb3JkZXIpOgogICAgICAgICAg + ICAgICAgLT4gIiIKICAgICAgPHVua25vd24+IC0+ICIiCgoBAAAAAAAANCAgICBTZWxlY3 + RlZCBOb2RlIEVuZ2luZSB2ZXJzaW9uICh1c2luZyApOiAyMi4yMS4xCgoBAAAAAAAAPSAg + RXhlY3V0aW5nIGJ1aWxkIHByb2Nlc3MKICAgIEluc3RhbGxpbmcgTm9kZSBFbmdpbmUgMj + IuMjEuMQoBAAAAAAAAXCAgICAgIENvbXBsZXRlZCBpbiA4LjkxNnMKCiAgR2VuZXJhdGlu ZyBTQk9NIGZvciAvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUtZW5naW5lL25vZG - UKAQAAAAAAABggICAgICBDb21wbGV0ZWQgaW4gNG1zCgoBAAAAAAAAICAgQ29uZmlndXJp - bmcgYnVpbGQgZW52aXJvbm1lbnQKAQAAAAAAAkEgICAgTk9ERV9FTlYgICAgIC0+ICJwcm - 9kdWN0aW9uIgogICAgTk9ERV9IT01FICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBh - Y2tzX25vZGUtZW5naW5lL25vZGUiCiAgICBOT0RFX09QVElPTlMgLT4gIi0tdXNlLW9wZW - 5zc2wtY2EiCiAgICBOT0RFX1ZFUkJPU0UgLT4gImZhbHNlIgoKICBDb25maWd1cmluZyBs - YXVuY2ggZW52aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlvbiIKIC - AgIE5PREVfSE9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVu - Z2luZS9ub2RlIgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNhIgogIC - AgTk9ERV9WRVJCT1NFIC0+ICJmYWxzZSIKCiAgICBXcml0aW5nIGV4ZWMuZC8wLW9wdGlt - aXplLW1lbW9yeQogICAgICBDYWxjdWxhdGVzIGF2YWlsYWJsZSBtZW1vcnkgYmFzZWQgb2 - 4gY29udGFpbmVyIGxpbWl0cyBhdCBsYXVuY2ggdGltZS4KICAgICAgTWFkZSBhdmFpbGFi - bGUgaW4gdGhlIE1FTU9SWV9BVkFJTEFCTEUgZW52aXJvbm1lbnQgdmFyaWFibGUuCiAgIC - BXcml0aW5nIGV4ZWMuZC8xLWluc3BlY3RvcgoKAQAAAAAAACdQYWtldG8gQnVpbGRwYWNr - IGZvciBOUE0gSW5zdGFsbCAyLjEuMAoBAAAAAAAAISAgUmVzb2x2aW5nIGluc3RhbGxhdG - lvbiBwcm9jZXNzCgEAAAAAAAAUICAgIFByb2Nlc3MgaW5wdXRzOgoBAAAAAAAAnCAgICAg - IG5vZGVfbW9kdWxlcyAgICAgIC0+ICJOb3QgZm91bmQiCiAgICAgIG5wbS1jYWNoZSAgIC - AgICAgIC0+ICJOb3QgZm91bmQiCiAgICAgIHBhY2thZ2UtbG9jay5qc29uIC0+ICJGb3Vu - ZCIKCiAgICBTZWxlY3RlZCBOUE0gYnVpbGQgcHJvY2VzczogJ25wbSBjaScKCgEAAAAAAA - AvICBFeGVjdXRpbmcgbGF1bmNoIGVudmlyb25tZW50IGluc3RhbGwgcHJvY2VzcwoBAAAA - AAAAWyAgICBSdW5uaW5nICducG0gY2kgLS11bnNhZmUtcGVybSAtLWNhY2hlIC9sYXllcn - MvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbnBtLWNhY2hlJwoBAAAAAAAAkSAg - ICAgIAogICAgICBhZGRlZCA1NyBwYWNrYWdlcywgYW5kIGF1ZGl0ZWQgNTggcGFja2FnZX - MgaW4gMXMKICAgICAgCiAgICAgIDcgcGFja2FnZXMgYXJlIGxvb2tpbmcgZm9yIGZ1bmRp - bmcKICAgICAgICBydW4gYG5wbSBmdW5kYCBmb3IgZGV0YWlscwoBAAAAAAAAmCAgICAgIA - ogICAgICA2IHZ1bG5lcmFiaWxpdGllcyAoMyBsb3csIDMgaGlnaCkKICAgICAgCiAgICAg - IFRvIGFkZHJlc3MgYWxsIGlzc3VlcywgcnVuOgogICAgICAgIG5wbSBhdWRpdCBmaXgKIC - AgICAgCiAgICAgIFJ1biBgbnBtIGF1ZGl0YCBmb3IgZGV0YWlscy4KAQAAAAAAAO4gICAg - ICBucG0gbm90aWNlCiAgICAgIG5wbSBub3RpY2UgTmV3IG1ham9yIHZlcnNpb24gb2Ygbn - BtIGF2YWlsYWJsZSEgMTAuOS4zIC0+IDExLjYuMAogICAgICBucG0gbm90aWNlIENoYW5n - ZWxvZzogaHR0cHM6Ly9naXRodWIuY29tL25wbS9jbGkvcmVsZWFzZXMvdGFnL3YxMS42Lj - AKICAgICAgbnBtIG5vdGljZSBUbyB1cGRhdGUgcnVuOiBucG0gaW5zdGFsbCAtZyBucG1A - MTEuNi4wCiAgICAgIG5wbSBub3RpY2UKAQAAAAAAABsgICAgICBDb21wbGV0ZWQgaW4gMS - 42NThzCgoBAAAAAAAAISAgQ29uZmlndXJpbmcgbGF1bmNoIGVudmlyb25tZW50CgEAAAAA - AAFOICAgIE5PREVfUFJPSkVDVF9QQVRIICAgLT4gIi93b3Jrc3BhY2UiCiAgICBOUE1fQ0 - 9ORklHX0xPR0xFVkVMIC0+ICJlcnJvciIKICAgIFBBVEggICAgICAgICAgICAgICAgLT4g - Ii9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZHVsZX - Mvbm9kZV9tb2R1bGVzLy5iaW5fbG9jYWw6JFBBVEg6L2xheWVycy9wYWtldG8tYnVpbGRw - YWNrc19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcy9ub2RlX21vZHVsZXMvLmJpbiIKCi - AgR2VuZXJhdGluZyBTQk9NIGZvciAvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25wbS1p - bnN0YWxsL2xhdW5jaC1tb2R1bGVzCgEAAAAAAAAaICAgICAgQ29tcGxldGVkIGluIDk1OG - 1zCgoBAAAAAAAAAQoBAAAAAAAAJlBha2V0byBCdWlsZHBhY2sgZm9yIE5vZGUgU3RhcnQg - Mi40LjIKAQAAAAAAAB4gIEFzc2lnbmluZyBsYXVuY2ggcHJvY2Vzc2VzOgoBAAAAAAAAIi - AgICB3ZWIgKGRlZmF1bHQpOiBub2RlIGluZGV4LmpzCgoBAAAAAAAAJVBha2V0byBCdWls - ZHBhY2sgZm9yIE5QTSBTdGFydCAyLjIuMgoBAAAAAAAAHiAgQXNzaWduaW5nIGxhdW5jaC - Bwcm9jZXNzZXM6CgEAAAAAAAArICAgIHdlYiAoZGVmYXVsdCk6IHNoIC93b3Jrc3BhY2Uv - c3RhcnQuc2gKCgEAAAAAAAAYG1szNm09PT0+IEVYUE9SVElORxtbMG0KAQAAAAAAADhBZG - RpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL2NhLWNlcnRpZmljYXRlczpoZWxwZXIn - CgEAAAAAAAAyQWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZT - pub2RlJwoBAAAAAAAAPEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvbnBtLWlu - c3RhbGw6bGF1bmNoLW1vZHVsZXMnCgEAAAAAAAAyQWRkaW5nIGxheWVyICdidWlsZHBhY2 - tzaW8vbGlmZWN5Y2xlOmxhdW5jaC5zYm9tJwoBAAAAAAAAF0FkZGVkIDEvMSBhcHAgbGF5 - ZXIocykKAQAAAAAAAC9BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saWZlY3ljbGU6bG - F1bmNoZXInCgEAAAAAAAAtQWRkaW5nIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xl - OmNvbmZpZycKAQAAAAAAADRBZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saWZlY3ljbG - U6cHJvY2Vzcy10eXBlcycKAQAAAAAAADBBZGRpbmcgbGFiZWwgJ2lvLmJ1aWxkcGFja3Mu - bGlmZWN5Y2xlLm1ldGFkYXRhJwoBAAAAAAAALEFkZGluZyBsYWJlbCAnaW8uYnVpbGRwYW - Nrcy5idWlsZC5tZXRhZGF0YScKAQAAAAAAAC5BZGRpbmcgbGFiZWwgJ2lvLmJ1aWxkcGFj - a3MucHJvamVjdC5tZXRhZGF0YScKAQAAAAAAACNTZXR0aW5nIGRlZmF1bHQgcHJvY2Vzcy - B0eXBlICd3ZWInCgEAAAAAAABaU2F2aW5nIHJnLmZyLXBhci5zY3cuY2xvdWQvZnVuY3Nj - d2NsaXRjdG5yZGVwbG95YnA1cndjb3h2eC9jbGktdC1jdG5yLWRlcGxveS1icDpsYXRlc3 - QuLi4KAQAAAAAAAHEqKiogSW1hZ2VzIChmODUxNjUyYWFhMjQpOgogICAgICByZy5mci1w - YXIuc2N3LmNsb3VkL2Z1bmNzY3djbGl0Y3RucmRlcGxveWJwNXJ3Y294dngvY2xpLXQtY3 - Ruci1kZXBsb3ktYnA6bGF0ZXN0CgEAAAAAAAA4QWRkaW5nIGNhY2hlIGxheWVyICdwYWtl - dG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZTpub2RlJwoBAAAAAAAAPUFkZGluZyBjYWNoZS - BsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvbnBtLWluc3RhbGw6bnBtLWNhY2hlJwoBAAAA - AAAAN0FkZGluZyBjYWNoZSBsYXllciAnYnVpbGRwYWNrc2lvL2xpZmVjeWNsZTpjYWNoZS - 5zYm9tJwo= + UKAQAAAAAAABcgICAgICBDb21wbGV0ZWQgaW4gMHMKCgEAAAAAAAJhICBDb25maWd1cmlu + ZyBidWlsZCBlbnZpcm9ubWVudAogICAgTk9ERV9FTlYgICAgIC0+ICJwcm9kdWN0aW9uIg + ogICAgTk9ERV9IT01FICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUt + ZW5naW5lL25vZGUiCiAgICBOT0RFX09QVElPTlMgLT4gIi0tdXNlLW9wZW5zc2wtY2EiCi + AgICBOT0RFX1ZFUkJPU0UgLT4gImZhbHNlIgoKICBDb25maWd1cmluZyBsYXVuY2ggZW52 + aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlvbiIKICAgIE5PREVfSE + 9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVuZ2luZS9ub2Rl + IgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNhIgogICAgTk9ERV9WRV + JCT1NFIC0+ICJmYWxzZSIKCiAgICBXcml0aW5nIGV4ZWMuZC8wLW9wdGltaXplLW1lbW9y + eQogICAgICBDYWxjdWxhdGVzIGF2YWlsYWJsZSBtZW1vcnkgYmFzZWQgb24gY29udGFpbm + VyIGxpbWl0cyBhdCBsYXVuY2ggdGltZS4KICAgICAgTWFkZSBhdmFpbGFibGUgaW4gdGhl + IE1FTU9SWV9BVkFJTEFCTEUgZW52aXJvbm1lbnQgdmFyaWFibGUuCiAgICBXcml0aW5nIG + V4ZWMuZC8xLWluc3BlY3RvcgoKAQAAAAAAACdQYWtldG8gQnVpbGRwYWNrIGZvciBOUE0g + SW5zdGFsbCAyLjIuNQoBAAAAAAAANSAgUmVzb2x2aW5nIGluc3RhbGxhdGlvbiBwcm9jZX + NzCiAgICBQcm9jZXNzIGlucHV0czoKAQAAAAAAAHIgICAgICBub2RlX21vZHVsZXMgICAg + ICAtPiAiTm90IGZvdW5kIgogICAgICBucG0tY2FjaGUgICAgICAgICAtPiAiTm90IGZvdW + 5kIgogICAgICBwYWNrYWdlLWxvY2suanNvbiAtPiAiRm91bmQiCgoBAAAAAAAAKiAgICBT + ZWxlY3RlZCBOUE0gYnVpbGQgcHJvY2VzczogJ25wbSBjaScKCgEAAAAAAAAvICBFeGVjdX + RpbmcgbGF1bmNoIGVudmlyb25tZW50IGluc3RhbGwgcHJvY2VzcwoBAAAAAAAAWyAgICBS + dW5uaW5nICducG0gY2kgLS11bnNhZmUtcGVybSAtLWNhY2hlIC9sYXllcnMvcGFrZXRvLW + J1aWxkcGFja3NfbnBtLWluc3RhbGwvbnBtLWNhY2hlJwoBAAAAAAAAkSAgICAgIAogICAg + ICBhZGRlZCA1NyBwYWNrYWdlcywgYW5kIGF1ZGl0ZWQgNTggcGFja2FnZXMgaW4gMXMKIC + AgICAgCiAgICAgIDcgcGFja2FnZXMgYXJlIGxvb2tpbmcgZm9yIGZ1bmRpbmcKICAgICAg + ICBydW4gYG5wbSBmdW5kYCBmb3IgZGV0YWlscwoBAAAAAAAAmCAgICAgIAogICAgICA2IH + Z1bG5lcmFiaWxpdGllcyAoMyBsb3csIDMgaGlnaCkKICAgICAgCiAgICAgIFRvIGFkZHJl + c3MgYWxsIGlzc3VlcywgcnVuOgogICAgICAgIG5wbSBhdWRpdCBmaXgKICAgICAgCiAgIC + AgIFJ1biBgbnBtIGF1ZGl0YCBmb3IgZGV0YWlscy4KAQAAAAAAAO4gICAgICBucG0gbm90 + aWNlCiAgICAgIG5wbSBub3RpY2UgTmV3IG1ham9yIHZlcnNpb24gb2YgbnBtIGF2YWlsYW + JsZSEgMTAuOS40IC0+IDExLjcuMAogICAgICBucG0gbm90aWNlIENoYW5nZWxvZzogaHR0 + cHM6Ly9naXRodWIuY29tL25wbS9jbGkvcmVsZWFzZXMvdGFnL3YxMS43LjAKICAgICAgbn + BtIG5vdGljZSBUbyB1cGRhdGUgcnVuOiBucG0gaW5zdGFsbCAtZyBucG1AMTEuNy4wCiAg + ICAgIG5wbSBub3RpY2UKAQAAAAAAAYogICAgICBDb21wbGV0ZWQgaW4gMS40OTdzCgogIE + NvbmZpZ3VyaW5nIGxhdW5jaCBlbnZpcm9ubWVudAogICAgTk9ERV9QUk9KRUNUX1BBVEgg + ICAtPiAiL3dvcmtzcGFjZSIKICAgIE5QTV9DT05GSUdfTE9HTEVWRUwgLT4gImVycm9yIg + ogICAgUEFUSCAgICAgICAgICAgICAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNr + c19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcy9ub2RlX21vZHVsZXMvLmJpbl9sb2NhbD + okUEFUSDovbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25wbS1pbnN0YWxsL2xhdW5jaC1t + b2R1bGVzL25vZGVfbW9kdWxlcy8uYmluIgoKICBHZW5lcmF0aW5nIFNCT00gZm9yIC9sYX + llcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZHVsZXMKAQAA + AAAAABsgICAgICBDb21wbGV0ZWQgaW4gMS44MDhzCgoBAAAAAAAAAQoBAAAAAAAAZ1Bha2 + V0byBCdWlsZHBhY2sgZm9yIE5vZGUgU3RhcnQgMi41LjEyCiAgQXNzaWduaW5nIGxhdW5j + aCBwcm9jZXNzZXM6CiAgICB3ZWIgKGRlZmF1bHQpOiBub2RlIGluZGV4LmpzCgoBAAAAAA + AAJlBha2V0byBCdWlsZHBhY2sgZm9yIE5QTSBTdGFydCAyLjMuMTEKAQAAAAAAAEkgIEFz + c2lnbmluZyBsYXVuY2ggcHJvY2Vzc2VzOgogICAgd2ViIChkZWZhdWx0KTogc2ggL3dvcm + tzcGFjZS9zdGFydC5zaAoKAQAAAAAAABgbWzM2bT09PT4gRVhQT1JUSU5HG1swbQoBAAAA + AAAAOEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzOm + hlbHBlcicKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUt + ZW5naW5lOm5vZGUnCgEAAAAAAAA8QWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy + 9ucG0taW5zdGFsbDpsYXVuY2gtbW9kdWxlcycKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ2J1 + aWxkcGFja3Npby9saWZlY3ljbGU6bGF1bmNoLnNib20nCgEAAAAAAAAXQWRkZWQgMS8xIG + FwcCBsYXllcihzKQoBAAAAAAAAL0FkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xpZmVj + eWNsZTpsYXVuY2hlcicKAQAAAAAAAC1BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saW + ZlY3ljbGU6Y29uZmlnJwoBAAAAAAAANEFkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xp + ZmVjeWNsZTpwcm9jZXNzLXR5cGVzJwoBAAAAAAAAMEFkZGluZyBsYWJlbCAnaW8uYnVpbG + RwYWNrcy5saWZlY3ljbGUubWV0YWRhdGEnCgEAAAAAAAAsQWRkaW5nIGxhYmVsICdpby5i + dWlsZHBhY2tzLmJ1aWxkLm1ldGFkYXRhJwoBAAAAAAAALkFkZGluZyBsYWJlbCAnaW8uYn + VpbGRwYWNrcy5wcm9qZWN0Lm1ldGFkYXRhJwoBAAAAAAAAI1NldHRpbmcgZGVmYXVsdCBw + cm9jZXNzIHR5cGUgJ3dlYicKAQAAAAAAAFpTYXZpbmcgcmcuZnItcGFyLnNjdy5jbG91ZC + 9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1kdXlpL2NsaS10LWN0bnItZGVwbG95LWJw + OmxhdGVzdC4uLgoBAAAAAAAAcSoqKiBJbWFnZXMgKDBkZTk4NjdlMjBlNSk6CiAgICAgIH + JnLmZyLXBhci5zY3cuY2xvdWQvZnVuY3Njd2NsaXRjdG5yZGVwbG95YnB6bGltZHV5aS9j + bGktdC1jdG5yLWRlcGxveS1icDpsYXRlc3QKAQAAAAAAADhBZGRpbmcgY2FjaGUgbGF5ZX + IgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUtZW5naW5lOm5vZGUnCgEAAAAAAAA9QWRkaW5n + IGNhY2hlIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ucG0taW5zdGFsbDpucG0tY2FjaG + UnCgEAAAAAAAA3QWRkaW5nIGNhY2hlIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xl + OmNhY2hlLnNib20nCg== headers: Connection: - Upgrade @@ -7300,7 +946,7 @@ interactions: {"StatusCode":0} form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632/wait?condition=next-exit + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/wait?condition=next-exit method: POST response: body: | @@ -7311,13 +957,13 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:03 GMT + - Mon, 15 Dec 2025 13:30:24 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" @@ -7325,7 +971,7 @@ interactions: body: "" form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/ffad8280843f16e1456fdc98ba522c6f5ab2b191e0be7dba3aad947b1d8f3632?force=1 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9?force=1 method: DELETE response: body: "" @@ -7333,13 +979,13 @@ interactions: Api-Version: - "1.51" Date: - - Mon, 08 Sep 2025 12:22:27 GMT + - Mon, 15 Dec 2025 13:30:58 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 204 No Content code: 204 duration: "" @@ -7347,7 +993,7 @@ interactions: body: "" form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/networks/pack.local-network-6372796d6f746e786b69 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/networks/pack.local-network-6c70787a767a7961626b method: DELETE response: body: "" @@ -7355,13 +1001,13 @@ interactions: Api-Version: - "1.51" Date: - - Mon, 08 Sep 2025 12:22:28 GMT + - Mon, 15 Dec 2025 13:30:58 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 204 No Content code: 204 duration: "" @@ -7369,7 +1015,7 @@ interactions: body: "" form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-layers-snwbcgrhmt?force=1 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-layers-ahpoxkdnva?force=1 method: DELETE response: body: "" @@ -7377,13 +1023,13 @@ interactions: Api-Version: - "1.51" Date: - - Mon, 08 Sep 2025 12:22:28 GMT + - Mon, 15 Dec 2025 13:30:58 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 204 No Content code: 204 duration: "" @@ -7391,7 +1037,7 @@ interactions: body: "" form: {} headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-app-ooyvttpqqj?force=1 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-app-axbujscgxt?force=1 method: DELETE response: body: "" @@ -7399,853 +1045,727 @@ interactions: Api-Version: - "1.51" Date: - - Mon, 08 Sep 2025 12:22:28 GMT + - Mon, 15 Dec 2025 13:30:58 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 204 No Content code: 204 duration: "" - request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"total\":2149170},\"progress\":\"[\\u003e - \ ] 0B/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":20748322},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":67839443},\"progress\":\"[==\\u003e - \ ] 3.146MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":20748322},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":67839443},\"progress\":\"[==\\u003e - \ ] 3.146MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Layer already - exists\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19922944,\"total\":67839443},\"progress\":\"[==============\\u003e - \ ] 19.92MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26214400,\"total\":67839443},\"progress\":\"[===================\\u003e - \ ] 26.21MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26214400,\"total\":67839443},\"progress\":\"[===================\\u003e - \ ] 26.21MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27262976,\"total\":67839443},\"progress\":\"[====================\\u003e - \ ] 27.26MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29360128,\"total\":67839443},\"progress\":\"[=====================\\u003e - \ ] 29.36MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29360128,\"total\":67839443},\"progress\":\"[=====================\\u003e - \ ] 29.36MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30408704,\"total\":67839443},\"progress\":\"[======================\\u003e - \ ] 30.41MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30408704,\"total\":67839443},\"progress\":\"[======================\\u003e - \ ] 30.41MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30408704,\"total\":67839443},\"progress\":\"[======================\\u003e - \ ] 30.41MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32505856,\"total\":67839443},\"progress\":\"[=======================\\u003e - \ ] 32.51MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32505856,\"total\":67839443},\"progress\":\"[=======================\\u003e - \ ] 32.51MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32505856,\"total\":67839443},\"progress\":\"[=======================\\u003e - \ ] 32.51MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33554432,\"total\":67839443},\"progress\":\"[========================\\u003e - \ ] 33.55MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33554432,\"total\":67839443},\"progress\":\"[========================\\u003e - \ ] 33.55MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33554432,\"total\":67839443},\"progress\":\"[========================\\u003e - \ ] 33.55MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34603008,\"total\":67839443},\"progress\":\"[=========================\\u003e - \ ] 34.6MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34603008,\"total\":67839443},\"progress\":\"[=========================\\u003e - \ ] 34.6MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39845888,\"total\":67839443},\"progress\":\"[=============================\\u003e - \ ] 39.85MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39845888,\"total\":67839443},\"progress\":\"[=============================\\u003e - \ ] 39.85MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39845888,\"total\":67839443},\"progress\":\"[=============================\\u003e - \ ] 39.85MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40894464,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 40.89MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40894464,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 40.89MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40894464,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 40.89MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41943040,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 41.94MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41943040,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 41.94MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41943040,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 41.94MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48234496,\"total\":67839443},\"progress\":\"[===================================\\u003e - \ ] 48.23MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48234496,\"total\":67839443},\"progress\":\"[===================================\\u003e - \ ] 48.23MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49283072,\"total\":67839443},\"progress\":\"[====================================\\u003e - \ ] 49.28MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49283072,\"total\":67839443},\"progress\":\"[====================================\\u003e - \ ] 49.28MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51380224,\"total\":67839443},\"progress\":\"[=====================================\\u003e - \ ] 51.38MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51380224,\"total\":67839443},\"progress\":\"[=====================================\\u003e - \ ] 51.38MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52428800,\"total\":67839443},\"progress\":\"[======================================\\u003e - \ ] 52.43MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52428800,\"total\":67839443},\"progress\":\"[======================================\\u003e - \ ] 52.43MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54525952,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 54.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54525952,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 54.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54525952,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 54.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55574528,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 55.57MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55574528,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 55.57MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56623104,\"total\":67839443},\"progress\":\"[=========================================\\u003e - \ ] 56.62MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56623104,\"total\":67839443},\"progress\":\"[=========================================\\u003e - \ ] 56.62MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56623104,\"total\":67839443},\"progress\":\"[=========================================\\u003e - \ ] 56.62MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58720256,\"total\":67839443},\"progress\":\"[===========================================\\u003e - \ ] 58.72MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58720256,\"total\":67839443},\"progress\":\"[===========================================\\u003e - \ ] 58.72MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58720256,\"total\":67839443},\"progress\":\"[===========================================\\u003e - \ ] 58.72MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59768832,\"total\":67839443},\"progress\":\"[============================================\\u003e - \ ] 59.77MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59768832,\"total\":67839443},\"progress\":\"[============================================\\u003e - \ ] 59.77MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61865984,\"total\":67839443},\"progress\":\"[=============================================\\u003e - \ ] 61.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61865984,\"total\":67839443},\"progress\":\"[=============================================\\u003e - \ ] 61.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61865984,\"total\":67839443},\"progress\":\"[=============================================\\u003e - \ ] 61.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62914560,\"total\":67839443},\"progress\":\"[==============================================\\u003e - \ ] 62.91MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62914560,\"total\":67839443},\"progress\":\"[==============================================\\u003e - \ ] 62.91MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62914560,\"total\":67839443},\"progress\":\"[==============================================\\u003e - \ ] 62.91MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63963136,\"total\":67839443},\"progress\":\"[===============================================\\u003e - \ ] 63.96MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63963136,\"total\":67839443},\"progress\":\"[===============================================\\u003e - \ ] 63.96MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63963136,\"total\":67839443},\"progress\":\"[===============================================\\u003e - \ ] 63.96MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"latest: - digest: sha256:f851652aaa24c8a4adf46595eb80b575ac282fc65bc09ed6012d367b34239a89 - size: 2177\"}\r\n" + body: | + [{"Untagged":"pack.local/builder/11111111111111111111:latest"},{"Deleted":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78"},{"Deleted":"sha256:6fa48a8b9a5a1210f592468a34ff7ccc05ffd0d487e75b02ed743c5bc8c02fb0"},{"Deleted":"sha256:d21179bd0ee699292815562c586a12f8661b0df61abde0d83a1d4e57513a5c0e"},{"Deleted":"sha256:a6cfb361ac0f15d990b5ca8a1a5fd7842e7362e2a55927172945c1684e7c39e5"},{"Deleted":"sha256:18cde52b91c71ea193763b51cd4b590605e92b080f9b02f4dbb584bbe4eeedd1"}] + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/pack.local/builder/11111111111111111111:latest?force=1&noprune=1 + method: DELETE + response: + body: | + [{"Untagged":"pack.local/builder/11111111111111111111:latest"},{"Deleted":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78"},{"Deleted":"sha256:6fa48a8b9a5a1210f592468a34ff7ccc05ffd0d487e75b02ed743c5bc8c02fb0"},{"Deleted":"sha256:d21179bd0ee699292815562c586a12f8661b0df61abde0d83a1d4e57513a5c0e"},{"Deleted":"sha256:a6cfb361ac0f15d990b5ca8a1a5fd7842e7362e2a55927172945c1684e7c39e5"},{"Deleted":"sha256:18cde52b91c71ea193763b51cd4b590605e92b080f9b02f4dbb584bbe4eeedd1"}] + headers: + Api-Version: + - "1.51" + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Mon, 15 Dec 2025 13:30:58 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/28.5.1 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":22532},\"progress\":\"[=\\u003e + \ ] 512B/22.53kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3072,\"total\":284896},\"progress\":\"[\\u003e + \ ] 3.072kB/284.9kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27648,\"total\":22532},\"progress\":\"[==================================================\\u003e] + \ 27.65kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":299520,\"total\":284896},\"progress\":\"[==================================================\\u003e] + \ 299.5kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":956},\"progress\":\"[==========================\\u003e + \ ] 512B/956B\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":956},\"progress\":\"[==================================================\\u003e] + \ 3.584kB\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":23},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":23},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34304,\"total\":2834616},\"progress\":\"[\\u003e + \ ] 34.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":886272,\"total\":2834616},\"progress\":\"[===============\\u003e + \ ] 886.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1836544,\"total\":2834616},\"progress\":\"[================================\\u003e + \ ] 1.837MB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2837504,\"total\":2834616},\"progress\":\"[==================================================\\u003e] + \ 2.838MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":532480,\"total\":52013819},\"progress\":\"[\\u003e + \ ] 532.5kB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2105344,\"total\":52013819},\"progress\":\"[==\\u003e + \ ] 2.105MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68608,\"total\":4485359},\"progress\":\"[\\u003e + \ ] 68.61kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3678208,\"total\":52013819},\"progress\":\"[===\\u003e + \ ] 3.678MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":986112,\"total\":4485359},\"progress\":\"[==========\\u003e + \ ] 986.1kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4726784,\"total\":52013819},\"progress\":\"[====\\u003e + \ ] 4.727MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1707008,\"total\":4485359},\"progress\":\"[===================\\u003e + \ ] 1.707MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2493440,\"total\":4485359},\"progress\":\"[===========================\\u003e + \ ] 2.493MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5775360,\"total\":52013819},\"progress\":\"[=====\\u003e + \ ] 5.775MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3279872,\"total\":4485359},\"progress\":\"[====================================\\u003e + \ ] 3.28MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":526336,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 526.3kB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3804160,\"total\":4485359},\"progress\":\"[==========================================\\u003e + \ ] 3.804MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6823936,\"total\":52013819},\"progress\":\"[======\\u003e + \ ] 6.824MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4262912,\"total\":4485359},\"progress\":\"[===============================================\\u003e + \ ] 4.263MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7348224,\"total\":52013819},\"progress\":\"[=======\\u003e + \ ] 7.348MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4489728,\"total\":4485359},\"progress\":\"[==================================================\\u003e] + \ 4.49MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1614848,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 1.615MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8921088,\"total\":52013819},\"progress\":\"[========\\u003e + \ ] 8.921MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2728960,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 2.729MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10493952,\"total\":52013819},\"progress\":\"[==========\\u003e + \ ] 10.49MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12066816,\"total\":52013819},\"progress\":\"[===========\\u003e + \ ] 12.07MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3843072,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 3.843MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13115392,\"total\":52013819},\"progress\":\"[============\\u003e + \ ] 13.12MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4957184,\"total\":201299501},\"progress\":\"[=\\u003e + \ ] 4.957MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1417},\"progress\":\"[==================\\u003e + \ ] 512B/1.417kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":1417},\"progress\":\"[==================================================\\u003e] + \ 4.608kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14163968,\"total\":52013819},\"progress\":\"[=============\\u003e + \ ] 14.16MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6628352,\"total\":201299501},\"progress\":\"[=\\u003e + \ ] 6.628MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15212544,\"total\":52013819},\"progress\":\"[==============\\u003e + \ ] 15.21MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":505},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":505},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8299520,\"total\":201299501},\"progress\":\"[==\\u003e + \ ] 8.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16261120,\"total\":52013819},\"progress\":\"[===============\\u003e + \ ] 16.26MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9970688,\"total\":201299501},\"progress\":\"[==\\u003e + \ ] 9.971MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17309696,\"total\":52013819},\"progress\":\"[================\\u003e + \ ] 17.31MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11641856,\"total\":201299501},\"progress\":\"[==\\u003e + \ ] 11.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18358272,\"total\":52013819},\"progress\":\"[=================\\u003e + \ ] 18.36MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12755968,\"total\":201299501},\"progress\":\"[===\\u003e + \ ] 12.76MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19931136,\"total\":52013819},\"progress\":\"[===================\\u003e + \ ] 19.93MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14427136,\"total\":201299501},\"progress\":\"[===\\u003e + \ ] 14.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20979712,\"total\":52013819},\"progress\":\"[====================\\u003e + \ ] 20.98MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15541248,\"total\":201299501},\"progress\":\"[===\\u003e + \ ] 15.54MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22028288,\"total\":52013819},\"progress\":\"[=====================\\u003e + \ ] 22.03MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23601152,\"total\":52013819},\"progress\":\"[======================\\u003e + \ ] 23.6MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16655360,\"total\":201299501},\"progress\":\"[====\\u003e + \ ] 16.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25698304,\"total\":52013819},\"progress\":\"[========================\\u003e + \ ] 25.7MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17769472,\"total\":201299501},\"progress\":\"[====\\u003e + \ ] 17.77MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27271168,\"total\":52013819},\"progress\":\"[==========================\\u003e + \ ] 27.27MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19440640,\"total\":201299501},\"progress\":\"[====\\u003e + \ ] 19.44MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29368320,\"total\":52013819},\"progress\":\"[============================\\u003e + \ ] 29.37MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21111808,\"total\":201299501},\"progress\":\"[=====\\u003e + \ ] 21.11MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30941184,\"total\":52013819},\"progress\":\"[=============================\\u003e + \ ] 30.94MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22225920,\"total\":201299501},\"progress\":\"[=====\\u003e + \ ] 22.23MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31989760,\"total\":52013819},\"progress\":\"[==============================\\u003e + \ ] 31.99MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23340032,\"total\":201299501},\"progress\":\"[=====\\u003e + \ ] 23.34MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33562624,\"total\":52013819},\"progress\":\"[================================\\u003e + \ ] 33.56MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35659776,\"total\":52013819},\"progress\":\"[==================================\\u003e + \ ] 35.66MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24454144,\"total\":201299501},\"progress\":\"[======\\u003e + \ ] 24.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38281216,\"total\":52013819},\"progress\":\"[====================================\\u003e + \ ] 38.28MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25568256,\"total\":201299501},\"progress\":\"[======\\u003e + \ ] 25.57MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39329792,\"total\":52013819},\"progress\":\"[=====================================\\u003e + \ ] 39.33MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26682368,\"total\":201299501},\"progress\":\"[======\\u003e + \ ] 26.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":316416,\"total\":31609811},\"progress\":\"[\\u003e + \ ] 316.4kB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28353536,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 28.35MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1650688,\"total\":31609811},\"progress\":\"[==\\u003e + \ ] 1.651MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40378368,\"total\":52013819},\"progress\":\"[======================================\\u003e + \ ] 40.38MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":530912,\"total\":77871919},\"progress\":\"[\\u003e + \ ] 530.9kB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29467648,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 29.47MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2956800,\"total\":31609811},\"progress\":\"[====\\u003e + \ ] 2.957MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1642496,\"total\":77871919},\"progress\":\"[=\\u003e + \ ] 1.642MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40902656,\"total\":52013819},\"progress\":\"[=======================================\\u003e + \ ] 40.9MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4911616,\"total\":31609811},\"progress\":\"[=======\\u003e + \ ] 4.912MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2199552,\"total\":77871919},\"progress\":\"[=\\u003e + \ ] 2.2MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30024704,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 30.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6549504,\"total\":31609811},\"progress\":\"[==========\\u003e + \ ] 6.55MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41426944,\"total\":52013819},\"progress\":\"[=======================================\\u003e + \ ] 41.43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2745216,\"total\":77871919},\"progress\":\"[=\\u003e + \ ] 2.745MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30581760,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 30.58MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7853053,\"total\":31609811},\"progress\":\"[============\\u003e + \ ] 7.853MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31138816,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 31.14MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41951232,\"total\":52013819},\"progress\":\"[========================================\\u003e + \ ] 41.95MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3822592,\"total\":77871919},\"progress\":\"[==\\u003e + \ ] 3.823MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32252928,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 32.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9192960,\"total\":31609811},\"progress\":\"[==============\\u003e + \ ] 9.193MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4900352,\"total\":77871919},\"progress\":\"[===\\u003e + \ ] 4.9MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42475520,\"total\":52013819},\"progress\":\"[========================================\\u003e + \ ] 42.48MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32809984,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 32.81MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10185216,\"total\":31609811},\"progress\":\"[================\\u003e + \ ] 10.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5964776,\"total\":77871919},\"progress\":\"[===\\u003e + \ ] 5.965MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42999808,\"total\":52013819},\"progress\":\"[=========================================\\u003e + \ ] 43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10850816,\"total\":31609811},\"progress\":\"[=================\\u003e + \ ] 10.85MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33924096,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 33.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7046152,\"total\":77871919},\"progress\":\"[====\\u003e + \ ] 7.046MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43524096,\"total\":52013819},\"progress\":\"[=========================================\\u003e + \ ] 43.52MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11486226,\"total\":31609811},\"progress\":\"[==================\\u003e + \ ] 11.49MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34481152,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 34.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8126464,\"total\":77871919},\"progress\":\"[=====\\u003e + \ ] 8.126MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44572672,\"total\":52013819},\"progress\":\"[==========================================\\u003e + \ ] 44.57MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45621248,\"total\":52013819},\"progress\":\"[===========================================\\u003e + \ ] 45.62MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9743872,\"total\":77871919},\"progress\":\"[======\\u003e + \ ] 9.744MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12151296,\"total\":31609811},\"progress\":\"[===================\\u003e + \ ] 12.15MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35595264,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 35.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36152320,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 36.15MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12467712,\"total\":31609811},\"progress\":\"[===================\\u003e + \ ] 12.47MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10855936,\"total\":77871919},\"progress\":\"[======\\u003e + \ ] 10.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46669824,\"total\":52013819},\"progress\":\"[============================================\\u003e + \ ] 46.67MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11412992,\"total\":77871919},\"progress\":\"[=======\\u003e + \ ] 11.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12795392,\"total\":31609811},\"progress\":\"[====================\\u003e + \ ] 12.8MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47194112,\"total\":52013819},\"progress\":\"[=============================================\\u003e + \ ] 47.19MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37266432,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 37.27MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13111738,\"total\":31609811},\"progress\":\"[====================\\u003e + \ ] 13.11MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47718400,\"total\":52013819},\"progress\":\"[=============================================\\u003e + \ ] 47.72MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12527104,\"total\":77871919},\"progress\":\"[========\\u003e + \ ] 12.53MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37823488,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 37.82MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14166776,\"total\":77871919},\"progress\":\"[=========\\u003e + \ ] 14.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13758464,\"total\":31609811},\"progress\":\"[=====================\\u003e + \ ] 13.76MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38380544,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 38.38MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48766976,\"total\":52013819},\"progress\":\"[==============================================\\u003e + \ ] 48.77MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15236096,\"total\":77871919},\"progress\":\"[=========\\u003e + \ ] 15.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14394606,\"total\":31609811},\"progress\":\"[======================\\u003e + \ ] 14.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49815552,\"total\":52013819},\"progress\":\"[===============================================\\u003e + \ ] 49.82MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39494656,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 39.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16863232,\"total\":77871919},\"progress\":\"[==========\\u003e + \ ] 16.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15706624,\"total\":31609811},\"progress\":\"[========================\\u003e + \ ] 15.71MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51410944,\"total\":52013819},\"progress\":\"[=================================================\\u003e + ] 51.41MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17931648,\"total\":77871919},\"progress\":\"[===========\\u003e + \ ] 17.93MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40608768,\"total\":201299501},\"progress\":\"[==========\\u003e + \ ] 40.61MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52411392,\"total\":52013819},\"progress\":\"[==================================================\\u003e] + \ 52.41MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17017344,\"total\":31609811},\"progress\":\"[==========================\\u003e + \ ] 17.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18989056,\"total\":77871919},\"progress\":\"[============\\u003e + \ ] 18.99MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42279936,\"total\":201299501},\"progress\":\"[==========\\u003e + \ ] 42.28MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18328064,\"total\":31609811},\"progress\":\"[============================\\u003e + \ ] 18.33MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43951104,\"total\":201299501},\"progress\":\"[==========\\u003e + \ ] 43.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20051968,\"total\":77871919},\"progress\":\"[============\\u003e + \ ] 20.05MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19303745,\"total\":31609811},\"progress\":\"[==============================\\u003e + \ ] 19.3MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45065216,\"total\":201299501},\"progress\":\"[===========\\u003e + \ ] 45.07MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21127168,\"total\":77871919},\"progress\":\"[=============\\u003e + \ ] 21.13MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20636160,\"total\":31609811},\"progress\":\"[================================\\u003e + \ ] 20.64MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46179328,\"total\":201299501},\"progress\":\"[===========\\u003e + \ ] 46.18MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22194448,\"total\":77871919},\"progress\":\"[==============\\u003e + \ ] 22.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21946880,\"total\":31609811},\"progress\":\"[==================================\\u003e + \ ] 21.95MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23264528,\"total\":77871919},\"progress\":\"[==============\\u003e + \ ] 23.26MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47850496,\"total\":201299501},\"progress\":\"[===========\\u003e + \ ] 47.85MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23257600,\"total\":31609811},\"progress\":\"[====================================\\u003e + \ ] 23.26MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24342528,\"total\":77871919},\"progress\":\"[===============\\u003e + \ ] 24.34MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48964608,\"total\":201299501},\"progress\":\"[============\\u003e + \ ] 48.96MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24580096,\"total\":31609811},\"progress\":\"[======================================\\u003e + \ ] 24.58MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25938944,\"total\":77871919},\"progress\":\"[================\\u003e + \ ] 25.94MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50635776,\"total\":201299501},\"progress\":\"[============\\u003e + \ ] 50.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25218907,\"total\":31609811},\"progress\":\"[=======================================\\u003e + \ ] 25.22MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27539728,\"total\":77871919},\"progress\":\"[=================\\u003e + \ ] 27.54MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52864000,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 52.86MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26187269,\"total\":31609811},\"progress\":\"[=========================================\\u003e + \ ] 26.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29170688,\"total\":77871919},\"progress\":\"[==================\\u003e + \ ] 29.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53978112,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 53.98MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27482112,\"total\":31609811},\"progress\":\"[===========================================\\u003e + \ ] 27.48MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30266368,\"total\":77871919},\"progress\":\"[===================\\u003e + \ ] 30.27MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55092224,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 55.09MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28120064,\"total\":31609811},\"progress\":\"[============================================\\u003e + \ ] 28.12MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56206336,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 56.21MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31372800,\"total\":77871919},\"progress\":\"[====================\\u003e + \ ] 31.37MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28753408,\"total\":31609811},\"progress\":\"[=============================================\\u003e + \ ] 28.75MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31916032,\"total\":77871919},\"progress\":\"[====================\\u003e + \ ] 31.92MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57320448,\"total\":201299501},\"progress\":\"[==============\\u003e + \ ] 57.32MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29069940,\"total\":31609811},\"progress\":\"[=============================================\\u003e + \ ] 29.07MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33000448,\"total\":77871919},\"progress\":\"[=====================\\u003e + \ ] 33MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58434560,\"total\":201299501},\"progress\":\"[==============\\u003e + \ ] 58.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29386752,\"total\":31609811},\"progress\":\"[==============================================\\u003e + \ ] 29.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59548672,\"total\":201299501},\"progress\":\"[==============\\u003e + \ ] 59.55MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34114560,\"total\":77871919},\"progress\":\"[=====================\\u003e + \ ] 34.11MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60662784,\"total\":201299501},\"progress\":\"[===============\\u003e + \ ] 60.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30019810,\"total\":31609811},\"progress\":\"[===============================================\\u003e + \ ] 30.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35174400,\"total\":77871919},\"progress\":\"[======================\\u003e + \ ] 35.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61776896,\"total\":201299501},\"progress\":\"[===============\\u003e + \ ] 61.78MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36288512,\"total\":77871919},\"progress\":\"[=======================\\u003e + \ ] 36.29MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30655232,\"total\":31609811},\"progress\":\"[================================================\\u003e + \ ] 30.66MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63448064,\"total\":201299501},\"progress\":\"[===============\\u003e + \ ] 63.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31986176,\"total\":31609811},\"progress\":\"[==================================================\\u003e] + \ 31.99MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37402624,\"total\":77871919},\"progress\":\"[========================\\u003e + \ ] 37.4MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38516736,\"total\":77871919},\"progress\":\"[========================\\u003e + \ ] 38.52MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33298944,\"total\":31609811},\"progress\":\"[==================================================\\u003e] + \ 33.3MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64562176,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 64.56MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34030592,\"total\":31609811},\"progress\":\"[==================================================\\u003e] + \ 34.03MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39630848,\"total\":77871919},\"progress\":\"[=========================\\u003e + \ ] 39.63MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65676288,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 65.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40187904,\"total\":77871919},\"progress\":\"[=========================\\u003e + \ ] 40.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66790400,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 66.79MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67904512,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 67.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41807408,\"total\":77871919},\"progress\":\"[==========================\\u003e + \ ] 41.81MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69018624,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 69.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42890240,\"total\":77871919},\"progress\":\"[===========================\\u003e + \ ] 42.89MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":70132736,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 70.13MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43962368,\"total\":77871919},\"progress\":\"[============================\\u003e + \ ] 43.96MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71246848,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 71.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45076480,\"total\":77871919},\"progress\":\"[============================\\u003e + \ ] 45.08MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72360960,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 72.36MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46159872,\"total\":77871919},\"progress\":\"[=============================\\u003e + \ ] 46.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72918016,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 72.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47799296,\"total\":77871919},\"progress\":\"[==============================\\u003e + \ ] 47.8MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73475072,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 73.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48878096,\"total\":77871919},\"progress\":\"[===============================\\u003e + \ ] 48.88MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74589184,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 74.59MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49979904,\"total\":77871919},\"progress\":\"[================================\\u003e + \ ] 49.98MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76260352,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 76.26MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51072512,\"total\":77871919},\"progress\":\"[================================\\u003e + \ ] 51.07MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77374464,\"total\":201299501},\"progress\":\"[===================\\u003e + \ ] 77.37MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52160000,\"total\":77871919},\"progress\":\"[=================================\\u003e + \ ] 52.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78488576,\"total\":201299501},\"progress\":\"[===================\\u003e + \ ] 78.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53246464,\"total\":77871919},\"progress\":\"[==================================\\u003e + \ ] 53.25MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":79602688,\"total\":201299501},\"progress\":\"[===================\\u003e + \ ] 79.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54357504,\"total\":77871919},\"progress\":\"[==================================\\u003e + \ ] 54.36MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80716800,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 80.72MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":81830912,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 81.83MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55436880,\"total\":77871919},\"progress\":\"[===================================\\u003e + \ ] 55.44MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":82945024,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 82.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56500224,\"total\":77871919},\"progress\":\"[====================================\\u003e + \ ] 56.5MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":84059136,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 84.06MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57614336,\"total\":77871919},\"progress\":\"[====================================\\u003e + \ ] 57.61MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":85173248,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 85.17MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58696192,\"total\":77871919},\"progress\":\"[=====================================\\u003e + \ ] 58.7MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59243008,\"total\":77871919},\"progress\":\"[======================================\\u003e + \ ] 59.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":86287360,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 86.29MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":87401472,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 87.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60298752,\"total\":77871919},\"progress\":\"[======================================\\u003e + \ ] 60.3MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":88515584,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 88.52MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61412864,\"total\":77871919},\"progress\":\"[=======================================\\u003e + \ ] 61.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":89629696,\"total\":201299501},\"progress\":\"[======================\\u003e + \ ] 89.63MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62511616,\"total\":77871919},\"progress\":\"[========================================\\u003e + \ ] 62.51MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":90743808,\"total\":201299501},\"progress\":\"[======================\\u003e + \ ] 90.74MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63602688,\"total\":77871919},\"progress\":\"[========================================\\u003e + \ ] 63.6MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":92414976,\"total\":201299501},\"progress\":\"[======================\\u003e + \ ] 92.41MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64671481,\"total\":77871919},\"progress\":\"[=========================================\\u003e + \ ] 64.67MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":93529088,\"total\":201299501},\"progress\":\"[=======================\\u003e + \ ] 93.53MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65720927,\"total\":77871919},\"progress\":\"[==========================================\\u003e + \ ] 65.72MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":95200256,\"total\":201299501},\"progress\":\"[=======================\\u003e + \ ] 95.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":96314368,\"total\":201299501},\"progress\":\"[=======================\\u003e + \ ] 96.31MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66770432,\"total\":77871919},\"progress\":\"[==========================================\\u003e + \ ] 66.77MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":97985536,\"total\":201299501},\"progress\":\"[========================\\u003e + \ ] 97.99MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68375552,\"total\":77871919},\"progress\":\"[===========================================\\u003e + \ ] 68.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99656704,\"total\":201299501},\"progress\":\"[========================\\u003e + \ ] 99.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69450656,\"total\":77871919},\"progress\":\"[============================================\\u003e + \ ] 69.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101327872,\"total\":201299501},\"progress\":\"[=========================\\u003e + \ ] 101.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71087104,\"total\":77871919},\"progress\":\"[=============================================\\u003e + \ ] 71.09MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":102999040,\"total\":201299501},\"progress\":\"[=========================\\u003e + \ ] 103MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72154528,\"total\":77871919},\"progress\":\"[==============================================\\u003e + \ ] 72.15MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":104113152,\"total\":201299501},\"progress\":\"[=========================\\u003e + \ ] 104.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73776935,\"total\":77871919},\"progress\":\"[===============================================\\u003e + \ ] 73.78MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105227264,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 105.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74826752,\"total\":77871919},\"progress\":\"[================================================\\u003e + \ ] 74.83MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":106341376,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 106.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":75380736,\"total\":77871919},\"progress\":\"[================================================\\u003e + \ ] 75.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":107455488,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 107.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76453677,\"total\":77871919},\"progress\":\"[=================================================\\u003e + ] 76.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108569600,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 108.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77546496,\"total\":77871919},\"progress\":\"[=================================================\\u003e + ] 77.55MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":110240768,\"total\":201299501},\"progress\":\"[===========================\\u003e + \ ] 110.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78621184,\"total\":77871919},\"progress\":\"[==================================================\\u003e] + \ 78.62MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":111354880,\"total\":201299501},\"progress\":\"[===========================\\u003e + \ ] 111.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80227328,\"total\":77871919},\"progress\":\"[==================================================\\u003e] + \ 80.23MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80420352,\"total\":77871919},\"progress\":\"[==================================================\\u003e] + \ 80.42MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":112468992,\"total\":201299501},\"progress\":\"[===========================\\u003e + \ ] 112.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":113583104,\"total\":201299501},\"progress\":\"[============================\\u003e + \ ] 113.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":116368384,\"total\":201299501},\"progress\":\"[============================\\u003e + \ ] 116.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":118039552,\"total\":201299501},\"progress\":\"[=============================\\u003e + \ ] 118MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":119710720,\"total\":201299501},\"progress\":\"[=============================\\u003e + \ ] 119.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":121938944,\"total\":201299501},\"progress\":\"[==============================\\u003e + \ ] 121.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":123610112,\"total\":201299501},\"progress\":\"[==============================\\u003e + \ ] 123.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":125279744,\"total\":201299501},\"progress\":\"[===============================\\u003e + \ ] 125.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":126923264,\"total\":201299501},\"progress\":\"[===============================\\u003e + \ ] 126.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":128012984,\"total\":201299501},\"progress\":\"[===============================\\u003e + \ ] 128MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":130667520,\"total\":201299501},\"progress\":\"[================================\\u003e + \ ] 130.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":133822976,\"total\":201299501},\"progress\":\"[=================================\\u003e + \ ] 133.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":136454144,\"total\":201299501},\"progress\":\"[=================================\\u003e + \ ] 136.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":139085312,\"total\":201299501},\"progress\":\"[==================================\\u003e + \ ] 139.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":141187584,\"total\":201299501},\"progress\":\"[===================================\\u003e + \ ] 141.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":143816704,\"total\":201299501},\"progress\":\"[===================================\\u003e + \ ] 143.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":145920512,\"total\":201299501},\"progress\":\"[====================================\\u003e + \ ] 145.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":148550656,\"total\":201299501},\"progress\":\"[====================================\\u003e + \ ] 148.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":150127616,\"total\":201299501},\"progress\":\"[=====================================\\u003e + \ ] 150.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":152757760,\"total\":201299501},\"progress\":\"[=====================================\\u003e + \ ] 152.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":155386880,\"total\":201299501},\"progress\":\"[======================================\\u003e + \ ] 155.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":158017024,\"total\":201299501},\"progress\":\"[=======================================\\u003e + \ ] 158MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":160645632,\"total\":201299501},\"progress\":\"[=======================================\\u003e + \ ] 160.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":163801088,\"total\":201299501},\"progress\":\"[========================================\\u003e + \ ] 163.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":166431232,\"total\":201299501},\"progress\":\"[=========================================\\u003e + \ ] 166.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":169060352,\"total\":201299501},\"progress\":\"[=========================================\\u003e + \ ] 169.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":171690496,\"total\":201299501},\"progress\":\"[==========================================\\u003e + \ ] 171.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":174319616,\"total\":201299501},\"progress\":\"[===========================================\\u003e + \ ] 174.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":176949760,\"total\":201299501},\"progress\":\"[===========================================\\u003e + \ ] 176.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":179579392,\"total\":201299501},\"progress\":\"[============================================\\u003e + \ ] 179.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":182209536,\"total\":201299501},\"progress\":\"[=============================================\\u003e + \ ] 182.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":184838144,\"total\":201299501},\"progress\":\"[=============================================\\u003e + \ ] 184.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":187468288,\"total\":201299501},\"progress\":\"[==============================================\\u003e + \ ] 187.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":190170112,\"total\":201299501},\"progress\":\"[===============================================\\u003e + \ ] 190.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":192332377,\"total\":201299501},\"progress\":\"[===============================================\\u003e + \ ] 192.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":194442273,\"total\":201299501},\"progress\":\"[================================================\\u003e + \ ] 194.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":196553815,\"total\":201299501},\"progress\":\"[================================================\\u003e + \ ] 196.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":198690073,\"total\":201299501},\"progress\":\"[=================================================\\u003e + ] 198.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":200272692,\"total\":201299501},\"progress\":\"[=================================================\\u003e + ] 200.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":201910272,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 201.9MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":203509565,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 203.5MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205106796,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 205.1MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205797376,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 205.8MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"latest: + digest: sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3 + size: 2832\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3\",\"Size\":2832}}\r\n" form: {} headers: Content-Type: - application/json X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzM2M0NaNVNSTjVZSFFCR1hZIiwicGFzc3dvcmQiOiJhNDIxMTZiNC02MjZiLTQyZWUtYjQ1Yi0wOTVhNDUyMmQ1MjYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licDVyd2NveHZ4In0= - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp/push?tag=latest + - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1kdXlpIn0= + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp/push?tag=latest method: POST response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"total\":2149170},\"progress\":\"[\\u003e - \ ] 0B/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":20748322},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":162,\"total\":162},\"progress\":\"[==================================================\\u003e] - \ 162B/162B\",\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":67839443},\"progress\":\"[==\\u003e - \ ] 3.146MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":20748322},\"progress\":\"[=======\\u003e - \ ] 3.146MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5a44e4f7b58d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":67839443},\"progress\":\"[==\\u003e - \ ] 3.146MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":435,\"total\":435},\"progress\":\"[==================================================\\u003e] - \ 435B/435B\",\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"94a7d2e92b4e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":20748322},\"progress\":\"[===============\\u003e - \ ] 6.291MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35599,\"total\":35599},\"progress\":\"[==================================================\\u003e] - \ 35.6kB/35.6kB\",\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83c6086ddeac\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7840,\"total\":7840},\"progress\":\"[==================================================\\u003e] - \ 7.84kB/7.84kB\",\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Layer already - exists\",\"progressDetail\":{},\"id\":\"e3b0c44298fc\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0ac56507047e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1318462,\"total\":1318462},\"progress\":\"[==================================================\\u003e] - \ 1.318MB/1.318MB\",\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5242880,\"total\":67839443},\"progress\":\"[===\\u003e - \ ] 5.243MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5ed3fba2e93d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":20748322},\"progress\":\"[=================\\u003e - \ ] 7.34MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":67839443},\"progress\":\"[=====\\u003e - \ ] 7.34MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":20748322},\"progress\":\"[======================\\u003e - \ ] 9.437MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8388608,\"total\":67839443},\"progress\":\"[======\\u003e - \ ] 8.389MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":20748322},\"progress\":\"[=========================\\u003e - \ ] 10.49MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2149170,\"total\":2149170},\"progress\":\"[==================================================\\u003e] - \ 2.149MB/2.149MB\",\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1e5c8037cec0\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":67839443},\"progress\":\"[=======\\u003e - \ ] 10.49MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":20748322},\"progress\":\"[==============================\\u003e - \ ] 12.58MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":20748322},\"progress\":\"[================================\\u003e - \ ] 13.63MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11534336,\"total\":67839443},\"progress\":\"[========\\u003e - \ ] 11.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":20748322},\"progress\":\"[===================================\\u003e - \ ] 14.68MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 13.63MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":67839443},\"progress\":\"[==========\\u003e - \ ] 14.68MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16777216,\"total\":20748322},\"progress\":\"[========================================\\u003e - \ ] 16.78MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":20748322},\"progress\":\"[==========================================\\u003e - \ ] 17.83MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15728640,\"total\":67839443},\"progress\":\"[===========\\u003e - \ ] 15.73MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":20748322},\"progress\":\"[=============================================\\u003e - \ ] 18.87MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17825792,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 17.83MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18874368,\"total\":67839443},\"progress\":\"[=============\\u003e - \ ] 18.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19922944,\"total\":67839443},\"progress\":\"[==============\\u003e - \ ] 19.92MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20971520,\"total\":67839443},\"progress\":\"[===============\\u003e - \ ] 20.97MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22020096,\"total\":67839443},\"progress\":\"[================\\u003e - \ ] 22.02MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23068672,\"total\":67839443},\"progress\":\"[=================\\u003e - \ ] 23.07MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25165824,\"total\":67839443},\"progress\":\"[==================\\u003e - \ ] 25.17MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26214400,\"total\":67839443},\"progress\":\"[===================\\u003e - \ ] 26.21MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26214400,\"total\":67839443},\"progress\":\"[===================\\u003e - \ ] 26.21MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27262976,\"total\":67839443},\"progress\":\"[====================\\u003e - \ ] 27.26MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29360128,\"total\":67839443},\"progress\":\"[=====================\\u003e - \ ] 29.36MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29360128,\"total\":67839443},\"progress\":\"[=====================\\u003e - \ ] 29.36MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30408704,\"total\":67839443},\"progress\":\"[======================\\u003e - \ ] 30.41MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30408704,\"total\":67839443},\"progress\":\"[======================\\u003e - \ ] 30.41MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30408704,\"total\":67839443},\"progress\":\"[======================\\u003e - \ ] 30.41MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32505856,\"total\":67839443},\"progress\":\"[=======================\\u003e - \ ] 32.51MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32505856,\"total\":67839443},\"progress\":\"[=======================\\u003e - \ ] 32.51MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32505856,\"total\":67839443},\"progress\":\"[=======================\\u003e - \ ] 32.51MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33554432,\"total\":67839443},\"progress\":\"[========================\\u003e - \ ] 33.55MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33554432,\"total\":67839443},\"progress\":\"[========================\\u003e - \ ] 33.55MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33554432,\"total\":67839443},\"progress\":\"[========================\\u003e - \ ] 33.55MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34603008,\"total\":67839443},\"progress\":\"[=========================\\u003e - \ ] 34.6MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34603008,\"total\":67839443},\"progress\":\"[=========================\\u003e - \ ] 34.6MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20748322,\"total\":20748322},\"progress\":\"[==================================================\\u003e] - \ 20.75MB/20.75MB\",\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1bcf79fbc71d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36700160,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 36.7MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37748736,\"total\":67839443},\"progress\":\"[===========================\\u003e - \ ] 37.75MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39845888,\"total\":67839443},\"progress\":\"[=============================\\u003e - \ ] 39.85MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39845888,\"total\":67839443},\"progress\":\"[=============================\\u003e - \ ] 39.85MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39845888,\"total\":67839443},\"progress\":\"[=============================\\u003e - \ ] 39.85MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40894464,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 40.89MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40894464,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 40.89MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40894464,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 40.89MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41943040,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 41.94MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41943040,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 41.94MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41943040,\"total\":67839443},\"progress\":\"[==============================\\u003e - \ ] 41.94MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44040192,\"total\":67839443},\"progress\":\"[================================\\u003e - \ ] 44.04MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45088768,\"total\":67839443},\"progress\":\"[=================================\\u003e - \ ] 45.09MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46137344,\"total\":67839443},\"progress\":\"[==================================\\u003e - \ ] 46.14MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48234496,\"total\":67839443},\"progress\":\"[===================================\\u003e - \ ] 48.23MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48234496,\"total\":67839443},\"progress\":\"[===================================\\u003e - \ ] 48.23MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49283072,\"total\":67839443},\"progress\":\"[====================================\\u003e - \ ] 49.28MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49283072,\"total\":67839443},\"progress\":\"[====================================\\u003e - \ ] 49.28MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51380224,\"total\":67839443},\"progress\":\"[=====================================\\u003e - \ ] 51.38MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51380224,\"total\":67839443},\"progress\":\"[=====================================\\u003e - \ ] 51.38MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52428800,\"total\":67839443},\"progress\":\"[======================================\\u003e - \ ] 52.43MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52428800,\"total\":67839443},\"progress\":\"[======================================\\u003e - \ ] 52.43MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54525952,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 54.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54525952,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 54.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54525952,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 54.53MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55574528,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 55.57MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55574528,\"total\":67839443},\"progress\":\"[========================================\\u003e - \ ] 55.57MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56623104,\"total\":67839443},\"progress\":\"[=========================================\\u003e - \ ] 56.62MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56623104,\"total\":67839443},\"progress\":\"[=========================================\\u003e - \ ] 56.62MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56623104,\"total\":67839443},\"progress\":\"[=========================================\\u003e - \ ] 56.62MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58720256,\"total\":67839443},\"progress\":\"[===========================================\\u003e - \ ] 58.72MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58720256,\"total\":67839443},\"progress\":\"[===========================================\\u003e - \ ] 58.72MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58720256,\"total\":67839443},\"progress\":\"[===========================================\\u003e - \ ] 58.72MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59768832,\"total\":67839443},\"progress\":\"[============================================\\u003e - \ ] 59.77MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59768832,\"total\":67839443},\"progress\":\"[============================================\\u003e - \ ] 59.77MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61865984,\"total\":67839443},\"progress\":\"[=============================================\\u003e - \ ] 61.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61865984,\"total\":67839443},\"progress\":\"[=============================================\\u003e - \ ] 61.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61865984,\"total\":67839443},\"progress\":\"[=============================================\\u003e - \ ] 61.87MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62914560,\"total\":67839443},\"progress\":\"[==============================================\\u003e - \ ] 62.91MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62914560,\"total\":67839443},\"progress\":\"[==============================================\\u003e - \ ] 62.91MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62914560,\"total\":67839443},\"progress\":\"[==============================================\\u003e - \ ] 62.91MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63963136,\"total\":67839443},\"progress\":\"[===============================================\\u003e - \ ] 63.96MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63963136,\"total\":67839443},\"progress\":\"[===============================================\\u003e - \ ] 63.96MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63963136,\"total\":67839443},\"progress\":\"[===============================================\\u003e - \ ] 63.96MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66060288,\"total\":67839443},\"progress\":\"[================================================\\u003e - \ ] 66.06MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67839443,\"total\":67839443},\"progress\":\"[==================================================\\u003e] - \ 67.84MB/67.84MB\",\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"2a45b8670aff\"}\r\n{\"status\":\"latest: - digest: sha256:f851652aaa24c8a4adf46595eb80b575ac282fc65bc09ed6012d367b34239a89 - size: 2177\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":22532},\"progress\":\"[=\\u003e + \ ] 512B/22.53kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3072,\"total\":284896},\"progress\":\"[\\u003e + \ ] 3.072kB/284.9kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27648,\"total\":22532},\"progress\":\"[==================================================\\u003e] + \ 27.65kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":299520,\"total\":284896},\"progress\":\"[==================================================\\u003e] + \ 299.5kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":956},\"progress\":\"[==========================\\u003e + \ ] 512B/956B\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":956},\"progress\":\"[==================================================\\u003e] + \ 3.584kB\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":23},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":23},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34304,\"total\":2834616},\"progress\":\"[\\u003e + \ ] 34.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":886272,\"total\":2834616},\"progress\":\"[===============\\u003e + \ ] 886.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1836544,\"total\":2834616},\"progress\":\"[================================\\u003e + \ ] 1.837MB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2837504,\"total\":2834616},\"progress\":\"[==================================================\\u003e] + \ 2.838MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":532480,\"total\":52013819},\"progress\":\"[\\u003e + \ ] 532.5kB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2105344,\"total\":52013819},\"progress\":\"[==\\u003e + \ ] 2.105MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68608,\"total\":4485359},\"progress\":\"[\\u003e + \ ] 68.61kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3678208,\"total\":52013819},\"progress\":\"[===\\u003e + \ ] 3.678MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":986112,\"total\":4485359},\"progress\":\"[==========\\u003e + \ ] 986.1kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4726784,\"total\":52013819},\"progress\":\"[====\\u003e + \ ] 4.727MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1707008,\"total\":4485359},\"progress\":\"[===================\\u003e + \ ] 1.707MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2493440,\"total\":4485359},\"progress\":\"[===========================\\u003e + \ ] 2.493MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5775360,\"total\":52013819},\"progress\":\"[=====\\u003e + \ ] 5.775MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3279872,\"total\":4485359},\"progress\":\"[====================================\\u003e + \ ] 3.28MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":526336,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 526.3kB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3804160,\"total\":4485359},\"progress\":\"[==========================================\\u003e + \ ] 3.804MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6823936,\"total\":52013819},\"progress\":\"[======\\u003e + \ ] 6.824MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4262912,\"total\":4485359},\"progress\":\"[===============================================\\u003e + \ ] 4.263MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7348224,\"total\":52013819},\"progress\":\"[=======\\u003e + \ ] 7.348MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4489728,\"total\":4485359},\"progress\":\"[==================================================\\u003e] + \ 4.49MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1614848,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 1.615MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8921088,\"total\":52013819},\"progress\":\"[========\\u003e + \ ] 8.921MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2728960,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 2.729MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10493952,\"total\":52013819},\"progress\":\"[==========\\u003e + \ ] 10.49MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12066816,\"total\":52013819},\"progress\":\"[===========\\u003e + \ ] 12.07MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3843072,\"total\":201299501},\"progress\":\"[\\u003e + \ ] 3.843MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13115392,\"total\":52013819},\"progress\":\"[============\\u003e + \ ] 13.12MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4957184,\"total\":201299501},\"progress\":\"[=\\u003e + \ ] 4.957MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1417},\"progress\":\"[==================\\u003e + \ ] 512B/1.417kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":1417},\"progress\":\"[==================================================\\u003e] + \ 4.608kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14163968,\"total\":52013819},\"progress\":\"[=============\\u003e + \ ] 14.16MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6628352,\"total\":201299501},\"progress\":\"[=\\u003e + \ ] 6.628MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15212544,\"total\":52013819},\"progress\":\"[==============\\u003e + \ ] 15.21MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":505},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":505},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8299520,\"total\":201299501},\"progress\":\"[==\\u003e + \ ] 8.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16261120,\"total\":52013819},\"progress\":\"[===============\\u003e + \ ] 16.26MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9970688,\"total\":201299501},\"progress\":\"[==\\u003e + \ ] 9.971MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17309696,\"total\":52013819},\"progress\":\"[================\\u003e + \ ] 17.31MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11641856,\"total\":201299501},\"progress\":\"[==\\u003e + \ ] 11.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18358272,\"total\":52013819},\"progress\":\"[=================\\u003e + \ ] 18.36MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12755968,\"total\":201299501},\"progress\":\"[===\\u003e + \ ] 12.76MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19931136,\"total\":52013819},\"progress\":\"[===================\\u003e + \ ] 19.93MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14427136,\"total\":201299501},\"progress\":\"[===\\u003e + \ ] 14.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20979712,\"total\":52013819},\"progress\":\"[====================\\u003e + \ ] 20.98MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15541248,\"total\":201299501},\"progress\":\"[===\\u003e + \ ] 15.54MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22028288,\"total\":52013819},\"progress\":\"[=====================\\u003e + \ ] 22.03MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23601152,\"total\":52013819},\"progress\":\"[======================\\u003e + \ ] 23.6MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16655360,\"total\":201299501},\"progress\":\"[====\\u003e + \ ] 16.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25698304,\"total\":52013819},\"progress\":\"[========================\\u003e + \ ] 25.7MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17769472,\"total\":201299501},\"progress\":\"[====\\u003e + \ ] 17.77MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27271168,\"total\":52013819},\"progress\":\"[==========================\\u003e + \ ] 27.27MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19440640,\"total\":201299501},\"progress\":\"[====\\u003e + \ ] 19.44MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29368320,\"total\":52013819},\"progress\":\"[============================\\u003e + \ ] 29.37MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21111808,\"total\":201299501},\"progress\":\"[=====\\u003e + \ ] 21.11MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30941184,\"total\":52013819},\"progress\":\"[=============================\\u003e + \ ] 30.94MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22225920,\"total\":201299501},\"progress\":\"[=====\\u003e + \ ] 22.23MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31989760,\"total\":52013819},\"progress\":\"[==============================\\u003e + \ ] 31.99MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23340032,\"total\":201299501},\"progress\":\"[=====\\u003e + \ ] 23.34MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33562624,\"total\":52013819},\"progress\":\"[================================\\u003e + \ ] 33.56MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35659776,\"total\":52013819},\"progress\":\"[==================================\\u003e + \ ] 35.66MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24454144,\"total\":201299501},\"progress\":\"[======\\u003e + \ ] 24.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38281216,\"total\":52013819},\"progress\":\"[====================================\\u003e + \ ] 38.28MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25568256,\"total\":201299501},\"progress\":\"[======\\u003e + \ ] 25.57MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39329792,\"total\":52013819},\"progress\":\"[=====================================\\u003e + \ ] 39.33MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26682368,\"total\":201299501},\"progress\":\"[======\\u003e + \ ] 26.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":316416,\"total\":31609811},\"progress\":\"[\\u003e + \ ] 316.4kB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28353536,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 28.35MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1650688,\"total\":31609811},\"progress\":\"[==\\u003e + \ ] 1.651MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40378368,\"total\":52013819},\"progress\":\"[======================================\\u003e + \ ] 40.38MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":530912,\"total\":77871919},\"progress\":\"[\\u003e + \ ] 530.9kB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29467648,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 29.47MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2956800,\"total\":31609811},\"progress\":\"[====\\u003e + \ ] 2.957MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1642496,\"total\":77871919},\"progress\":\"[=\\u003e + \ ] 1.642MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40902656,\"total\":52013819},\"progress\":\"[=======================================\\u003e + \ ] 40.9MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4911616,\"total\":31609811},\"progress\":\"[=======\\u003e + \ ] 4.912MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2199552,\"total\":77871919},\"progress\":\"[=\\u003e + \ ] 2.2MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30024704,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 30.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6549504,\"total\":31609811},\"progress\":\"[==========\\u003e + \ ] 6.55MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41426944,\"total\":52013819},\"progress\":\"[=======================================\\u003e + \ ] 41.43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2745216,\"total\":77871919},\"progress\":\"[=\\u003e + \ ] 2.745MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30581760,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 30.58MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7853053,\"total\":31609811},\"progress\":\"[============\\u003e + \ ] 7.853MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31138816,\"total\":201299501},\"progress\":\"[=======\\u003e + \ ] 31.14MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41951232,\"total\":52013819},\"progress\":\"[========================================\\u003e + \ ] 41.95MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3822592,\"total\":77871919},\"progress\":\"[==\\u003e + \ ] 3.823MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32252928,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 32.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9192960,\"total\":31609811},\"progress\":\"[==============\\u003e + \ ] 9.193MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4900352,\"total\":77871919},\"progress\":\"[===\\u003e + \ ] 4.9MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42475520,\"total\":52013819},\"progress\":\"[========================================\\u003e + \ ] 42.48MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32809984,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 32.81MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10185216,\"total\":31609811},\"progress\":\"[================\\u003e + \ ] 10.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5964776,\"total\":77871919},\"progress\":\"[===\\u003e + \ ] 5.965MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42999808,\"total\":52013819},\"progress\":\"[=========================================\\u003e + \ ] 43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10850816,\"total\":31609811},\"progress\":\"[=================\\u003e + \ ] 10.85MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33924096,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 33.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7046152,\"total\":77871919},\"progress\":\"[====\\u003e + \ ] 7.046MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43524096,\"total\":52013819},\"progress\":\"[=========================================\\u003e + \ ] 43.52MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11486226,\"total\":31609811},\"progress\":\"[==================\\u003e + \ ] 11.49MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34481152,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 34.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8126464,\"total\":77871919},\"progress\":\"[=====\\u003e + \ ] 8.126MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44572672,\"total\":52013819},\"progress\":\"[==========================================\\u003e + \ ] 44.57MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45621248,\"total\":52013819},\"progress\":\"[===========================================\\u003e + \ ] 45.62MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9743872,\"total\":77871919},\"progress\":\"[======\\u003e + \ ] 9.744MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12151296,\"total\":31609811},\"progress\":\"[===================\\u003e + \ ] 12.15MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35595264,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 35.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36152320,\"total\":201299501},\"progress\":\"[========\\u003e + \ ] 36.15MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12467712,\"total\":31609811},\"progress\":\"[===================\\u003e + \ ] 12.47MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10855936,\"total\":77871919},\"progress\":\"[======\\u003e + \ ] 10.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46669824,\"total\":52013819},\"progress\":\"[============================================\\u003e + \ ] 46.67MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11412992,\"total\":77871919},\"progress\":\"[=======\\u003e + \ ] 11.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12795392,\"total\":31609811},\"progress\":\"[====================\\u003e + \ ] 12.8MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47194112,\"total\":52013819},\"progress\":\"[=============================================\\u003e + \ ] 47.19MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37266432,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 37.27MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13111738,\"total\":31609811},\"progress\":\"[====================\\u003e + \ ] 13.11MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47718400,\"total\":52013819},\"progress\":\"[=============================================\\u003e + \ ] 47.72MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12527104,\"total\":77871919},\"progress\":\"[========\\u003e + \ ] 12.53MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37823488,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 37.82MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14166776,\"total\":77871919},\"progress\":\"[=========\\u003e + \ ] 14.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13758464,\"total\":31609811},\"progress\":\"[=====================\\u003e + \ ] 13.76MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38380544,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 38.38MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48766976,\"total\":52013819},\"progress\":\"[==============================================\\u003e + \ ] 48.77MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15236096,\"total\":77871919},\"progress\":\"[=========\\u003e + \ ] 15.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14394606,\"total\":31609811},\"progress\":\"[======================\\u003e + \ ] 14.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49815552,\"total\":52013819},\"progress\":\"[===============================================\\u003e + \ ] 49.82MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39494656,\"total\":201299501},\"progress\":\"[=========\\u003e + \ ] 39.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16863232,\"total\":77871919},\"progress\":\"[==========\\u003e + \ ] 16.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15706624,\"total\":31609811},\"progress\":\"[========================\\u003e + \ ] 15.71MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51410944,\"total\":52013819},\"progress\":\"[=================================================\\u003e + ] 51.41MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17931648,\"total\":77871919},\"progress\":\"[===========\\u003e + \ ] 17.93MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40608768,\"total\":201299501},\"progress\":\"[==========\\u003e + \ ] 40.61MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52411392,\"total\":52013819},\"progress\":\"[==================================================\\u003e] + \ 52.41MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17017344,\"total\":31609811},\"progress\":\"[==========================\\u003e + \ ] 17.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18989056,\"total\":77871919},\"progress\":\"[============\\u003e + \ ] 18.99MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42279936,\"total\":201299501},\"progress\":\"[==========\\u003e + \ ] 42.28MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18328064,\"total\":31609811},\"progress\":\"[============================\\u003e + \ ] 18.33MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43951104,\"total\":201299501},\"progress\":\"[==========\\u003e + \ ] 43.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20051968,\"total\":77871919},\"progress\":\"[============\\u003e + \ ] 20.05MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19303745,\"total\":31609811},\"progress\":\"[==============================\\u003e + \ ] 19.3MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45065216,\"total\":201299501},\"progress\":\"[===========\\u003e + \ ] 45.07MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21127168,\"total\":77871919},\"progress\":\"[=============\\u003e + \ ] 21.13MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20636160,\"total\":31609811},\"progress\":\"[================================\\u003e + \ ] 20.64MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46179328,\"total\":201299501},\"progress\":\"[===========\\u003e + \ ] 46.18MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22194448,\"total\":77871919},\"progress\":\"[==============\\u003e + \ ] 22.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21946880,\"total\":31609811},\"progress\":\"[==================================\\u003e + \ ] 21.95MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23264528,\"total\":77871919},\"progress\":\"[==============\\u003e + \ ] 23.26MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47850496,\"total\":201299501},\"progress\":\"[===========\\u003e + \ ] 47.85MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23257600,\"total\":31609811},\"progress\":\"[====================================\\u003e + \ ] 23.26MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24342528,\"total\":77871919},\"progress\":\"[===============\\u003e + \ ] 24.34MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48964608,\"total\":201299501},\"progress\":\"[============\\u003e + \ ] 48.96MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24580096,\"total\":31609811},\"progress\":\"[======================================\\u003e + \ ] 24.58MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25938944,\"total\":77871919},\"progress\":\"[================\\u003e + \ ] 25.94MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50635776,\"total\":201299501},\"progress\":\"[============\\u003e + \ ] 50.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25218907,\"total\":31609811},\"progress\":\"[=======================================\\u003e + \ ] 25.22MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27539728,\"total\":77871919},\"progress\":\"[=================\\u003e + \ ] 27.54MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52864000,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 52.86MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26187269,\"total\":31609811},\"progress\":\"[=========================================\\u003e + \ ] 26.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29170688,\"total\":77871919},\"progress\":\"[==================\\u003e + \ ] 29.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53978112,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 53.98MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27482112,\"total\":31609811},\"progress\":\"[===========================================\\u003e + \ ] 27.48MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30266368,\"total\":77871919},\"progress\":\"[===================\\u003e + \ ] 30.27MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55092224,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 55.09MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28120064,\"total\":31609811},\"progress\":\"[============================================\\u003e + \ ] 28.12MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56206336,\"total\":201299501},\"progress\":\"[=============\\u003e + \ ] 56.21MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31372800,\"total\":77871919},\"progress\":\"[====================\\u003e + \ ] 31.37MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28753408,\"total\":31609811},\"progress\":\"[=============================================\\u003e + \ ] 28.75MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31916032,\"total\":77871919},\"progress\":\"[====================\\u003e + \ ] 31.92MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57320448,\"total\":201299501},\"progress\":\"[==============\\u003e + \ ] 57.32MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29069940,\"total\":31609811},\"progress\":\"[=============================================\\u003e + \ ] 29.07MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33000448,\"total\":77871919},\"progress\":\"[=====================\\u003e + \ ] 33MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58434560,\"total\":201299501},\"progress\":\"[==============\\u003e + \ ] 58.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29386752,\"total\":31609811},\"progress\":\"[==============================================\\u003e + \ ] 29.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59548672,\"total\":201299501},\"progress\":\"[==============\\u003e + \ ] 59.55MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34114560,\"total\":77871919},\"progress\":\"[=====================\\u003e + \ ] 34.11MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60662784,\"total\":201299501},\"progress\":\"[===============\\u003e + \ ] 60.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30019810,\"total\":31609811},\"progress\":\"[===============================================\\u003e + \ ] 30.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35174400,\"total\":77871919},\"progress\":\"[======================\\u003e + \ ] 35.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61776896,\"total\":201299501},\"progress\":\"[===============\\u003e + \ ] 61.78MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36288512,\"total\":77871919},\"progress\":\"[=======================\\u003e + \ ] 36.29MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30655232,\"total\":31609811},\"progress\":\"[================================================\\u003e + \ ] 30.66MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63448064,\"total\":201299501},\"progress\":\"[===============\\u003e + \ ] 63.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31986176,\"total\":31609811},\"progress\":\"[==================================================\\u003e] + \ 31.99MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37402624,\"total\":77871919},\"progress\":\"[========================\\u003e + \ ] 37.4MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38516736,\"total\":77871919},\"progress\":\"[========================\\u003e + \ ] 38.52MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33298944,\"total\":31609811},\"progress\":\"[==================================================\\u003e] + \ 33.3MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64562176,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 64.56MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34030592,\"total\":31609811},\"progress\":\"[==================================================\\u003e] + \ 34.03MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39630848,\"total\":77871919},\"progress\":\"[=========================\\u003e + \ ] 39.63MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65676288,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 65.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40187904,\"total\":77871919},\"progress\":\"[=========================\\u003e + \ ] 40.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66790400,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 66.79MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67904512,\"total\":201299501},\"progress\":\"[================\\u003e + \ ] 67.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41807408,\"total\":77871919},\"progress\":\"[==========================\\u003e + \ ] 41.81MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69018624,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 69.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42890240,\"total\":77871919},\"progress\":\"[===========================\\u003e + \ ] 42.89MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":70132736,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 70.13MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43962368,\"total\":77871919},\"progress\":\"[============================\\u003e + \ ] 43.96MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71246848,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 71.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45076480,\"total\":77871919},\"progress\":\"[============================\\u003e + \ ] 45.08MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72360960,\"total\":201299501},\"progress\":\"[=================\\u003e + \ ] 72.36MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46159872,\"total\":77871919},\"progress\":\"[=============================\\u003e + \ ] 46.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72918016,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 72.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47799296,\"total\":77871919},\"progress\":\"[==============================\\u003e + \ ] 47.8MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73475072,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 73.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48878096,\"total\":77871919},\"progress\":\"[===============================\\u003e + \ ] 48.88MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74589184,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 74.59MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49979904,\"total\":77871919},\"progress\":\"[================================\\u003e + \ ] 49.98MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76260352,\"total\":201299501},\"progress\":\"[==================\\u003e + \ ] 76.26MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51072512,\"total\":77871919},\"progress\":\"[================================\\u003e + \ ] 51.07MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77374464,\"total\":201299501},\"progress\":\"[===================\\u003e + \ ] 77.37MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52160000,\"total\":77871919},\"progress\":\"[=================================\\u003e + \ ] 52.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78488576,\"total\":201299501},\"progress\":\"[===================\\u003e + \ ] 78.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53246464,\"total\":77871919},\"progress\":\"[==================================\\u003e + \ ] 53.25MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":79602688,\"total\":201299501},\"progress\":\"[===================\\u003e + \ ] 79.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54357504,\"total\":77871919},\"progress\":\"[==================================\\u003e + \ ] 54.36MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80716800,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 80.72MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":81830912,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 81.83MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55436880,\"total\":77871919},\"progress\":\"[===================================\\u003e + \ ] 55.44MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":82945024,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 82.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56500224,\"total\":77871919},\"progress\":\"[====================================\\u003e + \ ] 56.5MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":84059136,\"total\":201299501},\"progress\":\"[====================\\u003e + \ ] 84.06MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57614336,\"total\":77871919},\"progress\":\"[====================================\\u003e + \ ] 57.61MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":85173248,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 85.17MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58696192,\"total\":77871919},\"progress\":\"[=====================================\\u003e + \ ] 58.7MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59243008,\"total\":77871919},\"progress\":\"[======================================\\u003e + \ ] 59.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":86287360,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 86.29MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":87401472,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 87.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60298752,\"total\":77871919},\"progress\":\"[======================================\\u003e + \ ] 60.3MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":88515584,\"total\":201299501},\"progress\":\"[=====================\\u003e + \ ] 88.52MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61412864,\"total\":77871919},\"progress\":\"[=======================================\\u003e + \ ] 61.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":89629696,\"total\":201299501},\"progress\":\"[======================\\u003e + \ ] 89.63MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62511616,\"total\":77871919},\"progress\":\"[========================================\\u003e + \ ] 62.51MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":90743808,\"total\":201299501},\"progress\":\"[======================\\u003e + \ ] 90.74MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63602688,\"total\":77871919},\"progress\":\"[========================================\\u003e + \ ] 63.6MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":92414976,\"total\":201299501},\"progress\":\"[======================\\u003e + \ ] 92.41MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64671481,\"total\":77871919},\"progress\":\"[=========================================\\u003e + \ ] 64.67MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":93529088,\"total\":201299501},\"progress\":\"[=======================\\u003e + \ ] 93.53MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65720927,\"total\":77871919},\"progress\":\"[==========================================\\u003e + \ ] 65.72MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":95200256,\"total\":201299501},\"progress\":\"[=======================\\u003e + \ ] 95.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":96314368,\"total\":201299501},\"progress\":\"[=======================\\u003e + \ ] 96.31MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66770432,\"total\":77871919},\"progress\":\"[==========================================\\u003e + \ ] 66.77MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":97985536,\"total\":201299501},\"progress\":\"[========================\\u003e + \ ] 97.99MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68375552,\"total\":77871919},\"progress\":\"[===========================================\\u003e + \ ] 68.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99656704,\"total\":201299501},\"progress\":\"[========================\\u003e + \ ] 99.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69450656,\"total\":77871919},\"progress\":\"[============================================\\u003e + \ ] 69.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101327872,\"total\":201299501},\"progress\":\"[=========================\\u003e + \ ] 101.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71087104,\"total\":77871919},\"progress\":\"[=============================================\\u003e + \ ] 71.09MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":102999040,\"total\":201299501},\"progress\":\"[=========================\\u003e + \ ] 103MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72154528,\"total\":77871919},\"progress\":\"[==============================================\\u003e + \ ] 72.15MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":104113152,\"total\":201299501},\"progress\":\"[=========================\\u003e + \ ] 104.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73776935,\"total\":77871919},\"progress\":\"[===============================================\\u003e + \ ] 73.78MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105227264,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 105.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74826752,\"total\":77871919},\"progress\":\"[================================================\\u003e + \ ] 74.83MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":106341376,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 106.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":75380736,\"total\":77871919},\"progress\":\"[================================================\\u003e + \ ] 75.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":107455488,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 107.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76453677,\"total\":77871919},\"progress\":\"[=================================================\\u003e + ] 76.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108569600,\"total\":201299501},\"progress\":\"[==========================\\u003e + \ ] 108.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77546496,\"total\":77871919},\"progress\":\"[=================================================\\u003e + ] 77.55MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":110240768,\"total\":201299501},\"progress\":\"[===========================\\u003e + \ ] 110.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78621184,\"total\":77871919},\"progress\":\"[==================================================\\u003e] + \ 78.62MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":111354880,\"total\":201299501},\"progress\":\"[===========================\\u003e + \ ] 111.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80227328,\"total\":77871919},\"progress\":\"[==================================================\\u003e] + \ 80.23MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80420352,\"total\":77871919},\"progress\":\"[==================================================\\u003e] + \ 80.42MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":112468992,\"total\":201299501},\"progress\":\"[===========================\\u003e + \ ] 112.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":113583104,\"total\":201299501},\"progress\":\"[============================\\u003e + \ ] 113.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":116368384,\"total\":201299501},\"progress\":\"[============================\\u003e + \ ] 116.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":118039552,\"total\":201299501},\"progress\":\"[=============================\\u003e + \ ] 118MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":119710720,\"total\":201299501},\"progress\":\"[=============================\\u003e + \ ] 119.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":121938944,\"total\":201299501},\"progress\":\"[==============================\\u003e + \ ] 121.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":123610112,\"total\":201299501},\"progress\":\"[==============================\\u003e + \ ] 123.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":125279744,\"total\":201299501},\"progress\":\"[===============================\\u003e + \ ] 125.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":126923264,\"total\":201299501},\"progress\":\"[===============================\\u003e + \ ] 126.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":128012984,\"total\":201299501},\"progress\":\"[===============================\\u003e + \ ] 128MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":130667520,\"total\":201299501},\"progress\":\"[================================\\u003e + \ ] 130.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":133822976,\"total\":201299501},\"progress\":\"[=================================\\u003e + \ ] 133.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":136454144,\"total\":201299501},\"progress\":\"[=================================\\u003e + \ ] 136.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":139085312,\"total\":201299501},\"progress\":\"[==================================\\u003e + \ ] 139.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":141187584,\"total\":201299501},\"progress\":\"[===================================\\u003e + \ ] 141.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":143816704,\"total\":201299501},\"progress\":\"[===================================\\u003e + \ ] 143.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":145920512,\"total\":201299501},\"progress\":\"[====================================\\u003e + \ ] 145.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":148550656,\"total\":201299501},\"progress\":\"[====================================\\u003e + \ ] 148.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":150127616,\"total\":201299501},\"progress\":\"[=====================================\\u003e + \ ] 150.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":152757760,\"total\":201299501},\"progress\":\"[=====================================\\u003e + \ ] 152.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":155386880,\"total\":201299501},\"progress\":\"[======================================\\u003e + \ ] 155.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":158017024,\"total\":201299501},\"progress\":\"[=======================================\\u003e + \ ] 158MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":160645632,\"total\":201299501},\"progress\":\"[=======================================\\u003e + \ ] 160.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":163801088,\"total\":201299501},\"progress\":\"[========================================\\u003e + \ ] 163.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":166431232,\"total\":201299501},\"progress\":\"[=========================================\\u003e + \ ] 166.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":169060352,\"total\":201299501},\"progress\":\"[=========================================\\u003e + \ ] 169.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":171690496,\"total\":201299501},\"progress\":\"[==========================================\\u003e + \ ] 171.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":174319616,\"total\":201299501},\"progress\":\"[===========================================\\u003e + \ ] 174.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":176949760,\"total\":201299501},\"progress\":\"[===========================================\\u003e + \ ] 176.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":179579392,\"total\":201299501},\"progress\":\"[============================================\\u003e + \ ] 179.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":182209536,\"total\":201299501},\"progress\":\"[=============================================\\u003e + \ ] 182.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":184838144,\"total\":201299501},\"progress\":\"[=============================================\\u003e + \ ] 184.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":187468288,\"total\":201299501},\"progress\":\"[==============================================\\u003e + \ ] 187.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":190170112,\"total\":201299501},\"progress\":\"[===============================================\\u003e + \ ] 190.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":192332377,\"total\":201299501},\"progress\":\"[===============================================\\u003e + \ ] 192.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":194442273,\"total\":201299501},\"progress\":\"[================================================\\u003e + \ ] 194.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":196553815,\"total\":201299501},\"progress\":\"[================================================\\u003e + \ ] 196.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":198690073,\"total\":201299501},\"progress\":\"[=================================================\\u003e + ] 198.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":200272692,\"total\":201299501},\"progress\":\"[=================================================\\u003e + ] 200.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":201910272,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 201.9MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":203509565,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 203.5MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205106796,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 205.1MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205797376,\"total\":201299501},\"progress\":\"[==================================================\\u003e] + \ 205.8MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"latest: + digest: sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3 + size: 2832\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3\",\"Size\":2832}}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:28 GMT + - Mon, 15 Dec 2025 13:30:58 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-bp&namespace_id=2daf1956-c03f-4145-8d26-4db370572397&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-bp&namespace_id=af4f8dde-1587-4cff-86d3-65f068b2d378&order_by=created_at_asc&page=1 method: GET response: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:52 GMT + - Mon, 15 Dec 2025 13:31:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8253,33 +1773,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b72ca6f2-d41b-4ecc-96f7-0f4d306b98f5 + - 6377b41e-34bb-49fe-b27c-89a0e6d14385 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431851943Z","updated_at":"2025-09-08T12:22:52.431851943Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762152733Z", "updated_at":"2025-12-15T13:31:27.762152733Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431851943Z","updated_at":"2025-09-08T12:22:52.431851943Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762152733Z", "updated_at":"2025-12-15T13:31:27.762152733Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "963" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:52 GMT + - Mon, 15 Dec 2025 13:31:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8287,33 +1825,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab2290ce-b2eb-434d-810b-d7ce07e2ea75 + - 61fc990f-21be-4667-a657-9e62e7777195 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.677567831Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487279Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: PATCH response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.677567831Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487279Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "960" + - "993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:52 GMT + - Mon, 15 Dec 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8321,31 +1877,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8b06315-701d-4011-ad84-8ef5aa168fb4 + - 03c708fe-2177-4f41-ab5b-66945f009739 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.677568Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.677568Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:52 GMT + - Mon, 15 Dec 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8353,33 +1927,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c644f51f-7db0-431c-889e-bb08bb70a79c + - 01e40cd9-138d-496c-a890-5fc869554f13 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.811089757Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309738811Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b/deploy + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6/deploy method: POST response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.811089757Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309738811Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "960" + - "993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:52 GMT + - Mon, 15 Dec 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8387,31 +1979,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 240fd8c4-a0bb-4ad3-89a0-5ca4cc73f83c + - af5842d9-9562-477c-8133-9753f29cb08c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.811090Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309739Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:52.811090Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309739Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:52 GMT + - Mon, 15 Dec 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8419,31 +2029,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34ca535e-41e9-4540-859f-2fe72ce43e3c + - b4cc5646-9984-4c6b-aab4-8d59e7b08cf5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:22:57 GMT + - Mon, 15 Dec 2025 13:31:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8451,31 +2079,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83398fe0-401b-4159-8833-91b1ada05d5a + - 6c5ae297-6051-4127-987b-db78a9c327c0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:03 GMT + - Mon, 15 Dec 2025 13:31:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8483,31 +2129,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b3f4612-bd42-4af7-a3b5-1951d02e73ac + - 2c1ab15f-6125-4434-84b5-f0b67946eb05 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:08 GMT + - Mon, 15 Dec 2025 13:32:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8515,31 +2179,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b65c41f4-e6db-49dd-9cbf-e102543aef4d + - 8ab8f7d4-5b79-42f7-b88a-0360751f2e07 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:13 GMT + - Mon, 15 Dec 2025 13:32:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8547,31 +2229,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8c362a9-9134-43f9-8402-ce83b47199d1 + - 76690a20-b9d2-470e-93fa-67aa2718244e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:18 GMT + - Mon, 15 Dec 2025 13:32:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8579,31 +2279,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17511ed3-d8a4-47df-8d21-6fc53bd16951 + - afd69298-463f-4a9d-909d-b1d776b9b4d5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:23 GMT + - Mon, 15 Dec 2025 13:32:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8611,31 +2329,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 468ebf2e-d6bb-416f-9d68-d327eb562f7c + - bbed5b17-2598-49a1-9502-44bd986d1b3a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:28 GMT + - Mon, 15 Dec 2025 13:33:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8643,31 +2379,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afdd6575-c1ee-4a2e-ba24-528feeaee542 + - 2a2ea8e5-d2d4-4084-b2f5-191d9f0c0157 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:33 GMT + - Mon, 15 Dec 2025 13:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8675,31 +2429,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bb616a5-1883-4fa1-9b83-98c4818dff08 + - 73d9a3c2-34e7-4d64-b9a8-4639fffeca7d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:39 GMT + - Mon, 15 Dec 2025 13:33:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8707,31 +2479,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 976a2792-2250-45c8-88ce-ac0a37457f65 + - cf57463a-b14e-48b5-9773-0c6b2d981bd5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:44 GMT + - Mon, 15 Dec 2025 13:33:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8739,31 +2529,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88b3497f-6817-49e8-8bea-807781b7f622 + - cc817e73-d2cb-4965-929d-de2c9d59ff12 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:49 GMT + - Mon, 15 Dec 2025 13:34:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8771,31 +2579,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06721eb8-f926-4813-9fad-b17fb377b382 + - 17d17b61-2ca2-401e-a46f-d7dc7041c19d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:54 GMT + - Mon, 15 Dec 2025 13:34:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8803,31 +2629,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63c5ddfb-27af-49a3-9dbe-8207430b99af + - 2cd32008-3826-4209-958b-e824e3c3c655 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:23:59 GMT + - Mon, 15 Dec 2025 13:34:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8835,31 +2679,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 460a908f-ea9c-4ef2-9fad-c3988cbf8189 + - 8a2616da-4d25-494d-89ff-58bf609df439 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:04 GMT + - Mon, 15 Dec 2025 13:34:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8867,31 +2729,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d95aab87-936d-48e8-bb14-db6e70d887bf + - 7824f372-79f7-4564-8f3e-1c14569a5368 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:09 GMT + - Mon, 15 Dec 2025 13:35:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8899,31 +2779,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30e0762e-7f86-4992-88b5-c2906f36ce28 + - d2c81d6c-3b66-4319-ab59-1c7b51b10557 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:14 GMT + - Mon, 15 Dec 2025 13:35:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8931,31 +2829,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d62df280-64eb-45cd-b234-fee8e207cfdf + - d7d64134-001e-493f-a947-ba18e8d91309 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:19 GMT + - Mon, 15 Dec 2025 13:35:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8963,31 +2879,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 023e8103-2037-4562-b0fe-1dc4e7777e0d + - e8af0ad0-846e-4e98-acb3-ea64c2f92c01 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:24 GMT + - Mon, 15 Dec 2025 13:35:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8995,31 +2929,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2929aa48-50d3-4092-a5ac-ee778406834a + - f51995af-0cc5-4c56-b856-580a7a094129 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:29 GMT + - Mon, 15 Dec 2025 13:36:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9027,31 +2979,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc6d9690-3899-4618-b095-5e902f4113de + - fc3ab576-c530-4ec2-a47a-d2c74979a38d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:34 GMT + - Mon, 15 Dec 2025 13:36:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9059,31 +3029,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1e91bc8-6d39-4b2e-9942-a1832a4f4524 + - 3f9d43b4-0889-4798-9b88-fafc59d71a5b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:40 GMT + - Mon, 15 Dec 2025 13:36:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9091,31 +3079,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 259f199c-e494-4d87-98a5-0a132c31a19a + - bd0fe7ea-cb7f-4cf0-8545-67fb8703b28f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:45 GMT + - Mon, 15 Dec 2025 13:36:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9123,31 +3129,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3df515be-5348-41c1-ac09-587eb450845d + - e65bd9c8-19c5-441f-ae7c-99bc8481dc0a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:50 GMT + - Mon, 15 Dec 2025 13:37:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9155,31 +3179,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd2dcbc6-ad8b-46c5-82f3-a089b037c7fb + - 7bcb66ac-3bcc-4135-8d66-53d371e86260 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:24:55 GMT + - Mon, 15 Dec 2025 13:37:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9187,31 +3229,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec2ae1f1-2741-445f-a40c-2288f19b7f01 + - b8c34c03-981d-44ef-8ed0-15417fd8e8e8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:00 GMT + - Mon, 15 Dec 2025 13:37:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9219,31 +3279,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f8b4692-279c-4d81-a0f0-70c8bf59b11c + - cac8d720-1eb4-47ba-b555-46d075e2927d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:05 GMT + - Mon, 15 Dec 2025 13:38:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9251,31 +3329,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dc05d95-0648-4eb5-a2a6-ccea5f53a719 + - 9b30d8a4-fec0-4c03-b945-42e12878e664 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:10 GMT + - Mon, 15 Dec 2025 13:38:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9283,31 +3379,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 492434f0-39e1-4e92-a821-c95f0549029f + - 482be454-d3f4-4853-af68-d4443e892a66 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:15 GMT + - Mon, 15 Dec 2025 13:38:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9315,31 +3429,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41f5d982-95ae-412f-9e41-69c0a2711d46 + - fa9e1b22-52df-4ac2-a3aa-2d52cdf740f8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:20 GMT + - Mon, 15 Dec 2025 13:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9347,31 +3479,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ac05c91-82ad-455a-a027-6f646a981347 + - 5e2e64b8-b868-4004-a9fa-60217c295cdb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:26 GMT + - Mon, 15 Dec 2025 13:39:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9379,31 +3529,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b470ad11-5ee9-4e4c-b8aa-0af10ce9cd4c + - 0d4032c0-86d6-444c-b2f0-fa0ecc9a834c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:31 GMT + - Mon, 15 Dec 2025 13:39:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9411,31 +3579,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb10cb71-cb1f-4727-b97c-f67c7d900452 + - a80df82f-9fa3-44c9-9cb0-d2b3848755d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:36 GMT + - Mon, 15 Dec 2025 13:39:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9443,31 +3629,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65577f1d-1f93-40a7-b41a-1d2ec2969d12 + - f32c438c-8727-482d-a067-be3e2307a828 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:41 GMT + - Mon, 15 Dec 2025 13:39:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9475,31 +3679,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 647e6c4b-5482-40dd-8333-5cb4faf386cb + - ba634782-2917-4bc2-81d1-198b26d7f564 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:46 GMT + - Mon, 15 Dec 2025 13:40:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9507,31 +3729,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 646c8074-c3b8-41cd-9a44-79775ac3f563 + - 39295983-dd00-454c-a2da-1a906fc23307 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:51 GMT + - Mon, 15 Dec 2025 13:40:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9539,31 +3779,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cb720a7-81cb-476a-bb5e-c425f606bf78 + - 9af0d161-f341-4275-80de-9cef630a988c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:25:56 GMT + - Mon, 15 Dec 2025 13:40:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9571,31 +3829,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be923817-843d-4f97-b849-16fd12d34f69 + - 07e56ae3-2959-4be9-a30e-28a79865dda2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:01 GMT + - Mon, 15 Dec 2025 13:40:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9603,31 +3879,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5efb1f4f-3765-463a-89d8-e6f29b95a806 + - 13acd71c-5b09-4b82-a5e6-1126ae58b272 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:06 GMT + - Mon, 15 Dec 2025 13:41:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9635,31 +3929,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c16d47b0-a449-4580-b3e3-b30971bacf0b + - 4ce61156-43de-465c-b721-22b278db370a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:11 GMT + - Mon, 15 Dec 2025 13:41:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9667,31 +3979,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ccf18fa-8124-42c1-8812-3c347930924c + - b37cd7f9-6bdd-491e-a3ac-d097029201ca status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:16 GMT + - Mon, 15 Dec 2025 13:41:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9699,31 +4029,55 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1f81a9d-505a-4916-8930-1c3b169a728b + - d41610e8-2c3e-4aad-a9b5-3e614adaf4c3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"error", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":"Container failed with: 2025/12/15 13:37:21 failed to open \"package-lock.json\": + open /workspace/package-lock.json: permission denied\n\u001b[31;1mERROR: \u001b[0mfailed + to launch: exec.d: failed to execute exec.d file at path ''/layers/paketo-buildpacks_npm-install/launch-modules/exec.d/0-setup-symlinks'': + exit status 1\n.", "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:41:35.547488Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"error", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":"Container failed with: 2025/12/15 13:37:21 failed to open \"package-lock.json\": + open /workspace/package-lock.json: permission denied\n\u001b[31;1mERROR: \u001b[0mfailed + to launch: exec.d: failed to execute exec.d file at path ''/layers/paketo-buildpacks_npm-install/launch-modules/exec.d/0-setup-symlinks'': + exit status 1\n.", "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:41:35.547488Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "957" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:21 GMT + - Mon, 15 Dec 2025 13:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9731,31 +4085,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fe75203-faf9-42eb-b6c5-154878aae438 + - b71547dc-7c53-448f-b2d4-570dba393829 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"namespaces":[{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"namespaces":[{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' headers: Content-Length: - - "957" + - "634" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:26 GMT + - Mon, 15 Dec 2025 13:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9763,31 +4129,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd5b6821-727b-4e1e-85e7-7d0f4fb32936 + - 3081c0ce-fdfa-4ca6-aa0f-a4ab42c4ce55 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:41:46.468861444Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 + method: DELETE response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:41:46.468861444Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "957" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:31 GMT + - Mon, 15 Dec 2025 13:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9795,31 +4173,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de7bee29-f9d6-44ea-98ef-e95d277a22e9 + - c8bdb582-5391-4ca8-99f7-0d99827e68fd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "957" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:36 GMT + - Mon, 15 Dec 2025 13:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9827,31 +4217,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81c4309b-f1e8-464d-b623-264eed2cdafb + - e2147e73-0466-412c-b25d-679c3a60f693 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", + "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "957" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:41 GMT + - Mon, 15 Dec 2025 13:42:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9859,31 +4261,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3740c27c-f0d5-44f7-9055-f0caeecc05db + - 8d512d85-0558-4af7-8e50-d84e1cb7b0b8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"message":"Namespace was not found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"message":"Namespace was not found"}' headers: Content-Length: - - "957" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:46 GMT + - Mon, 15 Dec 2025 13:42:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9891,2697 +4293,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bdbe762-f806-4791-8c7d-5598744705c2 - status: 200 OK - code: 200 + - 9a46be2f-ef6c-444f-ac4f-ad9caeb432f0 + status: 404 Not Found + code: 404 duration: "" - request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 method: GET response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "957" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:26:52 GMT + - Mon, 15 Dec 2025 13:42:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be970ba7-b0ff-49c1-9130-5a5f567dcbad - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:26:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 801536e9-25da-404d-a5fa-01a8a2202039 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5953824e-135a-4dbd-aa4a-06e05487045d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0241e1d1-b08c-4f92-8411-c0ad75b6eed2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bbbb281c-36bc-45e2-aebc-536acb060d04 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 05cfeb75-0e04-4b2c-9e37-d4be8ee3639c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8901cd39-ed5c-4021-b6d0-6d99c19b7c8b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8c16918-8674-4d8a-be38-98ca06ade5ee - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13506f84-ca7f-47cb-8b57-27e7239f5121 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4f0d381-b7cc-4c1e-8051-97a85c2d11d3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 454b7ff1-588c-464d-9615-f4486f399fe3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c06f881-b159-42c7-b997-bbb7c29b0bc7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - adb0b6d7-7375-451a-9986-b927ff2f88ca - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:27:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f6b3480c-c3af-4e45-806b-a9732c96979f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b538c47-25e7-4ecd-b8ae-fcf710302d91 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f706dc1b-73c2-441d-ba62-c996343bfa2f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 231db635-46d4-497c-aaac-314db21a5a43 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3a842cb0-98a9-491e-b9bf-6d4f43ba9677 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d033cb14-4c50-4b71-ab09-ac4e6770fc8e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9559749f-7bb2-4538-9948-ab77de534c8d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2e12794c-197b-402e-b6aa-21edf7282609 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 47a57e88-1f8f-40c8-96fa-5874fd45dcf3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 27b9039f-5b5d-464d-8f1d-a2e3c9fd76ae - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 88e2ee02-b61b-4b9d-b12f-b6a8e7887e98 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae54bcbc-a01a-4f3f-8de8-1d46c88ce0af - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:28:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 921278e1-af07-40d4-8bf3-5cda3f36811e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cbb7a732-3526-4570-a356-34a75997af6f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5c34feca-6fc0-41d1-924a-93cb829a2bf1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3a1549e7-f9fb-4ae6-ba00-2193ecad0a98 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ab77db4-62a2-4a3c-9408-69cc884e87de - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 96f098ca-68ea-4428-b9db-2d2d35b7701d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4636ef5-16c4-48af-b8dc-b6f07d7c6642 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 311d4731-28cd-4ced-8c75-6cf66c02a8cd - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 29930853-0261-4971-a295-c968a8453519 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6caa9e57-cc32-4aff-9f26-391dd72d5a3e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f38f299b-6290-4f82-9fa1-e497c6714dc7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b782cd21-bc27-4bfd-ad4b-d64fa2c6a6c7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:29:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d64a59d-a454-4fa5-b7d8-51a8048a289f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ce939fb-e5e2-4dc2-93f0-6f09ea19d458 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dea762b6-4b3f-416e-8b6a-3023703fb7d0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30cfbb77-04bf-462f-b39a-063417b96b47 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 642992bd-4fcd-4bb7-b45b-a30845da12a9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1edbae2-5201-47fb-86cc-f3ba022c4d71 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98f780c3-d897-4801-a8a0-33cfcca55b36 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98e69e05-f3ea-4fe6-907b-955098810755 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b46acd0c-ed4d-41c0-af71-8d1216213e8a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 36c0e9e1-f982-41c4-8696-8187be5454f0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0ccd96a-7c75-497c-ac3e-712b221ebbb3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:30:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14965765-8a5d-4f73-b81e-74c83d7cf5f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7fb2c45-d604-423f-b47d-313d748569e3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 031e9a8d-e788-4820-a863-f5edb83b4a99 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce5a1727-4510-4854-83c9-436c3847a849 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad35760a-ed18-4e24-86e4-b970c83f696e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 443dcd03-19ff-4b72-8de0-f82237495a45 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff9a0631-a00c-4d58-a5dd-d06248f85c5c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72750eb0-59ae-4509-b52d-fdbaf97f3432 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e3b1bfc8-7fa2-4a3b-888e-0b4f6e06ab25 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3ad23159-41af-4586-b194-afd57d6b5ef7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0d19c3e-60e9-410f-821b-14a049014d7f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 60281b71-b7d9-4f5b-afb3-677922039334 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:31:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b7835f1-7407-44d9-9cd0-ac19d6ecd288 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2dad17e0-d7f4-4be5-98b1-1e90677136f3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f56f1598-51df-41fe-9fc8-5c7c4bbd736e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09375836-f90f-4d79-89fd-9f84cded0d5d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b969e66-ad5c-43f8-b316-781e1fec781b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0aca4c2e-5930-4579-a182-890fef5a10a4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 397a9653-3500-4014-bf6f-e0877a3e2437 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b0a52ff-059e-4ac3-8bf2-f1c58dd6e96a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2650d800-9f7c-4c93-b209-0626f17a0b78 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1921127b-18c5-4d89-9e24-faa49e9ad7fa - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 875a21c0-c761-43ed-bff3-0b8e46bf3c68 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff9bd405-1c5b-4b07-9cad-63f5bcd1c9bf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:22:53.090032Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:32:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e757adf9-a27b-4beb-8b71-0de610a127b9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Back-off - pulling image \"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp@sha256:f851652aaa24c8a4adf46595eb80b575ac282fc65bc09ed6012d367b34239a89\": - ErrImagePull: rpc error: code = InvalidArgument desc = failed to pull and unpack - image \"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp@sha256:f851652aaa24c8a4adf46595eb80b575ac282fc65bc09ed6012d367b34239a89\": - unable to fetch descriptor (sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855) - which reports content size of zero: invalid argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:32:57.852981Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/932e4af4-5095-42ef-999c-316789f8202b - method: GET - response: - body: '{"id":"932e4af4-5095-42ef-999c-316789f8202b","name":"cli-t-ctnr-deploy-bp","namespace_id":"2daf1956-c03f-4145-8d26-4db370572397","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Back-off - pulling image \"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp@sha256:f851652aaa24c8a4adf46595eb80b575ac282fc65bc09ed6012d367b34239a89\": - ErrImagePull: rpc error: code = InvalidArgument desc = failed to pull and unpack - image \"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp@sha256:f851652aaa24c8a4adf46595eb80b575ac282fc65bc09ed6012d367b34239a89\": - unable to fetch descriptor (sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855) - which reports content size of zero: invalid argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx/cli-t-ctnr-deploy-bp:latest","max_concurrency":50,"domain_name":"clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":3000,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:22:52.431852Z","updated_at":"2025-09-08T12:32:57.852981Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "1517" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c456d65c-3d3b-43d5-bc54-ac12134f30cd - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:21:28.035643Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:21:28.035643Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' - headers: - Content-Length: - - "618" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62d0e575-d143-4447-b99d-c6eda72b634f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189111Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: DELETE - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189111Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "591" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14a0e17d-f22a-406a-83a3-c39d82fcb792 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74581d38-14c0-42e8-b8de-39fa24c94740 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d5fd4e6-7faa-4d72-9542-b88ac848fe24 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7cce63dd-4f43-4efb-9c73-8668deed6778 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1428b1c3-be4c-43ff-8d72-7eeed015a775 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ce4d3f1-1fef-4d89-b143-411b2063a8f1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"id":"2daf1956-c03f-4145-8d26-4db370572397","name":"cli-t-ctnr-deploy-bp","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"6b1e7a1c-5615-4bf7-a335-544f75c7f3d7","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybp5rwcoxvx","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:21:25.583932Z","updated_at":"2025-09-08T12:33:01.505189Z","vpc_integration_activated":false,"region":"fr-par"}' - headers: - Content-Length: - - "588" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c074193-9683-4467-8ce3-e5b036924892 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"message":"Namespace was not found"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2daf1956-c03f-4145-8d26-4db370572397 - method: GET - response: - body: '{"message":"Namespace was not found"}' - headers: - Content-Length: - - "37" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3725b617-9b4d-4d4d-b6ad-8fe2f145b6db - status: 404 Not Found - code: 404 - duration: "" -- request: - body: '{"namespaces":[],"total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[],"total_count":0}' - headers: - Content-Length: - - "33" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:33:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12589,7 +4325,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4010e448-075a-4f94-8b4e-d91812618942 + - 8ad67c66-26ce-466d-8eb0-4579d0f00e60 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden index 1f07319d50..50b37488c7 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud +Your application is now available at https://clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://clitctnrdeploybp5rwcoxvx-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud\n" +"Your application is now available at https://clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml index 42d9b1ade2..2c3f63ce3a 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml @@ -2,24 +2,24 @@ version: 1 interactions: - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:18:45 GMT + - Mon, 15 Dec 2025 13:25:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: @@ -29,31 +29,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58d1277a-a29d-43e5-bc27-1460299df5cd + - cb095df3-a61b-404d-9c3d-f45c1fd2b59c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706292Z","updated_at":"2025-09-08T12:18:46.640706292Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:25:25.632398683Z", "updated_at":"2025-12-15T13:25:25.632398683Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706292Z","updated_at":"2025-09-08T12:18:46.640706292Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:25:25.632398683Z", "updated_at":"2025-12-15T13:25:25.632398683Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "505" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:18:46 GMT + - Mon, 15 Dec 2025 13:25:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: @@ -63,29 +73,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03141d24-02e0-40da-8f62-fdd418502ecd + - c9c92c00-c80e-404a-8b0c-ede08126874b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:18:46.640706Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", "updated_at":"2025-12-15T13:25:25.632399Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"pending","registry_namespace_id":"","error_message":null,"registry_endpoint":"","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:18:46.640706Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", + "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], + "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", "updated_at":"2025-12-15T13:25:25.632399Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "499" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:18:46 GMT + - Mon, 15 Dec 2025 13:25:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: @@ -95,29 +115,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c531fd2-a64e-4167-91f0-4d29f1bdbed1 + - 110a3496-e117-454f-94c9-4c187cdbd0bb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:18:48.993250Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:18:48.993250Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "583" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:18:51 GMT + - Mon, 15 Dec 2025 13:25:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: @@ -127,7 +159,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 211e73e3-2674-4d0f-9ced-d82c0e648b9b + - d21bf8c1-0c53-47bf-a029-1b7dbe8ee230 status: 200 OK code: 200 duration: "" @@ -146,10 +178,12 @@ interactions: - "2" Cache-Control: - no-cache, no-store, must-revalidate + Content-Length: + - "0" Content-Type: - text/plain; charset=utf-8 Date: - - Mon, 08 Sep 2025 12:18:51 GMT + - Mon, 15 Dec 2025 13:25:40 GMT Docker-Experimental: - "false" Ostype: @@ -157,7 +191,7 @@ interactions: Pragma: - no-cache Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) Swarm: - inactive status: 200 OK @@ -165,675 +199,355 @@ interactions: duration: "" - request: body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"status\":\"Pulling - from library/nginx\",\"id\":\"alpine\"}\r\n{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":16988973},\"progress\":\"[======\\u003e - \ ] 2.097MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Digest: - sha256:42a516af16b852e33b7682d5ef8acbd5d13fe08fecadc7ed98605ba5e3b26ab8\"}\r\n{\"status\":\"Status: - Downloaded newer image for nginx:alpine\"}\r\n{\"stream\":\" ---\\u003e 42a516af16b8\\n\"}\r\n{\"stream\":\"Step + from library/nginx\",\"id\":\"alpine\"}\r\n{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19166,\"total\":1856020},\"progress\":\"[\\u003e + \ ] 19.17kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39701,\"total\":3859315},\"progress\":\"[\\u003e + \ ] 39.7kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] + \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1839104,\"total\":1856020},\"progress\":\"[=================================================\\u003e + ] 1.839MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1265344,\"total\":3859315},\"progress\":\"[================\\u003e + \ ] 1.265MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3083968,\"total\":3859315},\"progress\":\"[=======================================\\u003e + \ ] 3.084MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3859315},\"progress\":\"[\\u003e + \ ] 65.54kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":3859315},\"progress\":\"[==================\\u003e + \ ] 1.442MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] + \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":3859315},\"progress\":\"[=============================================\\u003e + \ ] 3.473MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] + \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] + \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":1856020},\"progress\":\"[\\u003e + \ ] 32.77kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] + \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":1856020},\"progress\":\"[===============================================\\u003e + \ ] 1.769MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] + \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] + \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1208},\"progress\":\"[=======================================\\u003e + \ ] 953B/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] + \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] + \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] + \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] + \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] + \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] + \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] + \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] + \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] + \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1397},\"progress\":\"[==================================\\u003e + \ ] 953B/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] + \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] + \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] + \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172963,\"total\":17261649},\"progress\":\"[\\u003e + \ ] 173kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3047424,\"total\":17261649},\"progress\":\"[========\\u003e + \ ] 3.047MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6832128,\"total\":17261649},\"progress\":\"[===================\\u003e + \ ] 6.832MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10436608,\"total\":17261649},\"progress\":\"[==============================\\u003e + \ ] 10.44MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13672448,\"total\":17261649},\"progress\":\"[=======================================\\u003e + \ ] 13.67MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":17261649},\"progress\":\"[\\u003e + \ ] 196.6kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":17261649},\"progress\":\"[======\\u003e + \ ] 2.163MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":17261649},\"progress\":\"[==========\\u003e + \ ] 3.736MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5898240,\"total\":17261649},\"progress\":\"[=================\\u003e + \ ] 5.898MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":17261649},\"progress\":\"[======================\\u003e + \ ] 7.864MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":17261649},\"progress\":\"[============================\\u003e + \ ] 9.83MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":17261649},\"progress\":\"[==================================\\u003e + \ ] 11.8MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13565952,\"total\":17261649},\"progress\":\"[=======================================\\u003e + \ ] 13.57MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15532032,\"total\":17261649},\"progress\":\"[============================================\\u003e + \ ] 15.53MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17104896,\"total\":17261649},\"progress\":\"[=================================================\\u003e + ] 17.1MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17261649,\"total\":17261649},\"progress\":\"[==================================================\\u003e] + \ 17.26MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Digest: + sha256:052b75ab72f690f33debaa51c7e08d9b969a0447a133eb2b99cc905d9188cb2b\"}\r\n{\"status\":\"Status: + Downloaded newer image for nginx:alpine\"}\r\n{\"stream\":\" ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 7444490241be\\n\"}\r\n{\"stream\":\"fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/aarch64/APKINDEX.tar.gz\\n\"}\r\n{\"stream\":\"fetch - https://dl-cdn.alpinelinux.org/alpine/v3.22/community/aarch64/APKINDEX.tar.gz\\n\"}\r\n{\"stream\":\"(1/4) - Installing readline (8.2.13-r1)\\n\"}\r\n{\"stream\":\"(2/4) Installing bash - (5.2.37-r0)\\n\"}\r\n{\"stream\":\"Executing bash-5.2.37-r0.post-install\\n\"}\r\n{\"stream\":\"(3/4) - Installing git (2.49.1-r0)\\n\"}\r\n{\"stream\":\"(4/4) Installing git-init-template - (2.49.1-r0)\\n\"}\r\n{\"stream\":\"Executing busybox-1.37.0-r18.trigger\\n\"}\r\n{\"stream\":\"OK: - 60 MiB in 74 packages\\n\"}\r\n{\"stream\":\" ---\\u003e 11667ca862c7\\n\"}\r\n{\"stream\":\"Step - 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e 8ef66367ffd4\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 343f85c1a87d\\n\"}\r\n{\"stream\":\" ---\\u003e 85d49ddb70ab\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd\"}}\r\n{\"stream\":\"Successfully - built 85d49ddb70ab\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" + ---\\u003e Running in 6969a3e0493c\\n\"}\r\n{\"stream\":\"(1/4) Installing readline + (8.3.1-r0)\\n\"}\r\n{\"stream\":\"(2/4) Installing bash (5.3.3-r1)\\n\"}\r\n{\"stream\":\" + \ Executing bash-5.3.3-r1.post-install\\n\"}\r\n{\"stream\":\"(3/4) Installing + git (2.52.0-r0)\\n\"}\r\n{\"stream\":\"(4/4) Installing git-init-template (2.52.0-r0)\\n\"}\r\n{\"stream\":\"Executing + busybox-1.37.0-r29.trigger\\n\"}\r\n{\"stream\":\"OK: 58 MiB in 75 packages\\n\"}\r\n{\"stream\":\" + ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/4 : COPY ./index.html + /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Running in c14419dc0364\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully + built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" form: {} headers: Content-Type: - application/x-tar X-Registry-Config: - bnVsbA== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwclitctnrdeploysy040pszu%2Fcli-t-ctnr-deploy-s%3Alatest + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwclitctnrdeploysnwevqmkl%2Fcli-t-ctnr-deploy-s%3Alatest method: POST response: body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"status\":\"Pulling - from library/nginx\",\"id\":\"alpine\"}\r\n{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2097152,\"total\":16988973},\"progress\":\"[======\\u003e - \ ] 2.097MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1,\"units\":\"s\"},\"progress\":\"1 - s\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{\"hidecounts\":true},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Digest: - sha256:42a516af16b852e33b7682d5ef8acbd5d13fe08fecadc7ed98605ba5e3b26ab8\"}\r\n{\"status\":\"Status: - Downloaded newer image for nginx:alpine\"}\r\n{\"stream\":\" ---\\u003e 42a516af16b8\\n\"}\r\n{\"stream\":\"Step + from library/nginx\",\"id\":\"alpine\"}\r\n{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19166,\"total\":1856020},\"progress\":\"[\\u003e + \ ] 19.17kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39701,\"total\":3859315},\"progress\":\"[\\u003e + \ ] 39.7kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] + \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1839104,\"total\":1856020},\"progress\":\"[=================================================\\u003e + ] 1.839MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1265344,\"total\":3859315},\"progress\":\"[================\\u003e + \ ] 1.265MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3083968,\"total\":3859315},\"progress\":\"[=======================================\\u003e + \ ] 3.084MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3859315},\"progress\":\"[\\u003e + \ ] 65.54kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":3859315},\"progress\":\"[==================\\u003e + \ ] 1.442MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] + \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":3859315},\"progress\":\"[=============================================\\u003e + \ ] 3.473MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] + \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] + \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":1856020},\"progress\":\"[\\u003e + \ ] 32.77kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] + \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":1856020},\"progress\":\"[===============================================\\u003e + \ ] 1.769MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] + \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] + \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1208},\"progress\":\"[=======================================\\u003e + \ ] 953B/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] + \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] + \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] + \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] + \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] + \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] + \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] + \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] + \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] + \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1397},\"progress\":\"[==================================\\u003e + \ ] 953B/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] + \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] + \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] + \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172963,\"total\":17261649},\"progress\":\"[\\u003e + \ ] 173kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3047424,\"total\":17261649},\"progress\":\"[========\\u003e + \ ] 3.047MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6832128,\"total\":17261649},\"progress\":\"[===================\\u003e + \ ] 6.832MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10436608,\"total\":17261649},\"progress\":\"[==============================\\u003e + \ ] 10.44MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13672448,\"total\":17261649},\"progress\":\"[=======================================\\u003e + \ ] 13.67MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":17261649},\"progress\":\"[\\u003e + \ ] 196.6kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":17261649},\"progress\":\"[======\\u003e + \ ] 2.163MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":17261649},\"progress\":\"[==========\\u003e + \ ] 3.736MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5898240,\"total\":17261649},\"progress\":\"[=================\\u003e + \ ] 5.898MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":17261649},\"progress\":\"[======================\\u003e + \ ] 7.864MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":17261649},\"progress\":\"[============================\\u003e + \ ] 9.83MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":17261649},\"progress\":\"[==================================\\u003e + \ ] 11.8MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13565952,\"total\":17261649},\"progress\":\"[=======================================\\u003e + \ ] 13.57MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15532032,\"total\":17261649},\"progress\":\"[============================================\\u003e + \ ] 15.53MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17104896,\"total\":17261649},\"progress\":\"[=================================================\\u003e + ] 17.1MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17261649,\"total\":17261649},\"progress\":\"[==================================================\\u003e] + \ 17.26MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Digest: + sha256:052b75ab72f690f33debaa51c7e08d9b969a0447a133eb2b99cc905d9188cb2b\"}\r\n{\"status\":\"Status: + Downloaded newer image for nginx:alpine\"}\r\n{\"stream\":\" ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 7444490241be\\n\"}\r\n{\"stream\":\"fetch https://dl-cdn.alpinelinux.org/alpine/v3.22/main/aarch64/APKINDEX.tar.gz\\n\"}\r\n{\"stream\":\"fetch - https://dl-cdn.alpinelinux.org/alpine/v3.22/community/aarch64/APKINDEX.tar.gz\\n\"}\r\n{\"stream\":\"(1/4) - Installing readline (8.2.13-r1)\\n\"}\r\n{\"stream\":\"(2/4) Installing bash - (5.2.37-r0)\\n\"}\r\n{\"stream\":\"Executing bash-5.2.37-r0.post-install\\n\"}\r\n{\"stream\":\"(3/4) - Installing git (2.49.1-r0)\\n\"}\r\n{\"stream\":\"(4/4) Installing git-init-template - (2.49.1-r0)\\n\"}\r\n{\"stream\":\"Executing busybox-1.37.0-r18.trigger\\n\"}\r\n{\"stream\":\"OK: - 60 MiB in 74 packages\\n\"}\r\n{\"stream\":\" ---\\u003e 11667ca862c7\\n\"}\r\n{\"stream\":\"Step - 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e 8ef66367ffd4\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 343f85c1a87d\\n\"}\r\n{\"stream\":\" ---\\u003e 85d49ddb70ab\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd\"}}\r\n{\"stream\":\"Successfully - built 85d49ddb70ab\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" + ---\\u003e Running in 6969a3e0493c\\n\"}\r\n{\"stream\":\"(1/4) Installing readline + (8.3.1-r0)\\n\"}\r\n{\"stream\":\"(2/4) Installing bash (5.3.3-r1)\\n\"}\r\n{\"stream\":\" + \ Executing bash-5.3.3-r1.post-install\\n\"}\r\n{\"stream\":\"(3/4) Installing + git (2.52.0-r0)\\n\"}\r\n{\"stream\":\"(4/4) Installing git-init-template (2.52.0-r0)\\n\"}\r\n{\"stream\":\"Executing + busybox-1.37.0-r29.trigger\\n\"}\r\n{\"stream\":\"OK: 58 MiB in 75 packages\\n\"}\r\n{\"stream\":\" + ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/4 : COPY ./index.html + /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Running in c14419dc0364\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully + built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:18:51 GMT + - Mon, 15 Dec 2025 13:25:40 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4194304,\"total\":16988973},\"progress\":\"[============\\u003e - \ ] 4.194MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"latest: - digest: sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd - size: 2479\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e + \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] + \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e + \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e + \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e + \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4641792,\"total\":41047172},\"progress\":\"[=====\\u003e + \ ] 4.642MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5908480,\"total\":41047172},\"progress\":\"[=======\\u003e + \ ] 5.908MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7612416,\"total\":41047172},\"progress\":\"[=========\\u003e + \ ] 7.612MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10168320,\"total\":41047172},\"progress\":\"[============\\u003e + \ ] 10.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11872256,\"total\":41047172},\"progress\":\"[==============\\u003e + \ ] 11.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13150208,\"total\":41047172},\"progress\":\"[================\\u003e + \ ] 13.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e + \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14445056,\"total\":41047172},\"progress\":\"[=================\\u003e + \ ] 14.45MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1289728,\"total\":8669818},\"progress\":\"[=======\\u003e + \ ] 1.29MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16176128,\"total\":41047172},\"progress\":\"[===================\\u003e + \ ] 16.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2469376,\"total\":8669818},\"progress\":\"[==============\\u003e + \ ] 2.469MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3845632,\"total\":8669818},\"progress\":\"[======================\\u003e + \ ] 3.846MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17865728,\"total\":41047172},\"progress\":\"[=====================\\u003e + \ ] 17.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e + \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] + \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5390848,\"total\":8669818},\"progress\":\"[===============================\\u003e + \ ] 5.391MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19154944,\"total\":41047172},\"progress\":\"[=======================\\u003e + \ ] 19.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6769664,\"total\":8669818},\"progress\":\"[=======================================\\u003e + \ ] 6.77MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20427264,\"total\":41047172},\"progress\":\"[========================\\u003e + \ ] 20.43MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8179712,\"total\":8669818},\"progress\":\"[===============================================\\u003e + \ ] 8.18MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21677568,\"total\":41047172},\"progress\":\"[==========================\\u003e + \ ] 21.68MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] + \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22969856,\"total\":41047172},\"progress\":\"[===========================\\u003e + \ ] 22.97MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24673792,\"total\":41047172},\"progress\":\"[==============================\\u003e + \ ] 24.67MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26372096,\"total\":41047172},\"progress\":\"[================================\\u003e + \ ] 26.37MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27639808,\"total\":41047172},\"progress\":\"[=================================\\u003e + \ ] 27.64MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29329408,\"total\":41047172},\"progress\":\"[===================================\\u003e + \ ] 29.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30609920,\"total\":41047172},\"progress\":\"[=====================================\\u003e + \ ] 30.61MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32332800,\"total\":41047172},\"progress\":\"[=======================================\\u003e + \ ] 32.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34044928,\"total\":41047172},\"progress\":\"[=========================================\\u003e + \ ] 34.04MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e + \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] + \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e + \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] + \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e + \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37439488,\"total\":41047172},\"progress\":\"[=============================================\\u003e + \ ] 37.44MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39153664,\"total\":41047172},\"progress\":\"[===============================================\\u003e + \ ] 39.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41285556,\"total\":41047172},\"progress\":\"[==================================================\\u003e] + \ 41.29MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] + \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e + \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1336832,\"total\":4245763},\"progress\":\"[===============\\u003e + \ ] 1.337MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2513920,\"total\":4245763},\"progress\":\"[=============================\\u003e + \ ] 2.514MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3759104,\"total\":4245763},\"progress\":\"[============================================\\u003e + \ ] 3.759MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e + \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] + \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1087488,\"total\":8442034},\"progress\":\"[======\\u003e + \ ] 1.087MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2508800,\"total\":8442034},\"progress\":\"[==============\\u003e + \ ] 2.509MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3802624,\"total\":8442034},\"progress\":\"[======================\\u003e + \ ] 3.803MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5670400,\"total\":8442034},\"progress\":\"[=================================\\u003e + \ ] 5.67MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7538176,\"total\":8442034},\"progress\":\"[============================================\\u003e + \ ] 7.538MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] + \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: + digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" form: {} headers: Content-Type: - application/json X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzM2M0NaNVNSTjVZSFFCR1hZIiwicGFzc3dvcmQiOiJhNDIxMTZiNC02MjZiLTQyZWUtYjQ1Yi0wOTVhNDUyMmQ1MjYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3lzeTA0MHBzenUifQ== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s/push?tag=latest + - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3lzbndldnFta2wifQ== + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s/push?tag=latest method: POST response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":4130750},\"progress\":\"[======================================\\u003e - \ ] 3.146MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3145728,\"total\":16988973},\"progress\":\"[=========\\u003e - \ ] 3.146MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4194304,\"total\":16988973},\"progress\":\"[============\\u003e - \ ] 4.194MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":627,\"total\":627},\"progress\":\"[==================================================\\u003e] - \ 627B/627B\",\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"04ba7957f9d2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1396,\"total\":1396},\"progress\":\"[==================================================\\u003e] - \ 1.396kB/1.396kB\",\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"66ce170f7dd8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1207,\"total\":1207},\"progress\":\"[==================================================\\u003e] - \ 1.207kB/1.207kB\",\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c2c01fdb094\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"0bc2f07fbf03\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":953,\"total\":953},\"progress\":\"[==================================================\\u003e] - \ 953B/953B\",\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6156ecb6dfff\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6291456,\"total\":16988973},\"progress\":\"[==================\\u003e - \ ] 6.291MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":298,\"total\":298},\"progress\":\"[==================================================\\u003e] - \ 298B/298B\",\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"24e19c209694\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7340032,\"total\":16988973},\"progress\":\"[=====================\\u003e - \ ] 7.34MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1800509,\"total\":1800509},\"progress\":\"[==================================================\\u003e] - \ 1.801MB/1.801MB\",\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"49f3b06c840f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9437184,\"total\":16988973},\"progress\":\"[===========================\\u003e - \ ] 9.437MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10485760,\"total\":16988973},\"progress\":\"[==============================\\u003e - \ ] 10.49MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12582912,\"total\":16988973},\"progress\":\"[=====================================\\u003e - \ ] 12.58MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4310785,\"total\":4310785},\"progress\":\"[==================================================\\u003e] - \ 4.311MB/4.311MB\",\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"556d70b7bec9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4130750,\"total\":4130750},\"progress\":\"[==================================================\\u003e] - \ 4.131MB/4.131MB\",\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6e174226ea69\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13631488,\"total\":16988973},\"progress\":\"[========================================\\u003e - \ ] 13.63MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14680064,\"total\":16988973},\"progress\":\"[===========================================\\u003e - \ ] 14.68MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16988973,\"total\":16988973},\"progress\":\"[==================================================\\u003e] - \ 16.99MB/16.99MB\",\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"021cb5923c0e\"}\r\n{\"status\":\"latest: - digest: sha256:85d49ddb70abe9c6fd0263f32159cae1956017601b2872b2143751370b3a5dbd - size: 2479\"}\r\n" + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e + \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] + \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] + \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e + \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e + \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e + \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4641792,\"total\":41047172},\"progress\":\"[=====\\u003e + \ ] 4.642MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5908480,\"total\":41047172},\"progress\":\"[=======\\u003e + \ ] 5.908MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7612416,\"total\":41047172},\"progress\":\"[=========\\u003e + \ ] 7.612MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10168320,\"total\":41047172},\"progress\":\"[============\\u003e + \ ] 10.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11872256,\"total\":41047172},\"progress\":\"[==============\\u003e + \ ] 11.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13150208,\"total\":41047172},\"progress\":\"[================\\u003e + \ ] 13.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e + \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14445056,\"total\":41047172},\"progress\":\"[=================\\u003e + \ ] 14.45MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1289728,\"total\":8669818},\"progress\":\"[=======\\u003e + \ ] 1.29MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16176128,\"total\":41047172},\"progress\":\"[===================\\u003e + \ ] 16.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2469376,\"total\":8669818},\"progress\":\"[==============\\u003e + \ ] 2.469MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3845632,\"total\":8669818},\"progress\":\"[======================\\u003e + \ ] 3.846MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17865728,\"total\":41047172},\"progress\":\"[=====================\\u003e + \ ] 17.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e + \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] + \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5390848,\"total\":8669818},\"progress\":\"[===============================\\u003e + \ ] 5.391MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19154944,\"total\":41047172},\"progress\":\"[=======================\\u003e + \ ] 19.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6769664,\"total\":8669818},\"progress\":\"[=======================================\\u003e + \ ] 6.77MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20427264,\"total\":41047172},\"progress\":\"[========================\\u003e + \ ] 20.43MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8179712,\"total\":8669818},\"progress\":\"[===============================================\\u003e + \ ] 8.18MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21677568,\"total\":41047172},\"progress\":\"[==========================\\u003e + \ ] 21.68MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] + \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22969856,\"total\":41047172},\"progress\":\"[===========================\\u003e + \ ] 22.97MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] + \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24673792,\"total\":41047172},\"progress\":\"[==============================\\u003e + \ ] 24.67MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26372096,\"total\":41047172},\"progress\":\"[================================\\u003e + \ ] 26.37MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27639808,\"total\":41047172},\"progress\":\"[=================================\\u003e + \ ] 27.64MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29329408,\"total\":41047172},\"progress\":\"[===================================\\u003e + \ ] 29.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30609920,\"total\":41047172},\"progress\":\"[=====================================\\u003e + \ ] 30.61MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32332800,\"total\":41047172},\"progress\":\"[=======================================\\u003e + \ ] 32.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34044928,\"total\":41047172},\"progress\":\"[=========================================\\u003e + \ ] 34.04MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e + \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] + \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e + \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] + \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e + \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37439488,\"total\":41047172},\"progress\":\"[=============================================\\u003e + \ ] 37.44MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39153664,\"total\":41047172},\"progress\":\"[===============================================\\u003e + \ ] 39.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41285556,\"total\":41047172},\"progress\":\"[==================================================\\u003e] + \ 41.29MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] + \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e + \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1336832,\"total\":4245763},\"progress\":\"[===============\\u003e + \ ] 1.337MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2513920,\"total\":4245763},\"progress\":\"[=============================\\u003e + \ ] 2.514MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3759104,\"total\":4245763},\"progress\":\"[============================================\\u003e + \ ] 3.759MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e + \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] + \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1087488,\"total\":8442034},\"progress\":\"[======\\u003e + \ ] 1.087MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2508800,\"total\":8442034},\"progress\":\"[==============\\u003e + \ ] 2.509MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3802624,\"total\":8442034},\"progress\":\"[======================\\u003e + \ ] 3.803MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5670400,\"total\":8442034},\"progress\":\"[=================================\\u003e + \ ] 5.67MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7538176,\"total\":8442034},\"progress\":\"[============================================\\u003e + \ ] 7.538MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] + \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: + digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" headers: Api-Version: - "1.51" Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:18:57 GMT + - Mon, 15 Dec 2025 13:25:46 GMT Docker-Experimental: - "false" Ostype: - linux Server: - - Docker/28.3.3 (linux) + - Docker/28.5.1 (linux) status: 200 OK code: 200 duration: "" - request: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-s&namespace_id=eab9ca37-264f-4670-b825-fae21c231842&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-s&namespace_id=6136f95c-71c8-49b1-a186-142a1d4b8eb6&order_by=created_at_asc&page=1 method: GET response: - body: '{"containers":[],"total_count":0}' + body: '{"containers":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:37 GMT + - Mon, 15 Dec 2025 13:25:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -841,33 +555,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbdcba51-c871-4284-9301-d6888b7c4675 + - 6cd9a7b5-fc4a-4749-ad2f-a00ddb5bacb5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555467664Z","updated_at":"2025-09-08T12:19:37.555467664Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104310581Z", "updated_at":"2025-12-15T13:25:58.104310581Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":8080,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555467664Z","updated_at":"2025-09-08T12:19:37.555467664Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104310581Z", "updated_at":"2025-12-15T13:25:58.104310581Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "958" + - "991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:37 GMT + - Mon, 15 Dec 2025 13:25:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -875,33 +607,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8165c3c-643f-4170-a393-0d996d72d3de + - 2c6e23db-0d6a-4840-b7e2-4d9e96000204 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.769987887Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746324Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/1d2fc160-8fb9-468b-97af-08036c018b02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a method: PATCH response: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.769987887Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746324Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "953" + - "986" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:37 GMT + - Mon, 15 Dec 2025 13:25:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -909,31 +659,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e92f6db-7e3f-4625-ae52-706930a7f57a + - 28a132eb-3b2b-446f-a296-7c1c67438468 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.769988Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/1d2fc160-8fb9-468b-97af-08036c018b02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a method: GET response: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"created","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.769988Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "950" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:37 GMT + - Mon, 15 Dec 2025 13:25:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,65 +709,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7db88c6-4920-4176-bd18-de4d6c8824fe + - bcd7cf60-48a9-4565-a5cb-439bd458404f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.880877589Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405420Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/1d2fc160-8fb9-468b-97af-08036c018b02/deploy + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a/deploy method: POST response: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.880877589Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - headers: - Content-Length: - - "953" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:19:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc3726e0-ecf8-44c9-8d46-b394cf5defe5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.880878Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/1d2fc160-8fb9-468b-97af-08036c018b02 - method: GET - response: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"pending","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":null,"privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:37.880878Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405420Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "950" + - "986" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:37 GMT + - Mon, 15 Dec 2025 13:25:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1007,39 +761,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b33a7691-6596-4b93-8370-9ddb06c46cae + - 715d221c-9c44-4262-9b93-c1ae39f3c1c3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Invalid - Image architecture. Serverless Containers only support the amd64 architecture, - but the image was built for the following architectures: arm64. Please rebuild - the image for the correct architecture using the `--platform=linux/amd64` Docker - build argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:38.541564Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/1d2fc160-8fb9-468b-97af-08036c018b02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a method: GET response: - body: '{"id":"1d2fc160-8fb9-468b-97af-08036c018b02","name":"cli-t-ctnr-deploy-s","namespace_id":"eab9ca37-264f-4670-b825-fae21c231842","status":"error","environment_variables":{},"min_scale":0,"max_scale":5,"memory_limit":2048,"cpu_limit":1000,"timeout":"300s","error_message":"Invalid - Image architecture. Serverless Containers only support the amd64 architecture, - but the image was built for the following architectures: arm64. Please rebuild - the image for the correct architecture using the `--platform=linux/amd64` Docker - build argument.","privacy":"public","description":"","registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu/cli-t-ctnr-deploy-s:latest","max_concurrency":50,"domain_name":"clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud","protocol":"http1","port":80,"secret_environment_variables":[],"http_option":"enabled","sandbox":"v2","local_storage_limit":1000,"scaling_option":{"concurrent_requests_threshold":50},"created_at":"2025-09-08T12:19:37.555468Z","updated_at":"2025-09-08T12:19:38.541564Z","ready_at":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"tags":[],"private_network_id":null,"command":[],"args":[],"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "1208" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:43 GMT + - Mon, 15 Dec 2025 13:25:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1047,63 +811,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53838f33-a453-408c-9636-49d762664d44 + - de997694-14a9-4d7d-a8aa-f4b91415233b status: 200 OK code: 200 duration: "" - request: - body: '{"namespaces":[{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:18:48.993250Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a method: GET response: - body: '{"namespaces":[{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"ready","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:18:48.993250Z","vpc_integration_activated":false,"region":"fr-par"}],"total_count":1}' - headers: - Content-Length: - - "616" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 12:19:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a3baacf3-1037-4f96-aa49-4be8b9f4df1a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096984527Z","vpc_integration_activated":false,"region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 - method: DELETE - response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096984527Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "589" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:43 GMT + - Mon, 15 Dec 2025 13:26:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1111,31 +861,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cf66a81-1979-4aa0-a17e-9ba456face96 + - df0bad7f-7963-4063-a9e1-558e82ad203e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", + "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, + "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' headers: Content-Length: - - "586" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:43 GMT + - Mon, 15 Dec 2025 13:26:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1143,31 +911,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86c91908-3897-4a8f-b949-7b5dd8fc0ca7 + - 9e23e027-9e7b-49cf-a2d4-bea3f6a13400 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"ready", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:26:39.975283Z", + "ready_at":"2025-12-15T13:26:39.960972Z", "health_check":{"failure_threshold":30, + "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], + "args":[], "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"ready", "environment_variables":{}, + "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", + "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", + "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", + "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, + "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:26:39.975283Z", + "ready_at":"2025-12-15T13:26:39.960972Z", "health_check":{"failure_threshold":30, + "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], + "args":[], "region":"fr-par"}' headers: Content-Length: - - "586" + - "1006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:48 GMT + - Mon, 15 Dec 2025 13:26:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,31 +963,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92bb6080-a919-4cbe-86e7-65054dddcd2a + - f542c997-f6cb-410d-8766-4ef2694438d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"namespaces":[{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"namespaces":[{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' headers: Content-Length: - - "586" + - "632" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:53 GMT + - Mon, 15 Dec 2025 13:26:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1207,31 +1007,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f588d92a-dedd-4d44-938d-38d204edd128 + - e3be03ee-0638-4ce8-afdb-9c0028d64da7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:26:43.867159914Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 + method: DELETE response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:26:43.867159914Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "586" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:19:58 GMT + - Mon, 15 Dec 2025 13:26:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1239,31 +1051,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2582870-032b-48a4-bf11-abdf3d1f5981 + - 7711d2f0-d815-4feb-812d-152fb1ce4416 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "586" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:03 GMT + - Mon, 15 Dec 2025 13:26:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1271,31 +1095,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63929d69-1412-44d5-b64f-f1d2969fa454 + - 8ef40c3b-64bd-4457-afc5-337c6ce816a7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 method: GET response: - body: '{"id":"eab9ca37-264f-4670-b825-fae21c231842","name":"cli-t-ctnr-deploy-s","environment_variables":{},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","status":"deleting","registry_namespace_id":"a116b7e0-dd38-4bba-a6db-19c10ce5000f","error_message":null,"registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysy040pszu","description":"","secret_environment_variables":[],"tags":[],"created_at":"2025-09-08T12:18:46.640706Z","updated_at":"2025-09-08T12:19:43.096985Z","vpc_integration_activated":false,"region":"fr-par"}' + body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", + "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "586" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:08 GMT + - Mon, 15 Dec 2025 13:26:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1303,7 +1139,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8ce7ba8-bd0e-4b3c-b81f-f6dded8b3676 + - 9596a922-4a65-43ea-a92e-0903958c83d2 status: 200 OK code: 200 duration: "" @@ -1312,8 +1148,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eab9ca37-264f-4670-b825-fae21c231842 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 method: GET response: body: '{"message":"Namespace was not found"}' @@ -1325,9 +1161,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:13 GMT + - Mon, 15 Dec 2025 13:27:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1335,31 +1171,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db3da9b8-ba29-4994-bc4b-d1c838cc36b4 + - b3deced2-034f-4a45-9250-680bb9f0c845 status: 404 Not Found code: 404 duration: "" - request: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[],"total_count":0}' + body: '{"namespaces":[], "total_count":0}' headers: Content-Length: - - "33" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 12:20:13 GMT + - Mon, 15 Dec 2025 13:27:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1367,7 +1203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1ce1582-7dc2-43ab-acb6-101d0613d251 + - 9b61c510-b7d4-42f6-9a1d-04059b9a038f status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden index f31b924608..6933e00f7d 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden +++ b/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud +Your application is now available at https://clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://clitctnrdeploysy040pszu-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud\n" +"Your application is now available at https://clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/datalab/v1beta1/custom.go b/internal/namespaces/datalab/v1beta1/custom.go new file mode 100644 index 0000000000..9c29dec541 --- /dev/null +++ b/internal/namespaces/datalab/v1beta1/custom.go @@ -0,0 +1,11 @@ +package datalab + +import ( + "github.com/scaleway/scaleway-cli/v2/core" +) + +func GetCommands() *core.Commands { + cmds := GetGeneratedCommands() + + return cmds +} diff --git a/internal/namespaces/datalab/v1beta1/datalab_cli.go b/internal/namespaces/datalab/v1beta1/datalab_cli.go new file mode 100644 index 0000000000..823925d40a --- /dev/null +++ b/internal/namespaces/datalab/v1beta1/datalab_cli.go @@ -0,0 +1,546 @@ +// This file was automatically generated. DO NOT EDIT. +// If you have any remark or suggestion do not hesitate to open an issue. + +package datalab + +import ( + "context" + "reflect" + + "github.com/scaleway/scaleway-cli/v2/core" + datalab "github.com/scaleway/scaleway-sdk-go/api/datalab/v1beta1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +// always import dependencies +var ( + _ = scw.RegionFrPar +) + +func GetGeneratedCommands() *core.Commands { + return core.NewCommands( + datalabRoot(), + datalabDatalab(), + datalabNodeType(), + datalabNotebookVersion(), + datalabClusterVersion(), + datalabDatalabCreate(), + datalabDatalabGet(), + datalabDatalabList(), + datalabDatalabUpdate(), + datalabDatalabDelete(), + datalabNodeTypeList(), + datalabNotebookVersionList(), + datalabClusterVersionList(), + ) +} + +func datalabRoot() *core.Command { + return &core.Command{ + Short: `Data Lab API for Apache Spark™`, + Long: `Data Lab API.`, + Namespace: "datalab", + } +} + +func datalabDatalab() *core.Command { + return &core.Command{ + Short: ``, + Long: `Manage your Data Labs.`, + Namespace: "datalab", + Resource: "datalab", + } +} + +func datalabNodeType() *core.Command { + return &core.Command{ + Short: ``, + Long: `List available node types.`, + Namespace: "datalab", + Resource: "node-type", + } +} + +func datalabNotebookVersion() *core.Command { + return &core.Command{ + Short: ``, + Long: `List available notebook versions.`, + Namespace: "datalab", + Resource: "notebook-version", + } +} + +func datalabClusterVersion() *core.Command { + return &core.Command{ + Short: ``, + Long: `Lists the Spark versions available for Data Lab creation.`, + Namespace: "datalab", + Resource: "cluster-version", + } +} + +func datalabDatalabCreate() *core.Command { + return &core.Command{ + Short: `Create datalab resources`, + Long: `Create datalab resources.`, + Namespace: "datalab", + Resource: "datalab", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.CreateDatalabRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `The name of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "description", + Short: `The description of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `The tags of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "main.node-type", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "worker.node-type", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "worker.node-count", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "has-notebook", + Short: `Select this option to include a notebook as part of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "spark-version", + Short: `The version of Spark running inside the Data Lab, available options can be viewed at ListClusterVersions.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "total-storage.type", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_type", + "sbs_5k", + }, + }, + { + Name: "total-storage.size", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "private-network-id", + Short: `The unique identifier of the private network the Data Lab will be attached to.`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.CreateDatalabRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + + return api.CreateDatalab(request) + }, + } +} + +func datalabDatalabGet() *core.Command { + return &core.Command{ + Short: `Get datalab resources`, + Long: `Get datalab resources.`, + Namespace: "datalab", + Resource: "datalab", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.GetDatalabRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "datalab-id", + Short: `The unique identifier of the Data Lab`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.GetDatalabRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + + return api.GetDatalab(request) + }, + } +} + +func datalabDatalabList() *core.Command { + return &core.Command{ + Short: `List datalab resources`, + Long: `List datalab resources.`, + Namespace: "datalab", + Resource: "datalab", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.ListDatalabsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "project-id", + Short: `The unique identifier of the project whose Data Labs you want to list.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `The name of the Data Lab you want to list.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `The tags associated with the Data Lab you want to list.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "order-by", + Short: `The order by field, available options are ` + "`" + `name_asc` + "`" + `, ` + "`" + `name_desc` + "`" + `, ` + "`" + `created_at_asc` + "`" + `, ` + "`" + `created_at_desc` + "`" + `, ` + "`" + `updated_at_asc` + "`" + `, ` + "`" + `updated_at_desc` + "`" + `.`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + "created_at_asc", + "created_at_desc", + "updated_at_asc", + "updated_at_desc", + }, + }, + { + Name: "organization-id", + Short: `The unique identifier of the organization whose Data Labs you want to list.`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.ListDatalabsRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListDatalabs(request, opts...) + if err != nil { + return nil, err + } + + return resp.Datalabs, nil + }, + } +} + +func datalabDatalabUpdate() *core.Command { + return &core.Command{ + Short: `Update datalab resources`, + Long: `Update datalab resources.`, + Namespace: "datalab", + Resource: "datalab", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.UpdateDatalabRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "datalab-id", + Short: `The unique identifier of the Data Lab.`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `The updated name of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "description", + Short: `The updated description of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `The updated tags of the Data Lab.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "node-count", + Short: `The updated node count of the Data Lab. Scale up or down the number of worker nodes.`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.UpdateDatalabRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + + return api.UpdateDatalab(request) + }, + } +} + +func datalabDatalabDelete() *core.Command { + return &core.Command{ + Short: `Delete datalab resources`, + Long: `Delete datalab resources.`, + Namespace: "datalab", + Resource: "datalab", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.DeleteDatalabRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "datalab-id", + Short: `The unique identifier of the Data Lab.`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.DeleteDatalabRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + + return api.DeleteDatalab(request) + }, + } +} + +func datalabNodeTypeList() *core.Command { + return &core.Command{ + Short: `List datalab resources`, + Long: `List datalab resources.`, + Namespace: "datalab", + Resource: "node-type", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.ListNodeTypesRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `The order by field. Available fields are ` + "`" + `name_asc` + "`" + `, ` + "`" + `name_desc` + "`" + `, ` + "`" + `vcpus_asc` + "`" + `, ` + "`" + `vcpus_desc` + "`" + `, ` + "`" + `memory_gigabytes_asc` + "`" + `, ` + "`" + `memory_gigabytes_desc` + "`" + `, ` + "`" + `vram_bytes_asc` + "`" + `, ` + "`" + `vram_bytes_desc` + "`" + `, ` + "`" + `gpus_asc` + "`" + `, ` + "`" + `gpus_desc` + "`" + `.`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + "vcpus_asc", + "vcpus_desc", + "memory_gigabytes_asc", + "memory_gigabytes_desc", + "vram_bytes_asc", + "vram_bytes_desc", + "gpus_asc", + "gpus_desc", + }, + }, + { + Name: "targets.{index}", + Short: `Filter based on the target of the nodes. Allows to filter the nodes based on their purpose which can be main or worker node.`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_target", + "notebook", + "worker", + }, + }, + { + Name: "resource-type", + Short: `Filter based on node type ( ` + "`" + `cpu` + "`" + `/` + "`" + `gpu` + "`" + `/` + "`" + `all` + "`" + ` ).`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "all", + "gpu", + "cpu", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.ListNodeTypesRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListNodeTypes(request, opts...) + if err != nil { + return nil, err + } + + return resp.NodeTypes, nil + }, + } +} + +func datalabNotebookVersionList() *core.Command { + return &core.Command{ + Short: `List datalab resources`, + Long: `List datalab resources.`, + Namespace: "datalab", + Resource: "notebook-version", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.ListNotebookVersionsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `The order by field. Available options are ` + "`" + `name_asc` + "`" + ` and ` + "`" + `name_desc` + "`" + `.`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.ListNotebookVersionsRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListNotebookVersions(request, opts...) + if err != nil { + return nil, err + } + + return resp.Notebooks, nil + }, + } +} + +func datalabClusterVersionList() *core.Command { + return &core.Command{ + Short: `List datalab resources`, + Long: `List datalab resources.`, + Namespace: "datalab", + Resource: "cluster-version", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datalab.ListClusterVersionsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `The order by field.`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datalab.ListClusterVersionsRequest) + + client := core.ExtractClient(ctx) + api := datalab.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListClusterVersions(request, opts...) + if err != nil { + return nil, err + } + + return resp.Clusters, nil + }, + } +} diff --git a/internal/namespaces/datawarehouse/v1beta1/custom.go b/internal/namespaces/datawarehouse/v1beta1/custom.go new file mode 100644 index 0000000000..53c8aa876d --- /dev/null +++ b/internal/namespaces/datawarehouse/v1beta1/custom.go @@ -0,0 +1,13 @@ +package datawarehouse + +import ( + "github.com/scaleway/scaleway-cli/v2/core" +) + +func GetCommands() *core.Commands { + cmds := GetGeneratedCommands() + + cmds.MustFind("datawarehouse").Groups = []string{"database"} + + return cmds +} diff --git a/internal/namespaces/datawarehouse/v1beta1/datawarehouse_cli.go b/internal/namespaces/datawarehouse/v1beta1/datawarehouse_cli.go new file mode 100644 index 0000000000..13b0a68a93 --- /dev/null +++ b/internal/namespaces/datawarehouse/v1beta1/datawarehouse_cli.go @@ -0,0 +1,926 @@ +// This file was automatically generated. DO NOT EDIT. +// If you have any remark or suggestion do not hesitate to open an issue. + +package datawarehouse + +import ( + "context" + "reflect" + + "github.com/scaleway/scaleway-cli/v2/core" + datawarehouse "github.com/scaleway/scaleway-sdk-go/api/datawarehouse/v1beta1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +// always import dependencies +var ( + _ = scw.RegionFrPar +) + +func GetGeneratedCommands() *core.Commands { + return core.NewCommands( + datawarehouseRoot(), + datawarehouseDeployment(), + datawarehousePreset(), + datawarehouseVersion(), + datawarehouseUser(), + datawarehouseDatabase(), + datawarehouseEndpoint(), + datawarehousePresetList(), + datawarehouseVersionList(), + datawarehouseDeploymentList(), + datawarehouseDeploymentGet(), + datawarehouseDeploymentCreate(), + datawarehouseDeploymentUpdate(), + datawarehouseDeploymentDelete(), + datawarehouseDeploymentGetCertificate(), + datawarehouseUserList(), + datawarehouseUserCreate(), + datawarehouseUserUpdate(), + datawarehouseUserDelete(), + datawarehouseEndpointDelete(), + datawarehouseEndpointCreate(), + datawarehouseDatabaseList(), + datawarehouseDatabaseCreate(), + datawarehouseDatabaseDelete(), + ) +} + +func datawarehouseRoot() *core.Command { + return &core.Command{ + Short: `This API allows you to manage your Data Warehouse`, + Long: `Data Warehouse API.`, + Namespace: "datawarehouse", + } +} + +func datawarehouseDeployment() *core.Command { + return &core.Command{ + Short: `Deployment management commands`, + Long: `A deployment is composed of one or multiple replicas.`, + Namespace: "datawarehouse", + Resource: "deployment", + } +} + +func datawarehousePreset() *core.Command { + return &core.Command{ + Short: `List available presets`, + Long: `Data Warehouse preset to help you choose the best configuration.`, + Namespace: "datawarehouse", + Resource: "preset", + } +} + +func datawarehouseVersion() *core.Command { + return &core.Command{ + Short: `List available Clickhouse® versions`, + Long: `ClickHouse® versions powering your deployment.`, + Namespace: "datawarehouse", + Resource: "version", + } +} + +func datawarehouseUser() *core.Command { + return &core.Command{ + Short: `User management commands`, + Long: `Manage users associated with a deployment.`, + Namespace: "datawarehouse", + Resource: "user", + } +} + +func datawarehouseDatabase() *core.Command { + return &core.Command{ + Short: `Database management commands`, + Long: `Manage databases within a deployment.`, + Namespace: "datawarehouse", + Resource: "database", + } +} + +func datawarehouseEndpoint() *core.Command { + return &core.Command{ + Short: `Endpoint management commands`, + Long: `Manage endpoints associated with a deployment.`, + Namespace: "datawarehouse", + Resource: "endpoint", + } +} + +func datawarehousePresetList() *core.Command { + return &core.Command{ + Short: `List available presets`, + Long: `List available presets.`, + Namespace: "datawarehouse", + Resource: "preset", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.ListPresetsRequest{}), + ArgSpecs: core.ArgSpecs{ + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.ListPresetsRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListPresets(request, opts...) + if err != nil { + return nil, err + } + + return resp.Presets, nil + }, + } +} + +func datawarehouseVersionList() *core.Command { + return &core.Command{ + Short: `List available ClickHouse® versions`, + Long: `List available ClickHouse® versions.`, + Namespace: "datawarehouse", + Resource: "version", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.ListVersionsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "version", + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.ListVersionsRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListVersions(request, opts...) + if err != nil { + return nil, err + } + + return resp.Versions, nil + }, + } +} + +func datawarehouseDeploymentList() *core.Command { + return &core.Command{ + Short: `List deployments`, + Long: `List all deployments in the specified region, for a given Scaleway Project. By default, the deployments returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. You can define additional parameters for your query, such as ` + "`" + `tags` + "`" + ` and ` + "`" + `name` + "`" + `. For the ` + "`" + `name` + "`" + ` parameter, the value you provide will be checked against the whole name string to see if it includes the string you put in the parameter.`, + Namespace: "datawarehouse", + Resource: "deployment", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.ListDeploymentsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "tags.{index}", + Short: `List deployments with a given tag`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Lists deployments that match a name pattern`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "order-by", + Short: `Criteria to use when ordering deployment listings`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_desc", + "created_at_asc", + "name_asc", + "name_desc", + }, + }, + { + Name: "project-id", + Short: `Project ID the deployment belongs to`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "organization-id", + Short: `Organization ID the deployment belongs to`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.ListDeploymentsRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListDeployments(request, opts...) + if err != nil { + return nil, err + } + + return resp.Deployments, nil + }, + } +} + +func datawarehouseDeploymentGet() *core.Command { + return &core.Command{ + Short: `Get a deployment`, + Long: `Retrieve information about a given deployment, specified by the ` + "`" + `region` + "`" + ` and ` + "`" + `deployment_id` + "`" + ` parameters. Its full details, including name, status are returned in the response object.`, + Namespace: "datawarehouse", + Resource: "deployment", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.GetDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.GetDeploymentRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.GetDeployment(request) + }, + } +} + +func datawarehouseDeploymentCreate() *core.Command { + return &core.Command{ + Short: `Create a deployment`, + Long: `Create a new deployment.`, + Namespace: "datawarehouse", + Resource: "deployment", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.CreateDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `Name of the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags to apply to the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "version", + Short: `ClickHouse® version to use for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "replica-count", + Short: `Number of replicas for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "password", + Short: `Password for the initial user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "cpu-min", + Short: `Minimum CPU count for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "cpu-max", + Short: `Maximum CPU count for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "endpoints.{index}.private-network.private-network-id", + Short: `UUID of the Private Network`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ram-per-cpu", + Short: `RAM per CPU count for the deployment (in GB)`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.CreateDeploymentRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.CreateDeployment(request) + }, + } +} + +func datawarehouseDeploymentUpdate() *core.Command { + return &core.Command{ + Short: `Update a deployment`, + Long: `Update the parameters of a deployment.`, + Namespace: "datawarehouse", + Resource: "deployment", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.UpdateDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "name", + Short: `Name of the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags of a deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "cpu-min", + Short: `Minimum CPU count for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "cpu-max", + Short: `Maximum CPU count for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "replica-count", + Short: `Number of replicas for the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.UpdateDeploymentRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.UpdateDeployment(request) + }, + } +} + +func datawarehouseDeploymentDelete() *core.Command { + return &core.Command{ + Short: `Delete a deployment`, + Long: `Delete a given deployment, specified by the ` + "`" + `region` + "`" + ` and ` + "`" + `deployment_id` + "`" + ` parameters. Deleting a deployment is permanent, and cannot be undone. Upon deletion, all your data will be lost.`, + Namespace: "datawarehouse", + Resource: "deployment", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.DeleteDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment to delete`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.DeleteDeploymentRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.DeleteDeployment(request) + }, + } +} + +func datawarehouseDeploymentGetCertificate() *core.Command { + return &core.Command{ + Short: `Get deployment TLS certificate`, + Long: `Retrieve the TLS certificate associated with a deployment.`, + Namespace: "datawarehouse", + Resource: "deployment", + Verb: "get-certificate", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.GetDeploymentCertificateRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.GetDeploymentCertificateRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.GetDeploymentCertificate(request) + }, + } +} + +func datawarehouseUserList() *core.Command { + return &core.Command{ + Short: `List users associated with a deployment`, + Long: `List users associated with a deployment.`, + Namespace: "datawarehouse", + Resource: "user", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.ListUsersRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the user to filter by`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "order-by", + Short: `Criteria to use when ordering user listings`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.ListUsersRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListUsers(request, opts...) + if err != nil { + return nil, err + } + + return resp.Users, nil + }, + } +} + +func datawarehouseUserCreate() *core.Command { + return &core.Command{ + Short: `Create a new user for a deployment`, + Long: `Create a new user for a deployment.`, + Namespace: "datawarehouse", + Resource: "user", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.CreateUserRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "password", + Short: `Password for the user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "is-admin", + Short: `Indicates if the user is an administrator`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.CreateUserRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.CreateUser(request) + }, + } +} + +func datawarehouseUserUpdate() *core.Command { + return &core.Command{ + Short: `Update an existing user for a deployment`, + Long: `Update an existing user for a deployment.`, + Namespace: "datawarehouse", + Resource: "user", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.UpdateUserRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the user`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "password", + Short: `New password for the user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "is-admin", + Short: `Updates the user administrator permissions`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.UpdateUserRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.UpdateUser(request) + }, + } +} + +func datawarehouseUserDelete() *core.Command { + return &core.Command{ + Short: `Delete a user from a deployment`, + Long: `Delete a user from a deployment.`, + Namespace: "datawarehouse", + Resource: "user", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.DeleteUserRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the user to delete`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.DeleteUserRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + e = api.DeleteUser(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "user", + Verb: "delete", + }, nil + }, + } +} + +func datawarehouseEndpointDelete() *core.Command { + return &core.Command{ + Short: `Delete an endpoint from a deployment`, + Long: `Delete an endpoint from a deployment.`, + Namespace: "datawarehouse", + Resource: "endpoint", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.DeleteEndpointRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "endpoint-id", + Short: `UUID of the Endpoint to delete`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.DeleteEndpointRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + e = api.DeleteEndpoint(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "endpoint", + Verb: "delete", + }, nil + }, + } +} + +func datawarehouseEndpointCreate() *core.Command { + return &core.Command{ + Short: `Create a new endpoint for a deployment`, + Long: `Create a new endpoint for a deployment.`, + Namespace: "datawarehouse", + Resource: "endpoint", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.CreateEndpointRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "endpoint.private-network.private-network-id", + Short: `UUID of the Private Network`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.CreateEndpointRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.CreateEndpoint(request) + }, + } +} + +func datawarehouseDatabaseList() *core.Command { + return &core.Command{ + Short: `List databases within a deployment`, + Long: `List databases within a deployment.`, + Namespace: "datawarehouse", + Resource: "database", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.ListDatabasesRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the database to filter by`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "order-by", + Short: `Criteria to use when ordering database listings`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + "size_asc", + "size_desc", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.ListDatabasesRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListDatabases(request, opts...) + if err != nil { + return nil, err + } + + return resp.Databases, nil + }, + } +} + +func datawarehouseDatabaseCreate() *core.Command { + return &core.Command{ + Short: `Create a new database within a deployment`, + Long: `Create a new database within a deployment.`, + Namespace: "datawarehouse", + Resource: "database", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.CreateDatabaseRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the database`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.CreateDatabaseRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + + return api.CreateDatabase(request) + }, + } +} + +func datawarehouseDatabaseDelete() *core.Command { + return &core.Command{ + Short: `Delete a database from a deployment`, + Long: `Delete a database from a deployment.`, + Namespace: "datawarehouse", + Resource: "database", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(datawarehouse.DeleteDatabaseRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the database to delete`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*datawarehouse.DeleteDatabaseRequest) + + client := core.ExtractClient(ctx) + api := datawarehouse.NewAPI(client) + e = api.DeleteDatabase(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "database", + Verb: "delete", + }, nil + }, + } +} diff --git a/internal/namespaces/edge_services/v1beta1/custom.go b/internal/namespaces/edge_services/v1beta1/custom.go index 9fa7f7d58c..38287409f4 100644 --- a/internal/namespaces/edge_services/v1beta1/custom.go +++ b/internal/namespaces/edge_services/v1beta1/custom.go @@ -7,5 +7,9 @@ func GetCommands() *core.Commands { cmds.MustFind("edge-services").Groups = []string{"network"} + cmds.Merge(core.NewCommands( + edgeServicesRouteRulesEditCommand(), + )) + return cmds } diff --git a/internal/namespaces/edge_services/v1beta1/custom_route_rules.go b/internal/namespaces/edge_services/v1beta1/custom_route_rules.go new file mode 100644 index 0000000000..5ef3426077 --- /dev/null +++ b/internal/namespaces/edge_services/v1beta1/custom_route_rules.go @@ -0,0 +1,129 @@ +package edge_services + +import ( + "context" + "fmt" + "reflect" + + "github.com/scaleway/scaleway-cli/v2/core" + "github.com/scaleway/scaleway-cli/v2/internal/editor" + edgeservices "github.com/scaleway/scaleway-sdk-go/api/edge_services/v1beta1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +var edgeServicesRouteRulesEditYamlExample = `route_rules: +- rule_http_match: + method_filters: + - get + - post + path_filter: + path_filter_type: regex + value: ^/api/.* + backend_stage_id: 11111111-1111-1111-1111-111111111111 +- rule_http_match: + method_filters: + - get + path_filter: + path_filter_type: regex + value: ^/static/.* + backend_stage_id: 11111111-1111-1111-1111-111111111111 +` + +var edgeServicesRouteRulesEditYamlExampleSimple = `route_rules: +- rule_http_match: + method_filters: + - get + - post + path_filter: + path_filter_type: regex + value: ^/api/.* +- rule_http_match: + method_filters: + - get + path_filter: + path_filter_type: regex + value: ^/static/.* +` + +type edgeServicesRouteRulesEditArgs struct { + RouteStageID string + BackendStageID *string + Mode editor.MarshalMode +} + +func edgeServicesRouteRulesEditCommand() *core.Command { + return &core.Command{ + Short: "Edit all route rules of a route stage", + Long: `Edit all route rules of a route stage. + +If backend-stage-id is provided, the editor will only show rule_http_match fields and the specified backend will be applied to all rules automatically. +Otherwise, opens the editor with full rules including backend_stage_id for each rule.`, + Namespace: "edge-services", + Resource: "route-rules", + Verb: "edit", + ArgsType: reflect.TypeOf(edgeServicesRouteRulesEditArgs{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "route-stage-id", + Short: "ID of the route stage to edit", + Required: true, + Positional: true, + }, + { + Name: "backend-stage-id", + Short: "ID of the backend stage to apply to all rules (simplifies editing when using a single backend)", + Required: false, + }, + editor.MarshalModeArgSpec(), + }, + Run: func(ctx context.Context, argsI any) (i any, e error) { + args := argsI.(*edgeServicesRouteRulesEditArgs) + + client := core.ExtractClient(ctx) + api := edgeservices.NewAPI(client) + + rules, err := api.ListRouteRules(&edgeservices.ListRouteRulesRequest{ + RouteStageID: args.RouteStageID, + }, scw.WithContext(ctx)) + if err != nil { + return nil, fmt.Errorf("failed to list route rules: %w", err) + } + + setRequest := &edgeservices.SetRouteRulesRequest{ + RouteStageID: args.RouteStageID, + } + + template := edgeServicesRouteRulesEditYamlExample + var ignoreFields []string + if args.BackendStageID != nil { + template = edgeServicesRouteRulesEditYamlExampleSimple + ignoreFields = []string{"backend_stage_id"} + } + + editedSetRequest, err := editor.UpdateResourceEditor(rules, setRequest, &editor.Config{ + PutRequest: true, + MarshalMode: args.Mode, + Template: template, + IgnoreFields: ignoreFields, + }) + if err != nil { + return nil, err + } + + setRequest = editedSetRequest.(*edgeservices.SetRouteRulesRequest) + + if args.BackendStageID != nil { + for _, rule := range setRequest.RouteRules { + rule.BackendStageID = args.BackendStageID + } + } + + resp, err := api.SetRouteRules(setRequest, scw.WithContext(ctx)) + if err != nil { + return nil, fmt.Errorf("failed to set route rules: %w", err) + } + + return resp.RouteRules, nil + }, + } +} diff --git a/internal/namespaces/edge_services/v1beta1/edge_services_cli.go b/internal/namespaces/edge_services/v1beta1/edge_services_cli.go index 0a4d52d9bc..52200ca456 100644 --- a/internal/namespaces/edge_services/v1beta1/edge_services_cli.go +++ b/internal/namespaces/edge_services/v1beta1/edge_services_cli.go @@ -34,6 +34,8 @@ func GetGeneratedCommands() *core.Commands { edgeServicesPipelineGet(), edgeServicesPipelineUpdate(), edgeServicesPipelineDelete(), + edgeServicesPipelineListHead(), + edgeServicesPipelineSetHead(), edgeServicesDNSStageList(), edgeServicesDNSStageCreate(), edgeServicesDNSStageGet(), @@ -375,6 +377,93 @@ func edgeServicesPipelineDelete() *core.Command { } } +func edgeServicesPipelineListHead() *core.Command { + return &core.Command{ + Short: `List Head stage for your pipeline.`, + Long: `List Head stage for your pipeline.`, + Namespace: "edge-services", + Resource: "pipeline", + Verb: "list-head", + // Deprecated: false, + ArgsType: reflect.TypeOf(edge_services.ListHeadStagesRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "pipeline-id", + Short: `ID of the pipeline to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*edge_services.ListHeadStagesRequest) + + client := core.ExtractClient(ctx) + api := edge_services.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + resp, err := api.ListHeadStages(request, opts...) + if err != nil { + return nil, err + } + + return resp.HeadStages, nil + }, + } +} + +func edgeServicesPipelineSetHead() *core.Command { + return &core.Command{ + Short: `Configure a entry point to your pipeline. You must specify a ` + "`" + `head stage` + "`" + ` to form a stage-chain that goes all the way to the backend stage (origin), so the HTTP request will be processed according to the stages you created.`, + Long: `You must specify either a ` + "`" + `add_new_head_stage` + "`" + ` (to add a new head stage), ` + "`" + `remove_head_stage` + "`" + ` (to remove a head stage) or ` + "`" + `swap_head_stage` + "`" + ` (to replace a head stage).`, + Namespace: "edge-services", + Resource: "pipeline", + Verb: "set-head", + // Deprecated: false, + ArgsType: reflect.TypeOf(edge_services.SetHeadStageRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "pipeline-id", + Short: `ID of the pipeline to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "add-new-head-stage.new-stage-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "remove-head-stage.remove-stage-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "swap-head-stage.new-stage-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "swap-head-stage.current-stage-id", + Required: false, + Deprecated: false, + Positional: false, + }, + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*edge_services.SetHeadStageRequest) + + client := core.ExtractClient(ctx) + api := edge_services.NewAPI(client) + + return api.SetHeadStage(request) + }, + } +} + func edgeServicesDNSStageList() *core.Command { return &core.Command{ Short: `List DNS stages`, @@ -1263,18 +1352,6 @@ func edgeServicesBackendStageCreate() *core.Command { Deprecated: false, Positional: false, }, - { - Name: "scaleway-serverless-container.region", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaleway-serverless-container.container-id", - Required: false, - Deprecated: false, - Positional: false, - }, }, Run: func(ctx context.Context, args any) (i any, e error) { request := args.(*edge_services.CreateBackendStageRequest) @@ -1403,18 +1480,6 @@ func edgeServicesBackendStageUpdate() *core.Command { Deprecated: false, Positional: false, }, - { - Name: "scaleway-serverless-container.region", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaleway-serverless-container.container-id", - Required: false, - Deprecated: false, - Positional: false, - }, }, Run: func(ctx context.Context, args any) (i any, e error) { request := args.(*edge_services.UpdateBackendStageRequest) diff --git a/internal/namespaces/flexibleip/v1alpha1/custom_ip.go b/internal/namespaces/flexibleip/v1alpha1/custom_ip.go index 849b042f30..2639d79551 100644 --- a/internal/namespaces/flexibleip/v1alpha1/custom_ip.go +++ b/internal/namespaces/flexibleip/v1alpha1/custom_ip.go @@ -8,7 +8,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" flexibleip "github.com/scaleway/scaleway-sdk-go/api/flexibleip/v1alpha1" - "github.com/scaleway/scaleway-sdk-go/scw" ) var ipStatusMarshalSpecs = human.EnumMarshalSpecs{ @@ -33,7 +32,7 @@ func createIPBuilder(c *core.Command) *core.Command { return api.WaitForFlexibleIP(&flexibleip.WaitForFlexibleIPRequest{ FipID: getResp.ID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(FlexibleIPTimeout), + Timeout: new(FlexibleIPTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/function/v1beta1/custom_deploy.go b/internal/namespaces/function/v1beta1/custom_deploy.go index b0441722e7..c8025f086e 100644 --- a/internal/namespaces/function/v1beta1/custom_deploy.go +++ b/internal/namespaces/function/v1beta1/custom_deploy.go @@ -84,7 +84,11 @@ func functionDeploy() *core.Command { DeployStepFetchNamespace(api, args.Region, args.NamespaceID), ) } else { - tasks.Add(ts, "Creating or fetching namespace", DeployStepCreateNamespace(api, args.Region, args.Name)) + tasks.Add( + ts, + "Creating or fetching namespace", + DeployStepCreateNamespace(api, args.Region, args.Name), + ) } tasks.Add( ts, @@ -302,7 +306,7 @@ func DeployStepFunctionDeploy( Region: fc.Region, FunctionID: fc.ID, Runtime: runtime, - Redeploy: scw.BoolPtr(true), + Redeploy: new(true), }) if err != nil { return nil, err diff --git a/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.cassette.yaml b/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.cassette.yaml index 6c76b3dbd6..8ec18b159f 100644 --- a/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.cassette.yaml +++ b/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.cassette.yaml @@ -183,7 +183,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/runtimes method: GET response: @@ -373,9 +373,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:42 GMT + - Mon, 15 Dec 2025 13:25:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,7 +383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fede6782-cc73-42c7-bc4d-fc489e453297 + - 0e4f0d01-b335-44cc-bf0c-3f80a6413d78 status: 200 OK code: 200 duration: "" @@ -392,7 +392,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=cli-test-function-deploy&order_by=created_at_asc method: GET response: @@ -405,9 +405,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:42 GMT + - Mon, 15 Dec 2025 13:25:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -415,43 +415,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed661cb1-59b3-4138-aa00-1f51b37ab268 + - 419a0fe1-9832-41c6-bb6a-ea40b3b92c13 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"pending", "registry_namespace_id":"", + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-06-11T11:30:42.566508336Z", "updated_at":"2025-06-11T11:30:42.566508336Z", - "region":"fr-par"}' + "tags":[], "created_at":"2025-12-15T13:25:27.071785978Z", "updated_at":"2025-12-15T13:25:27.071785978Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"pending", "registry_namespace_id":"", + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-06-11T11:30:42.566508336Z", "updated_at":"2025-06-11T11:30:42.566508336Z", - "region":"fr-par"}' + "tags":[], "created_at":"2025-12-15T13:25:27.071785978Z", "updated_at":"2025-12-15T13:25:27.071785978Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "490" + - "525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:42 GMT + - Mon, 15 Dec 2025 13:25:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -459,41 +459,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4339b4f9-34a5-47e7-a993-16de46655baf + - 67852a9d-39d5-4a3f-b9ca-e43a75095741 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"pending", "registry_namespace_id":"", + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", "updated_at":"2025-06-11T11:30:42.566508Z", - "region":"fr-par"}' + "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", "updated_at":"2025-12-15T13:25:27.071786Z", + "vpc_integration_activated":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/20e20ab3-5c55-443b-b892-d34eab9e0d29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/05be01cf-2e0a-4834-959f-512bd21fb820 method: GET response: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"pending", "registry_namespace_id":"", + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", "updated_at":"2025-06-11T11:30:42.566508Z", - "region":"fr-par"}' + "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", "updated_at":"2025-12-15T13:25:27.071786Z", + "vpc_integration_activated":false, "region":"fr-par"}' headers: Content-Length: - - "484" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:42 GMT + - Mon, 15 Dec 2025 13:25:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,41 +501,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d77bb64-9f4b-4b4a-913f-441c9cdb27d6 + - 96169af7-e23a-4802-a47f-570618ea6058 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"ready", "registry_namespace_id":"5fc1eea3-3c31-4c3e-ac6a-1097b8ca9ef3", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplozfc2btoz", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", - "updated_at":"2025-06-11T11:30:45.076115Z", "region":"fr-par"}' + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"e0a29879-6d51-4705-98bb-158cb47d33d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplovcgixz1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", + "updated_at":"2025-12-15T13:25:28.685754Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/20e20ab3-5c55-443b-b892-d34eab9e0d29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/05be01cf-2e0a-4834-959f-512bd21fb820 method: GET response: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"ready", "registry_namespace_id":"5fc1eea3-3c31-4c3e-ac6a-1097b8ca9ef3", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplozfc2btoz", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", - "updated_at":"2025-06-11T11:30:45.076115Z", "region":"fr-par"}' + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"e0a29879-6d51-4705-98bb-158cb47d33d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplovcgixz1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", + "updated_at":"2025-12-15T13:25:28.685754Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "573" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:47 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -543,7 +545,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6af2a54b-f435-4aba-9736-70b4cd6400a6 + - 7c7e8954-0c43-4ac0-99d8-823515c401ec status: 200 OK code: 200 duration: "" @@ -552,8 +554,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions?name=cli-test-function-deploy&namespace_id=20e20ab3-5c55-443b-b892-d34eab9e0d29&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions?name=cli-test-function-deploy&namespace_id=05be01cf-2e0a-4834-959f-512bd21fb820&order_by=created_at_asc method: GET response: body: '{"functions":[], "total_count":0}' @@ -565,9 +567,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:47 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -575,47 +577,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4331238a-6612-4057-9b1b-6ec7af4cfe82 + - 67144f5e-2d44-4ec8-bf16-d0b458749944 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"created", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"created", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387356Z", - "updated_at":"2025-06-11T11:30:48.025387356Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397625800Z", + "updated_at":"2025-12-15T13:25:42.397625800Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions method: POST response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"created", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"created", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387356Z", - "updated_at":"2025-06-11T11:30:48.025387356Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397625800Z", + "updated_at":"2025-12-15T13:25:42.397625800Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "730" + - "757" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:48 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -623,21 +627,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 207bc4b0-776e-4b4b-980a-6714678bd6e8 + - caa15f57-e98a-4a92-a7a5-fec5a0ec4b28 status: 200 OK code: 200 duration: "" - request: - body: '{"url":"https://s3.fr-par.scw.cloud/serverless-functions-code-prod-fr-par/uploads/function-79a27f04-2519-49e1-9fe7-e40d77ab0089.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW3S98HDC0MAE9CBTQ5%2F20250611%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250611T113048Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=content-length%3Bcontent-type%3Bhost&X-Amz-Signature=35622a902a7c0568037edc94a2f21557ecfc1f2d1587a6dfa2b4e93d7a9459e5", + body: '{"url":"https://s3.fr-par.scw.cloud/serverless-functions-code-prod-fr-par/uploads/function-bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW3S98HDC0MAE9CBTQ5%2F20251215%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20251215T132542Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=content-length%3Bcontent-type%3Bhost&X-Amz-Signature=318698c61df29d95a0ee501462ec9d946ce010b1d29f7ad93ee563702482b77d", "headers":{"content-length":["780"], "content-type":["application/octet-stream"]}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089/upload-url?content_length=780 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1/upload-url?content_length=780 method: GET response: - body: '{"url":"https://s3.fr-par.scw.cloud/serverless-functions-code-prod-fr-par/uploads/function-79a27f04-2519-49e1-9fe7-e40d77ab0089.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW3S98HDC0MAE9CBTQ5%2F20250611%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250611T113048Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=content-length%3Bcontent-type%3Bhost&X-Amz-Signature=35622a902a7c0568037edc94a2f21557ecfc1f2d1587a6dfa2b4e93d7a9459e5", + body: '{"url":"https://s3.fr-par.scw.cloud/serverless-functions-code-prod-fr-par/uploads/function-bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW3S98HDC0MAE9CBTQ5%2F20251215%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20251215T132542Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=content-length%3Bcontent-type%3Bhost&X-Amz-Signature=318698c61df29d95a0ee501462ec9d946ce010b1d29f7ad93ee563702482b77d", "headers":{"content-length":["780"], "content-type":["application/octet-stream"]}}' headers: Content-Length: @@ -647,9 +651,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:48 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -657,7 +661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b76bb095-3bd5-43fc-b682-b8e93f4e5440 + - 7296ecc2-f016-41af-ab37-7f19b30539c7 status: 200 OK code: 200 duration: "" @@ -669,7 +673,7 @@ interactions: - "780" Content-Type: - application/octet-stream - url: https://s3.fr-par.scw.cloud/serverless-functions-code-prod-fr-par/uploads/function-79a27f04-2519-49e1-9fe7-e40d77ab0089.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW3S98HDC0MAE9CBTQ5%2F20250611%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250611T113048Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=content-length%3Bcontent-type%3Bhost&X-Amz-Signature=35622a902a7c0568037edc94a2f21557ecfc1f2d1587a6dfa2b4e93d7a9459e5 + url: https://s3.fr-par.scw.cloud/serverless-functions-code-prod-fr-par/uploads/function-bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW3S98HDC0MAE9CBTQ5%2F20251215%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20251215T132542Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=content-length%3Bcontent-type%3Bhost&X-Amz-Signature=318698c61df29d95a0ee501462ec9d946ce010b1d29f7ad93ee563702482b77d method: PUT response: body: "" @@ -677,53 +681,55 @@ interactions: Content-Length: - "0" Date: - - Wed, 11 Jun 2025 11:30:48 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Etag: - '"10633bf7a5ff211d8f3eee3856a28101"' X-Amz-Id-2: - - txg1ba5f772c00647de9c31-00684968e8 + - txgbb4900ea86e64ced9086-0069400c56 X-Amz-Request-Id: - - txg1ba5f772c00647de9c31-00684968e8 + - txgbb4900ea86e64ced9086-0069400c56 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:48.388968426Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:25:42.723924313Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: PATCH response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:48.388968426Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:25:42.723924313Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "727" + - "754" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:48 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -731,45 +737,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2af97418-21f6-4016-8039-0532587789c5 + - bd1c8a41-4cef-41ef-a16b-8173f3d5ff32 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:48.388968Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:25:42.723924Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:48.388968Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:25:42.723924Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "724" + - "751" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:48 GMT + - Mon, 15 Dec 2025 13:25:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -777,45 +785,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7609e707-974b-4acc-94e4-b3618f9ddf69 + - 7426c2ce-8f56-4fb5-a9be-ec71e69ca9c5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:48.738419Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:25:53.377304Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:48.738419Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:25:53.377304Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "724" + - "751" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:53 GMT + - Mon, 15 Dec 2025 13:25:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -823,45 +833,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05ec7766-71fb-41d1-a58d-8403ef9e5d30 + - 3205354b-ac36-4842-8740-8162cd40af15 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:53.833763Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:26:09.075900Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:53.833763Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:26:09.075900Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "761" + - "751" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:30:58 GMT + - Mon, 15 Dec 2025 13:26:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -869,45 +881,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0c7b7b8-b8cc-4d66-af36-f819520b1c0c + - 410b490d-1096-4a0d-98eb-f0aeeae9e8f7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:58.946792Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:26:24.591585Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:30:58.946792Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:26:24.591585Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "761" + - "751" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:03 GMT + - Mon, 15 Dec 2025 13:26:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -915,45 +929,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55375938-fe82-4326-877c-c516cfdc3b3d + - 879473d9-8b7e-4dcd-b975-61c64b7c3319 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:04.121994Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:26:39.879819Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:04.121994Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:26:39.879819Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "761" + - "751" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:08 GMT + - Mon, 15 Dec 2025 13:26:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -961,45 +977,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d72d49f-ef10-46fb-a057-cc6ee988dd20 + - cc19513f-929e-425d-9809-44d33e052454 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:09.228350Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 1 of 3: function build preparation in progress", "sandbox":"v2", + "created_at":"2025-12-15T13:25:42.397626Z", "updated_at":"2025-12-15T13:26:55.109948Z", + "ready_at":null, "tags":[], "private_network_id":null, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:09.228350Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 1 of 3: function build preparation in progress", "sandbox":"v2", + "created_at":"2025-12-15T13:25:42.397626Z", "updated_at":"2025-12-15T13:26:55.109948Z", + "ready_at":null, "tags":[], "private_network_id":null, "region":"fr-par"}' headers: Content-Length: - - "761" + - "800" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:13 GMT + - Mon, 15 Dec 2025 13:26:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1007,45 +1025,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f7a7033-9f12-4420-99dd-affb8ae8245d + - c397820d-8219-4b67-9b37-9e61aa529e64 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:14.322447Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:10.418593Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:14.322447Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:10.418593Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "761" + - "788" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:18 GMT + - Mon, 15 Dec 2025 13:27:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1053,45 +1073,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d066cbe1-6cee-4736-ad66-c9aaedc4b9aa + - b8fc9ce8-e784-4263-b723-e80fd25f1b62 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:19.438629Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:25.748271Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:19.438629Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:25.748271Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "761" + - "788" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:23 GMT + - Mon, 15 Dec 2025 13:27:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,45 +1121,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97caad34-ef2d-4855-a55f-06b551fc71bd + - 4831b4fe-23fd-4c19-b7e6-f43ee3e82fa6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:24.610251Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:41.156867Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:24.610251Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:41.156867Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "761" + - "788" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:28 GMT + - Mon, 15 Dec 2025 13:27:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,47 +1169,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd4922e6-2b4f-49e9-836e-249fae833bfb + - 4ff999e8-8c10-4562-83db-0e997f54f6f4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 3 of 3: function image is being pushed to container registry", - "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", "updated_at":"2025-06-11T11:31:29.730626Z", - "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:56.446722Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":"step 3 of 3: function image is being pushed to container registry", - "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", "updated_at":"2025-06-11T11:31:29.730626Z", - "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:27:56.446722Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "787" + - "788" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:33 GMT + - Mon, 15 Dec 2025 13:27:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1193,45 +1217,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf7dbb34-0b2e-4646-ae37-cf6c32d20d22 + - d033618f-7aea-4603-a299-94f5c965510e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:34.870043Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:28:11.736004Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:34.870043Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 2 of 3: function build in progress", "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:28:11.736004Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "724" + - "788" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:39 GMT + - Mon, 15 Dec 2025 13:28:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1239,45 +1265,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc96b7dd-eafa-4fc2-ac50-e5fb5ff14679 + - c86bb0b8-2308-41b3-a7ad-25e3efbc1432 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:39.949077Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 3 of 3: function image is being pushed to container registry", + "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", "updated_at":"2025-12-15T13:28:27.275599Z", + "ready_at":null, "tags":[], "private_network_id":null, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:39.949077Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":"step 3 of 3: function image is being pushed to container registry", + "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", "updated_at":"2025-12-15T13:28:27.275599Z", + "ready_at":null, "tags":[], "private_network_id":null, "region":"fr-par"}' headers: Content-Length: - - "724" + - "814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:44 GMT + - Mon, 15 Dec 2025 13:28:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1285,45 +1313,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3082b345-319d-4522-a958-41c5c3046d4e + - 09be4754-68ea-42e4-b04c-9cc38264661e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:39.949077Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:28:42.563716Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"pending", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"pending", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:39.949077Z", "ready_at":null, "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:28:42.563716Z", "ready_at":null, "tags":[], "private_network_id":null, + "region":"fr-par"}' headers: Content-Length: - - "724" + - "751" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:49 GMT + - Mon, 15 Dec 2025 13:28:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1331,47 +1361,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8995f1d8-00ee-4ad6-a146-868587886218 + - 913b25a5-1d3c-4839-8f5a-f7fc6c09517b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"ready", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"ready", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:50.860372Z", "ready_at":"2025-06-11T11:31:50.850169Z", - "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:28:53.411661Z", "ready_at":"2025-12-15T13:28:53.403154Z", + "tags":[], "private_network_id":null, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/79a27f04-2519-49e1-9fe7-e40d77ab0089 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 method: GET response: - body: '{"id":"79a27f04-2519-49e1-9fe7-e40d77ab0089", "name":"cli-test-function-deploy", - "namespace_id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "status":"ready", "environment_variables":{}, + body: '{"id":"bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name":"cli-test-function-deploy", + "namespace_id":"05be01cf-2e0a-4834-959f-512bd21fb820", "status":"ready", "environment_variables":{}, "min_scale":0, "max_scale":5, "runtime":"go124", "memory_limit":256, "cpu_limit":140, "timeout":"300s", "handler":"Handle", "error_message":null, "privacy":"public", - "description":"", "domain_name":"clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "description":"", "domain_name":"clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables":[], "http_option":"enabled", "runtime_message":"", - "build_message":null, "sandbox":"v2", "created_at":"2025-06-11T11:30:48.025387Z", - "updated_at":"2025-06-11T11:31:50.860372Z", "ready_at":"2025-06-11T11:31:50.850169Z", - "tags":[], "region":"fr-par"}' + "build_message":null, "sandbox":"v2", "created_at":"2025-12-15T13:25:42.397626Z", + "updated_at":"2025-12-15T13:28:53.411661Z", "ready_at":"2025-12-15T13:28:53.403154Z", + "tags":[], "private_network_id":null, "region":"fr-par"}' headers: Content-Length: - - "747" + - "774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:54 GMT + - Mon, 15 Dec 2025 13:28:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,41 +1409,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dae3bb77-52c3-4401-a2d1-1f933f77898d + - 3485b22b-2b56-440a-8c5c-17d515e6111d status: 200 OK code: 200 duration: "" - request: - body: '{"namespaces":[{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"ready", "registry_namespace_id":"5fc1eea3-3c31-4c3e-ac6a-1097b8ca9ef3", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplozfc2btoz", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", - "updated_at":"2025-06-11T11:30:45.076115Z", "region":"fr-par"}], "total_count":1}' + body: '{"namespaces":[{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"e0a29879-6d51-4705-98bb-158cb47d33d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplovcgixz1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", + "updated_at":"2025-12-15T13:25:28.685754Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=cli-test-function-deploy&order_by=created_at_asc&page=1 method: GET response: - body: '{"namespaces":[{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"ready", "registry_namespace_id":"5fc1eea3-3c31-4c3e-ac6a-1097b8ca9ef3", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplozfc2btoz", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", - "updated_at":"2025-06-11T11:30:45.076115Z", "region":"fr-par"}], "total_count":1}' + body: '{"namespaces":[{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"e0a29879-6d51-4705-98bb-158cb47d33d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplovcgixz1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", + "updated_at":"2025-12-15T13:25:28.685754Z", "vpc_integration_activated":false, + "region":"fr-par"}], "total_count":1}' headers: Content-Length: - - "607" + - "642" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:54 GMT + - Mon, 15 Dec 2025 13:28:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1421,41 +1453,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 945aa190-ca19-4427-99b8-fc70bee0a899 + - f2e47a71-1200-48e1-9472-e8aa32bd4c2e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"deleting", "registry_namespace_id":"5fc1eea3-3c31-4c3e-ac6a-1097b8ca9ef3", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplozfc2btoz", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", - "updated_at":"2025-06-11T11:31:54.336606190Z", "region":"fr-par"}' + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"e0a29879-6d51-4705-98bb-158cb47d33d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplovcgixz1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", + "updated_at":"2025-12-15T13:28:58.594966430Z", "vpc_integration_activated":false, + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/20e20ab3-5c55-443b-b892-d34eab9e0d29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/05be01cf-2e0a-4834-959f-512bd21fb820 method: DELETE response: - body: '{"id":"20e20ab3-5c55-443b-b892-d34eab9e0d29", "name":"cli-test-function-deploy", - "environment_variables":{}, "organization_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", - "project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2", "status":"deleting", "registry_namespace_id":"5fc1eea3-3c31-4c3e-ac6a-1097b8ca9ef3", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplozfc2btoz", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-06-11T11:30:42.566508Z", - "updated_at":"2025-06-11T11:31:54.336606190Z", "region":"fr-par"}' + body: '{"id":"05be01cf-2e0a-4834-959f-512bd21fb820", "name":"cli-test-function-deploy", + "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", + "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"e0a29879-6d51-4705-98bb-158cb47d33d4", + "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitestfunctiondeplovcgixz1v", + "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:27.071786Z", + "updated_at":"2025-12-15T13:28:58.594966430Z", "vpc_integration_activated":false, + "region":"fr-par"}' headers: Content-Length: - - "579" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 11 Jun 2025 11:31:54 GMT + - Mon, 15 Dec 2025 13:28:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1463,7 +1497,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3371594-e4c6-4fc3-8075-6bea46e468d8 + - c146ce30-e4bc-4dac-99d4-ae2b5f5522bd status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.golden b/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.golden index 56feb26aa1..d1e292c0a1 100644 --- a/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.golden +++ b/internal/namespaces/function/v1beta1/testdata/test-deploy-simple.golden @@ -1,8 +1,8 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 79a27f04-2519-49e1-9fe7-e40d77ab0089 +ID bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1 Name cli-test-function-deploy -NamespaceID 20e20ab3-5c55-443b-b892-d34eab9e0d29 +NamespaceID 05be01cf-2e0a-4834-959f-512bd21fb820 Status ready MinScale 0 MaxScale 5 @@ -13,7 +13,7 @@ Timeout 5 minutes Handler Handle Privacy public Description - -DomainName clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud +DomainName clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud Region fr-par HTTPOption enabled RuntimeMessage - @@ -23,9 +23,9 @@ UpdatedAt few seconds ago ReadyAt few seconds ago 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "79a27f04-2519-49e1-9fe7-e40d77ab0089", + "id": "bd4e6a89-a0cd-4d0f-8fec-1ca7553ec1d1", "name": "cli-test-function-deploy", - "namespace_id": "20e20ab3-5c55-443b-b892-d34eab9e0d29", + "namespace_id": "05be01cf-2e0a-4834-959f-512bd21fb820", "status": "ready", "environment_variables": {}, "min_scale": 0, @@ -39,7 +39,7 @@ ReadyAt few seconds ago "build_message": null, "privacy": "public", "description": "", - "domain_name": "clitestfunctiondeplozfc2btoz-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", + "domain_name": "clitestfunctiondeplovcgixz1v-cli-test-function-deploy.functions.fnc.fr-par.scw.cloud", "secret_environment_variables": [], "region": "fr-par", "http_option": "enabled", diff --git a/internal/namespaces/inference/v1/custom_deployment.go b/internal/namespaces/inference/v1/custom_deployment.go index 867c356225..fb06562d6a 100644 --- a/internal/namespaces/inference/v1/custom_deployment.go +++ b/internal/namespaces/inference/v1/custom_deployment.go @@ -125,7 +125,7 @@ func waitForDeploymentFunc(action int) core.WaitFunc { WaitForDeployment(&inference.WaitForDeploymentRequest{ DeploymentID: respI.(*inference.Deployment).ID, Region: respI.(*inference.Deployment).Region, - Timeout: scw.TimeDurationPtr(deploymentActionTimeout), + Timeout: new(deploymentActionTimeout), RetryInterval: core.DefaultRetryInterval, }) diff --git a/internal/namespaces/init/init.go b/internal/namespaces/init/init.go index 4868605ab5..7b6ea597f5 100644 --- a/internal/namespaces/init/init.go +++ b/internal/namespaces/init/init.go @@ -226,8 +226,8 @@ Default path for configuration file is based on the following priority order: profile := &scw.Profile{ AccessKey: &args.AccessKey, SecretKey: &args.SecretKey, - DefaultZone: scw.StringPtr(args.Zone.String()), - DefaultRegion: scw.StringPtr(args.Region.String()), + DefaultZone: new(args.Zone.String()), + DefaultRegion: new(args.Region.String()), DefaultOrganizationID: &args.OrganizationID, DefaultProjectID: &args.ProjectID, // An API key is always bound to a project. } diff --git a/internal/namespaces/init/init_test.go b/internal/namespaces/init/init_test.go index f702509a76..40367cfa05 100644 --- a/internal/namespaces/init/init_test.go +++ b/internal/namespaces/init/init_test.go @@ -124,7 +124,7 @@ func TestInit(t *testing.T) { "test": { AccessKey: &dummyAccessKey, SecretKey: &dummySecretKey, - DefaultZone: scw.StringPtr("fr-test"), // Used to check profile override + DefaultZone: new("fr-test"), // Used to check profile override }, }, } diff --git a/internal/namespaces/init/prompt.go b/internal/namespaces/init/prompt.go index 3aff73b965..9647665ec2 100644 --- a/internal/namespaces/init/prompt.go +++ b/internal/namespaces/init/prompt.go @@ -119,7 +119,7 @@ func promptTelemetry(ctx context.Context) (*bool, error) { return nil, err } - return scw.BoolPtr(sendTelemetry), nil + return new(sendTelemetry), nil } func promptAutocomplete(ctx context.Context) (*bool, error) { @@ -137,7 +137,7 @@ func promptAutocomplete(ctx context.Context) (*bool, error) { return nil, err } - return scw.BoolPtr(installAutocomplete), nil + return new(installAutocomplete), nil } func promptSecretKey(ctx context.Context) (string, error) { diff --git a/internal/namespaces/instance/v1/custom_image.go b/internal/namespaces/instance/v1/custom_image.go index 188bedb3df..688ce48409 100644 --- a/internal/namespaces/instance/v1/custom_image.go +++ b/internal/namespaces/instance/v1/custom_image.go @@ -49,20 +49,20 @@ func imagesMarshalerFunc(i any, _ *human.MarshalOpt) (string, error) { } images := i.([]*imageListItem) - humanImages := []*humanImage(nil) + humanImages := make([]*humanImage, 0, len(images)) for _, image := range images { - // For each image we want to display a list of volume size separated with `,` - // e.g: 10 GB, 20 GB - volumes := []scw.Size{ - image.RootVolume.Size, - } // We must sort map key to make sure volume size are in the correct order. - extraVolumeKeys := []string(nil) + extraVolumeKeys := make([]string, 0, len(image.ExtraVolumes)) for key := range image.ExtraVolumes { extraVolumeKeys = append(extraVolumeKeys, key) } sort.Strings(extraVolumeKeys) + // For each image we want to display a list of volume size separated with `,` + // e.g: 10 GB, 20 GB + volumes := make([]scw.Size, 0, len(extraVolumeKeys)+1) + volumes = append(volumes, image.RootVolume.Size) + for _, key := range extraVolumeKeys { volumes = append(volumes, image.ExtraVolumes[key].Size) } @@ -188,10 +188,11 @@ func imageListBuilder(c *core.Command) *core.Command { req := &instance.ListImagesRequest{ Organization: args.OrganizationID, Name: args.Name, - Public: scw.BoolPtr(false), + Public: new(false), Arch: args.Arch, Project: args.ProjectID, Tags: args.Tags, + Zone: args.Zone, } client := core.ExtractClient(ctx) diff --git a/internal/namespaces/instance/v1/custom_server.go b/internal/namespaces/instance/v1/custom_server.go index 90b2f01582..d20cd56d39 100644 --- a/internal/namespaces/instance/v1/custom_server.go +++ b/internal/namespaces/instance/v1/custom_server.go @@ -81,10 +81,11 @@ func serversMarshalerFunc(i any, opt *human.MarshalOpt) (string, error) { StateDetail string Arch instance.Arch ImageID string + ProjectID string } servers := i.([]*instance.Server) - humanServers := make([]*humanServerInList, 0) + humanServers := make([]*humanServerInList, 0, len(servers)) for _, server := range servers { publicIPAddress := net.IP(nil) if server.PublicIP != nil { @@ -117,6 +118,7 @@ func serversMarshalerFunc(i any, opt *human.MarshalOpt) (string, error) { StateDetail: server.StateDetail, Arch: server.Arch, ImageID: serverImageID, + ProjectID: server.Project, }) } @@ -138,7 +140,7 @@ type customVolume struct { // orderVolumes return an ordered slice based on the volume map key "0", "1", "2",... func orderVolumes(v map[string]*customVolume) []*customVolume { - indexes := []string(nil) + indexes := make([]string, 0, len(v)) for index := range v { indexes = append(indexes, index) } @@ -323,13 +325,13 @@ func serverUpdateBuilder(c *core.Command) *core.Command { if volumeIsFromSBS(block.NewAPI(client), customRequest.Zone, volumeID) { volumes[index] = &instance.VolumeServerTemplate{ - ID: scw.StringPtr(volumeID), + ID: new(volumeID), VolumeType: instance.VolumeVolumeTypeSbsVolume, } } else { volumes[index] = &instance.VolumeServerTemplate{ - ID: scw.StringPtr(volumeID), - Name: scw.StringPtr(getServerResponse.Server.Name + "-" + index), + ID: new(volumeID), + Name: new(getServerResponse.Server.Name + "-" + index), } } } @@ -785,7 +787,7 @@ func serverWaitCommand() *core.Command { WaitForServer(&instance.WaitForServerRequest{ Zone: args.Zone, ServerID: args.ServerID, - Timeout: scw.TimeDurationPtr(args.Timeout), + Timeout: new(args.Timeout), RetryInterval: core.DefaultRetryInterval, }) }, diff --git a/internal/namespaces/instance/v1/custom_server_action.go b/internal/namespaces/instance/v1/custom_server_action.go index 0122dde15f..7b3832ba72 100644 --- a/internal/namespaces/instance/v1/custom_server_action.go +++ b/internal/namespaces/instance/v1/custom_server_action.go @@ -210,7 +210,7 @@ Once your image is ready you will be able to create a new server based on this i return api.WaitForImage(&instance.WaitForImageRequest{ ImageID: resp.Image.ID, Zone: resp.Image.Zone, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) }, @@ -322,7 +322,7 @@ func serverTerminateCommand() *core.Command { _, err := api.WaitForServer(&instance.WaitForServerRequest{ Zone: server.Zone, ServerID: server.ID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -409,7 +409,11 @@ func serverTerminateCommand() *core.Command { Zone: volume.Zone, }, scw.WithContext(ctx)) if err != nil { - return nil, fmt.Errorf("failed to detach block volume %s: %w", volume.ID, err) + return nil, fmt.Errorf( + "failed to detach block volume %s: %w", + volume.ID, + err, + ) } blockAPI := block.NewAPI(client) @@ -422,7 +426,11 @@ func serverTerminateCommand() *core.Command { RetryInterval: core.DefaultRetryInterval, }) if err != nil { - return nil, fmt.Errorf("failed to wait for block volume %s: %w", volume.ID, err) + return nil, fmt.Errorf( + "failed to wait for block volume %s: %w", + volume.ID, + err, + ) } err = blockAPI.DeleteVolume(&block.DeleteVolumeRequest{ @@ -430,10 +438,17 @@ func serverTerminateCommand() *core.Command { Zone: blockVolume.Zone, }, scw.WithContext(ctx)) if err != nil { - return nil, fmt.Errorf("failed to delete block volume %s: %w", blockVolume.Name, err) + return nil, fmt.Errorf( + "failed to delete block volume %s: %w", + blockVolume.Name, + err, + ) } - successMessages[index] = fmt.Sprintf("successfully deleted block volume %q", blockVolume.Name) + successMessages[index] = fmt.Sprintf( + "successfully deleted block volume %q", + blockVolume.Name, + ) } printSuccessMessagesInOrder(successMessages) @@ -502,7 +517,7 @@ func shouldDeleteBlockVolumes( // printSuccessMessagesInOrder prints volume deletion messages ordered by volume map key "0", "1", "2",... func printSuccessMessagesInOrder(messages map[string]string) { - indexes := []string(nil) + indexes := make([]string, 0, len(messages)) for index := range messages { indexes = append(indexes, index) } @@ -553,7 +568,7 @@ func waitForServerFunc() core.WaitFunc { WaitForServer(&instance.WaitForServerRequest{ Zone: argsI.(*instanceUniqueActionRequest).Zone, ServerID: argsI.(*instanceUniqueActionRequest).ServerID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -597,7 +612,7 @@ func serverActionCommand() *core.Command { WaitForServer(&instance.WaitForServerRequest{ Zone: argsI.(*instanceActionRequest).Zone, ServerID: argsI.(*instanceActionRequest).ServerID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) }, diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index d94b124b45..2776b3034a 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -207,7 +207,7 @@ func instanceWaitServerCreateRun() core.WaitFunc { WaitForServer(&instance.WaitForServerRequest{ Zone: argsI.(*instanceCreateServerRequest).Zone, ServerID: serverID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) @@ -231,7 +231,7 @@ func instanceServerCreateRun(ctx context.Context, argsI any) (i any, e error) { serverBuilder := NewServerBuilder(client, args.Name, args.Zone, args.Type). AddOrganizationID(args.OrganizationID). AddProjectID(args.ProjectID). - AddEnableIPv6(scw.BoolPtr(args.IPv6)). + AddEnableIPv6(new(args.IPv6)). AddTags(args.Tags). AddRoutedIPEnabled(args.RoutedIPEnabled). AddDynamicIPRequired(args.DynamicIPRequired). @@ -369,28 +369,9 @@ func instanceServerCreateRun(ctx context.Context, argsI any) (i any, e error) { } func addDefaultVolumes( - serverType *instance.ServerType, volumes map[string]*instance.VolumeServerTemplate, ) map[string]*instance.VolumeServerTemplate { - needScratch := false - hasScratch := false defaultVolumes := []*instance.VolumeServerTemplate(nil) - if serverType.ScratchStorageMaxSize != nil && *serverType.ScratchStorageMaxSize > 0 { - needScratch = true - } - for _, volume := range volumes { - if volume.VolumeType == instance.VolumeVolumeTypeScratch { - hasScratch = true - } - } - - if needScratch && !hasScratch { - defaultVolumes = append(defaultVolumes, &instance.VolumeServerTemplate{ - Name: scw.StringPtr("default-cli-scratch-volume"), - Size: serverType.ScratchStorageMaxSize, - VolumeType: instance.VolumeVolumeTypeScratch, - }) - } if defaultVolumes != nil { if volumes == nil { @@ -521,7 +502,7 @@ func sanitizeVolumeMap( m := make(map[string]*instance.VolumeServerTemplate) for index, v := range volumes { - v.Name = scw.StringPtr(serverName + "-" + index) + v.Name = new(serverName + "-" + index) // Remove extra data for API validation. switch { diff --git a/internal/namespaces/instance/v1/custom_server_create_builder.go b/internal/namespaces/instance/v1/custom_server_create_builder.go index bb15013f18..6549d17ee3 100644 --- a/internal/namespaces/instance/v1/custom_server_create_builder.go +++ b/internal/namespaces/instance/v1/custom_server_create_builder.go @@ -194,7 +194,7 @@ func (sb *ServerBuilder) AddIP(ip string) (*ServerBuilder, error) { Type: instance.IPTypeRoutedIPv6, }} case validation.IsUUID(ip): - sb.createReq.PublicIP = scw.StringPtr(ip) + sb.createReq.PublicIP = new(ip) case net.ParseIP(ip) != nil: logger.Debugf("finding public IP UUID from address: %s", ip) res, err := sb.apiInstance.GetIP(&instance.GetIPRequest{ @@ -204,12 +204,12 @@ func (sb *ServerBuilder) AddIP(ip string) (*ServerBuilder, error) { if err != nil { // FIXME: isNotFoundError return sb, fmt.Errorf("%s does not belong to you", ip) } - sb.createReq.PublicIP = scw.StringPtr(res.IP.ID) + sb.createReq.PublicIP = new(res.IP.ID) case ip == "dynamic": - sb.createReq.DynamicIPRequired = scw.BoolPtr(true) + sb.createReq.DynamicIPRequired = new(true) case ip == "none": - sb.createReq.DynamicIPRequired = scw.BoolPtr(false) + sb.createReq.DynamicIPRequired = new(false) default: return sb, fmt.Errorf( `invalid IP "%s", should be either 'new', 'ipv4', 'ipv6', 'both', 'dynamic', 'none', an IP address ID or a reserved flexible IP address`, @@ -265,7 +265,12 @@ func (sb *ServerBuilder) ValidateVolumes() error { // Validate total local volume sizes. if sb.serverType != nil && sb.serverImage != nil { - if err := validateLocalVolumeSizes(volumes, sb.serverType, sb.createReq.CommercialType, sb.serverImage.RootVolume.Size); err != nil { + if err := validateLocalVolumeSizes( + volumes, + sb.serverType, + sb.createReq.CommercialType, + sb.serverImage.RootVolume.Size, + ); err != nil { return err } } else { @@ -314,7 +319,11 @@ func (sb *ServerBuilder) Validate() error { } if sb.serverType != nil && sb.serverImage != nil { - if err := validateImageServerTypeCompatibility(sb.serverImage, sb.serverType, sb.createReq.CommercialType); err != nil { + if err := validateImageServerTypeCompatibility( + sb.serverImage, + sb.serverType, + sb.createReq.CommercialType, + ); err != nil { return err } } else { @@ -341,14 +350,14 @@ func (sb *ServerBuilder) BuildVolumes() error { return fmt.Errorf("failed to build volume template: %w", err) } index := strconv.Itoa(i + 1) - volumeTemplate.Name = scw.StringPtr(sb.createReq.Name + "-" + index) + volumeTemplate.Name = new(sb.createReq.Name + "-" + index) volumes[index] = volumeTemplate } // Sanitize the volume map to respect API schemas sb.createReq.Volumes = volumes if sb.serverType != nil { - sb.createReq.Volumes = addDefaultVolumes(sb.serverType, sb.createReq.Volumes) + sb.createReq.Volumes = addDefaultVolumes(sb.createReq.Volumes) } return nil @@ -555,7 +564,7 @@ func NewVolumeBuilder(zone scw.Zone, flagV string) (*VolumeBuilder, error) { if err != nil { return nil, fmt.Errorf("invalid volume iops %s in %s volume", parts[2], flagV) } - vb.IOPS = scw.Uint32Ptr(uint32(iops)) + vb.IOPS = new(uint32(iops)) parts = parts[0:2] } @@ -573,13 +582,13 @@ func NewVolumeBuilder(zone scw.Zone, flagV string) (*VolumeBuilder, error) { } if validation.IsUUID(parts[1]) { - vb.SnapshotID = scw.StringPtr(parts[1]) + vb.SnapshotID = new(parts[1]) } else { size, err := humanize.ParseBytes(parts[1]) if err != nil { return nil, fmt.Errorf("invalid size format %s in %s volume", parts[1], flagV) } - vb.Size = scw.SizePtr(scw.Size(size)) + vb.Size = new(scw.Size(size)) } return vb, nil @@ -587,7 +596,7 @@ func NewVolumeBuilder(zone scw.Zone, flagV string) (*VolumeBuilder, error) { // UUID format. if len(parts) == 1 && validation.IsUUID(parts[0]) { - vb.VolumeID = scw.StringPtr(parts[0]) + vb.VolumeID = new(parts[0]) return vb, nil } diff --git a/internal/namespaces/instance/v1/custom_server_delete.go b/internal/namespaces/instance/v1/custom_server_delete.go index fe66217659..8fa832d065 100644 --- a/internal/namespaces/instance/v1/custom_server_delete.go +++ b/internal/namespaces/instance/v1/custom_server_delete.go @@ -101,7 +101,7 @@ func serverDeleteCommand() *core.Command { _, err := api.WaitForServer(&instance.WaitForServerRequest{ Zone: server.Zone, ServerID: server.ID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -131,7 +131,7 @@ func serverDeleteCommand() *core.Command { finalStateServer, err := api.WaitForServer(&instance.WaitForServerRequest{ Zone: deleteServerArgs.Zone, ServerID: deleteServerArgs.ServerID, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -143,7 +143,7 @@ func serverDeleteCommand() *core.Command { Zone: deleteServerArgs.Zone, ServerID: deleteServerArgs.ServerID, Action: instance.ServerActionPoweroff, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/namespaces/instance/v1/custom_snapshot.go b/internal/namespaces/instance/v1/custom_snapshot.go index e333416e15..79f1c9de52 100644 --- a/internal/namespaces/instance/v1/custom_snapshot.go +++ b/internal/namespaces/instance/v1/custom_snapshot.go @@ -7,7 +7,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" - "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -74,7 +73,7 @@ func snapshotCreateBuilder(c *core.Command) *core.Command { return api.WaitForSnapshot(&instance.WaitForSnapshotRequest{ SnapshotID: respI.(*instance.CreateSnapshotResponse).Snapshot.ID, Zone: argsI.(*customCreateSnapshotRequest).Zone, - Timeout: scw.TimeDurationPtr(serverActionTimeout), + Timeout: new(serverActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -159,7 +158,7 @@ func snapshotUpdateBuilder(c *core.Command) *core.Command { return api.WaitForSnapshot(&instance.WaitForSnapshotRequest{ SnapshotID: snapshot.ID, Zone: snapshot.Zone, - Timeout: scw.TimeDurationPtr(snapshotActionTimeout), + Timeout: new(snapshotActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/instance/v1/custom_ssh_config.go b/internal/namespaces/instance/v1/custom_ssh_config.go index b6043f9b18..6bb984051e 100644 --- a/internal/namespaces/instance/v1/custom_ssh_config.go +++ b/internal/namespaces/instance/v1/custom_ssh_config.go @@ -5,6 +5,7 @@ import ( "errors" "fmt" "reflect" + "slices" "strings" "github.com/scaleway/scaleway-cli/v2/core" @@ -28,13 +29,7 @@ type sshConfigServer struct { } func (s sshConfigServer) InPrivateNetwork(id string) bool { - for _, pnID := range s.PrivateNetworksID { - if pnID == id { - return true - } - } - - return false + return slices.Contains(s.PrivateNetworksID, id) } type sshConfigInstallRequest struct { @@ -119,7 +114,9 @@ Do you want the include statement to be added at the beginning of your file ?`, if errors.Is(err, sshconfig.ErrFileNotFound) { includePrompt += "\nFile was not found, it will be created" } else { - logger.Warningf("Failed to check default config file, skipping include prompt\n") + logger.Warningf( + "Failed to check default config file, skipping include prompt\n", + ) return &core.SuccessResult{ Message: configFileGeneratedMessage + " " + configFilePath, diff --git a/internal/namespaces/instance/v1/custom_ssh_key.go b/internal/namespaces/instance/v1/custom_ssh_key.go index 8ae37c2fbd..2f0f247ef7 100644 --- a/internal/namespaces/instance/v1/custom_ssh_key.go +++ b/internal/namespaces/instance/v1/custom_ssh_key.go @@ -222,7 +222,10 @@ Keep in mind that SSH keys are scoped by project.`, if err != nil { _, _ = interactive.Println("Failed:", err) } else { - _, _ = interactive.Println("Failed: ssh command failed with exit code", exitCode) + _, _ = interactive.Println( + "Failed: ssh command failed with exit code", + exitCode, + ) } } else { _, _ = interactive.Println("Success") diff --git a/internal/namespaces/instance/v1/custom_volume.go b/internal/namespaces/instance/v1/custom_volume.go index 52fc6f7eef..bc7f104c27 100644 --- a/internal/namespaces/instance/v1/custom_volume.go +++ b/internal/namespaces/instance/v1/custom_volume.go @@ -127,7 +127,7 @@ func volumeWaitCommand() *core.Command { WaitForVolume(&instance.WaitForVolumeRequest{ Zone: args.Zone, VolumeID: args.VolumeID, - Timeout: scw.TimeDurationPtr(args.Timeout), + Timeout: new(args.Timeout), RetryInterval: core.DefaultRetryInterval, }) }, diff --git a/internal/namespaces/instance/v1/testdata/test-attach-filesystem-attach-filesystem.golden b/internal/namespaces/instance/v1/testdata/test-attach-filesystem-attach-filesystem.golden index c8d694fea6..81c9572740 100644 --- a/internal/namespaces/instance/v1/testdata/test-attach-filesystem-attach-filesystem.golden +++ b/internal/namespaces/instance/v1/testdata/test-attach-filesystem-attach-filesystem.golden @@ -128,6 +128,7 @@ Server.EndOfService false "state": "available" } ], - "end_of_service": false + "end_of_service": false, + "dns": null } } diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.cassette.yaml index 6950b3254f..5f377bd2aa 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.cassette.yaml @@ -1,936 +1,936 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - page: - - "1" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 40275 - body: "{\"servers\": {\"COPARM1-16C-64G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 252.14, \"hourly_price\": 0.3454, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 671088640, \"end_of_service\": false}, \"COPARM1-2C-8G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 31.1, \"hourly_price\": 0.0426, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 83886080, \"end_of_service\": false}, \"COPARM1-32C-128G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 506.26, \"hourly_price\": 0.6935, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 1342177280, \"end_of_service\": false}, \"COPARM1-4C-16G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 62.56, \"hourly_price\": 0.0857, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 167772160, \"end_of_service\": false}, \"COPARM1-8C-32G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 125.85, \"hourly_price\": 0.1724, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 335544320, \"end_of_service\": false}, \"DEV1-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 80000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 36.1496, \"hourly_price\": 0.04952, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 209715200, \"end_of_service\": false}, \"DEV1-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 3, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 40000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 18.6588, \"hourly_price\": 0.02556, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 300000000, \"sum_internet_bandwidth\": 300000000, \"interfaces\": [{\"internal_bandwidth\": 300000000, \"internet_bandwidth\": 300000000}]}, \"block_bandwidth\": 157286400, \"end_of_service\": false}, \"DEV1-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 2147483648, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 20000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 9.9864, \"hourly_price\": 0.01368, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 104857600, \"end_of_service\": false}, \"DEV1-XL\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 12884901888, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 120000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 53.3484, \"hourly_price\": 0.07308, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 500000000, \"sum_internet_bandwidth\": 500000000, \"interfaces\": [{\"internal_bandwidth\": 500000000, \"internet_bandwidth\": 500000000}]}, \"block_bandwidth\": 262144000, \"end_of_service\": false}, \"GP1-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 600000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 576.262, \"hourly_price\": 0.7894, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 1073741824, \"end_of_service\": false}, \"GP1-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 600000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 296.672, \"hourly_price\": 0.4064, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1500000000, \"sum_internet_bandwidth\": 1500000000, \"interfaces\": [{\"internal_bandwidth\": 1500000000, \"internet_bandwidth\": 1500000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"GP1-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 300000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 149.066, \"hourly_price\": 0.2042, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 524288000, \"end_of_service\": false}, \"GP1-XL\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 274877906944, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 600000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1220.122, \"hourly_price\": 1.6714, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2147483648, \"end_of_service\": false}, \"GP1-XS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 150000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 74.168, \"hourly_price\": 0.1016, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 500000000, \"sum_internet_bandwidth\": 500000000, \"interfaces\": [{\"internal_bandwidth\": 500000000, \"internet_bandwidth\": 500000000}]}, \"block_bandwidth\": 314572800, \"end_of_service\": false}, \"GPU-3070-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 17179869184, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"RTX-3070\", \"gpu_memory\": 8589934592}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 715.4, \"hourly_price\": 0.98, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 2500000000, \"sum_internet_bandwidth\": 2500000000, \"interfaces\": [{\"internal_bandwidth\": 2500000000, \"internet_bandwidth\": 2500000000}]}, \"block_bandwidth\": 1048576000, \"end_of_service\": false}, \"H100-1-80G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 24, \"ram\": 257698037760, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-PCIe\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 3000000000000, \"monthly_price\": 1992.9, \"hourly_price\": 2.73, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2097152000, \"end_of_service\": false}, \"H100-1-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 24, \"ram\": 257698037760, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-PCIe\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 3000000000000, \"monthly_price\": 3066.0, \"hourly_price\": 4.2, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2097152000, \"end_of_service\": false}, \"H100-2-80G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 515396075520, \"gpu\": 2, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-PCIe\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 6000000000000, \"monthly_price\": 3985.8, \"hourly_price\": 5.46, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 4194304000, \"end_of_service\": false}, \"H100-2-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 515396075520, \"gpu\": 2, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-PCIe\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 6000000000000, \"monthly_price\": 6132.0, \"hourly_price\": 8.4, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 4194304000, \"end_of_service\": false}, \"H100-SXM-2-80G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 257698037760, \"gpu\": 2, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-SXM\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 3200000000000, \"monthly_price\": 4393.14, \"hourly_price\": 6.018, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 5242880000, \"end_of_service\": false}, \"H100-SXM-4-80G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 515396075520, \"gpu\": 4, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-SXM\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 6400000000000, \"monthly_price\": 8475.3, \"hourly_price\": 11.61, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 5242880000, \"end_of_service\": false}, \"H100-SXM-8-80G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 128, \"ram\": 1030792151040, \"gpu\": 8, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"H100-SXM\", \"gpu_memory\": 85899345920}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 12800000000000, \"monthly_price\": 16810.44, \"hourly_price\": 23.028, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 5242880000, \"end_of_service\": false}, \"L4-1-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 51539607552, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 547.5, \"hourly_price\": 0.75, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 2500000000, \"sum_internet_bandwidth\": 2500000000, \"interfaces\": [{\"internal_bandwidth\": 2500000000, \"internet_bandwidth\": 2500000000}]}, \"block_bandwidth\": 1048576000, \"end_of_service\": false}, \"L4-2-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 103079215104, \"gpu\": 2, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1095.0, \"hourly_price\": 1.5, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 1572864000, \"end_of_service\": false}, \"L4-4-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 206158430208, \"gpu\": 4, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 2190.0, \"hourly_price\": 3.0, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2621440000, \"end_of_service\": false}, \"L4-8-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 412316860416, \"gpu\": 8, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 4380.0, \"hourly_price\": 6.0, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 5242880000, \"end_of_service\": false}, \"L40S-1-48G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 103079215104, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L40S\", \"gpu_memory\": 51539607552}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 1600000000000, \"monthly_price\": 1022.0, \"hourly_price\": 1.4, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 2500000000, \"sum_internet_bandwidth\": 2500000000, \"interfaces\": [{\"internal_bandwidth\": 2500000000, \"internet_bandwidth\": 2500000000}]}, \"block_bandwidth\": 1048576000, \"end_of_service\": false}, \"L40S-2-48G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 206158430208, \"gpu\": 2, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L40S\", \"gpu_memory\": 51539607552}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 3200000000000, \"monthly_price\": 2044.0, \"hourly_price\": 2.8, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 1572864000, \"end_of_service\": false}, \"L40S-4-48G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 412316860416, \"gpu\": 4, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L40S\", \"gpu_memory\": 51539607552}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 6400000000000, \"monthly_price\": 4088.0, \"hourly_price\": 5.6, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2621440000, \"end_of_service\": false}, \"L40S-8-48G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 824633720832, \"gpu\": 8, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L40S\", \"gpu_memory\": 51539607552}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": 12800000000000, \"monthly_price\": 8176.0, \"hourly_price\": 11.2, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 5242880000, \"end_of_service\": false}, \"PLAY2-MICRO\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 39.42, \"hourly_price\": 0.054, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 167772160, \"end_of_service\": false}, \"PLAY2-NANO\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 19.71, \"hourly_price\": 0.027, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 83886080, \"end_of_service\": false}, \"PLAY2-PICO\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 1, \"ram\": 2147483648, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 10.22, \"hourly_price\": 0.014, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 100000000, \"sum_internet_bandwidth\": 100000000, \"interfaces\": [{\"internal_bandwidth\": 100000000, \"internet_bandwidth\": 100000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": false}, \"POP2-16C-64G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 430.7, \"hourly_price\": 0.59, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-16C-64G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1063.391, \"hourly_price\": 1.4567, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-2C-8G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 53.66, \"hourly_price\": 0.0735, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-2C-8G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 133.079, \"hourly_price\": 0.1823, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-32C-128G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 861.4, \"hourly_price\": 1.18, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-32C-128G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 2126.709, \"hourly_price\": 2.9133, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-48C-192G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 206158430208, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1274.4, \"hourly_price\": 1.77, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 12}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 9600000000, \"sum_internet_bandwidth\": 9600000000, \"interfaces\": [{\"internal_bandwidth\": 9600000000, \"internet_bandwidth\": 9600000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-4C-16G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 107.31, \"hourly_price\": 0.147, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-4C-16G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 265.501, \"hourly_price\": 0.3637, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-64C-256G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 274877906944, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1715.5, \"hourly_price\": 2.35, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 12800000000, \"sum_internet_bandwidth\": 12800000000, \"interfaces\": [{\"internal_bandwidth\": 12800000000, \"internet_bandwidth\": 12800000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-8C-32G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 211.7, \"hourly_price\": 0.29, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-8C-32G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 528.009, \"hourly_price\": 0.7233, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-HC-16C-32G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 310.69, \"hourly_price\": 0.4256, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-HC-2C-4G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 38.84, \"hourly_price\": 0.0532, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-HC-32C-64G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 621.38, \"hourly_price\": 0.8512, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HC-48C-96G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 103079215104, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 914.4, \"hourly_price\": 1.27, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 12}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 9600000000, \"sum_internet_bandwidth\": 9600000000, \"interfaces\": [{\"internal_bandwidth\": 9600000000, \"internet_bandwidth\": 9600000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HC-4C-8G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 77.67, \"hourly_price\": 0.1064, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}}}" - headers: - Content-Length: - - "40275" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:01 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 539e8d30-5600-4790-8a7c-10b4ff53bd52 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.607747ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - page: - - "2" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 14060 - body: "{\"servers\": {\"POP2-HC-64C-128G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1242.75, \"hourly_price\": 1.7024, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 12800000000, \"sum_internet_bandwidth\": 12800000000, \"interfaces\": [{\"internal_bandwidth\": 12800000000, \"internet_bandwidth\": 12800000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HC-8C-16G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 155.34, \"hourly_price\": 0.2128, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-HM-16C-128G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 601.52, \"hourly_price\": 0.824, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-HM-2C-16G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 75.19, \"hourly_price\": 0.103, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-HM-32C-256G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 274877906944, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1203.04, \"hourly_price\": 1.648, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HM-48C-384G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 412316860416, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1778.4, \"hourly_price\": 2.47, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 12}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 9600000000, \"sum_internet_bandwidth\": 9600000000, \"interfaces\": [{\"internal_bandwidth\": 9600000000, \"internet_bandwidth\": 9600000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HM-4C-32G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 150.38, \"hourly_price\": 0.206, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-HM-64C-512G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 549755813888, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 2406.08, \"hourly_price\": 3.296, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 12800000000, \"sum_internet_bandwidth\": 12800000000, \"interfaces\": [{\"internal_bandwidth\": 12800000000, \"internet_bandwidth\": 12800000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HM-8C-64G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 300.76, \"hourly_price\": 0.412, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-HN-10\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 530.29, \"hourly_price\": 0.7264, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-HN-3\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 186.49, \"hourly_price\": 0.2554, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3000000000, \"sum_internet_bandwidth\": 3000000000, \"interfaces\": [{\"internal_bandwidth\": 3000000000, \"internet_bandwidth\": 3000000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-HN-5\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 330.29, \"hourly_price\": 0.4524, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"PRO2-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 640.21, \"hourly_price\": 0.877, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6000000000, \"sum_internet_bandwidth\": 6000000000, \"interfaces\": [{\"internal_bandwidth\": 6000000000, \"internet_bandwidth\": 6000000000}]}, \"block_bandwidth\": 2097152000, \"end_of_service\": false}, \"PRO2-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 319.74, \"hourly_price\": 0.438, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3000000000, \"sum_internet_bandwidth\": 3000000000, \"interfaces\": [{\"internal_bandwidth\": 3000000000, \"internet_bandwidth\": 3000000000}]}, \"block_bandwidth\": 1048576000, \"end_of_service\": false}, \"PRO2-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 159.87, \"hourly_price\": 0.219, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1500000000, \"sum_internet_bandwidth\": 1500000000, \"interfaces\": [{\"internal_bandwidth\": 1500000000, \"internet_bandwidth\": 1500000000}]}, \"block_bandwidth\": 524288000, \"end_of_service\": false}, \"PRO2-XS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 80.3, \"hourly_price\": 0.11, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 700000000, \"sum_internet_bandwidth\": 700000000, \"interfaces\": [{\"internal_bandwidth\": 700000000, \"internet_bandwidth\": 700000000}]}, \"block_bandwidth\": 262144000, \"end_of_service\": false}, \"PRO2-XXS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 40.15, \"hourly_price\": 0.055, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 350000000, \"sum_internet_bandwidth\": 350000000, \"interfaces\": [{\"internal_bandwidth\": 350000000, \"internet_bandwidth\": 350000000}]}, \"block_bandwidth\": 131072000, \"end_of_service\": false}, \"RENDER-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 10, \"ram\": 45097156608, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"P100\", \"gpu_memory\": 17179869184}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 400000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 907.098, \"hourly_price\": 1.2426, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 2000000000, \"sum_internet_bandwidth\": 2000000000, \"interfaces\": [{\"internal_bandwidth\": 2000000000, \"internet_bandwidth\": 2000000000}]}, \"block_bandwidth\": 2147483648, \"end_of_service\": false}}}" - headers: - Content-Length: - - "14060" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:02 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 973f4c64-a599-44bf-9307-e10a2893f9b7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.510482ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - image_label: - - ubuntu_jammy_gpu_os_12 - order_by: - - type_asc - type: - - instance_sbs - zone: - - fr-par-2 - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy_gpu_os_12&order_by=type_asc&type=instance_sbs&zone=fr-par-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 460 - body: "{\"local_images\":[{\"id\":\"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"arch\":\"x86_64\", \"zone\":\"fr-par-2\", \"compatible_commercial_types\":[\"L4-1-24G\", \"L4-2-24G\", \"L4-4-24G\", \"L4-8-24G\", \"L40S-1-48G\", \"L40S-2-48G\", \"L40S-4-48G\", \"L40S-8-48G\", \"RENDER-S\", \"GPU-3070-S\", \"H100-1-M\", \"H100-2-M\", \"H100-1-80G\", \"H100-2-80G\", \"H100-SXM-1-80G\", \"H100-SXM-2-80G\", \"H100-SXM-4-80G\", \"H100-SXM-8-80G\"], \"label\":\"ubuntu_jammy_gpu_os_12\", \"type\":\"instance_sbs\"}], \"total_count\":1}" - headers: - Content-Length: - - "460" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6b8840a8-c865-4904-876c-786f04e53053 - status: 200 OK - code: 200 - duration: 43.53451ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/images/f3431c05-e917-4bf0-b9db-9d4c14716a5e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 593 - body: "{\"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}}" - headers: - Content-Length: - - "593" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a5d0e920-cd99-4efb-a3bf-edbf0b7200c3 - status: 200 OK - code: 200 - duration: 64.170065ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - host: api.scaleway.com - body: "{\"project\":\"fa1e3217-dc80-42ac-85c3-3f034b78b552\",\"type\":\"routed_ipv4\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 366 - body: "{\"ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"prefix\": null, \"reverse\": null, \"server\": null, \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"zone\": \"fr-par-2\", \"type\": \"routed_ipv4\", \"state\": \"detached\", \"tags\": [], \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}}" - headers: - Content-Length: - - "366" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/ips/ac88a6d3-3ad8-4c51-8b09-3036c12add9b - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0204adaa-1617-407a-810b-474f8fdde9ad - status: 201 Created - code: 201 - duration: 424.137542ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 380 - host: api.scaleway.com - body: "{\"name\":\"cli-srv-laughing-austin\",\"dynamic_ip_required\":true,\"commercial_type\":\"H100-1-80G\",\"image\":\"f3431c05-e917-4bf0-b9db-9d4c14716a5e\",\"volumes\":{\"1\":{\"name\":\"cli-srv-laughing-austin-1\",\"size\":3000000000000,\"volume_type\":\"scratch\"}},\"enable_ipv6\":false,\"public_ips\":[\"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\"],\"boot_type\":\"local\",\"project\":\"fa1e3217-dc80-42ac-85c3-3f034b78b552\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2801 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"poweron\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2801" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 54fbfe85-5cee-4e89-8d02-3d50173549b4 - status: 201 Created - code: 201 - duration: 782.248445ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - host: api.scaleway.com - body: "{\"action\":\"poweron\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 357 - body: "{\"task\": {\"id\": \"912b89c5-09d8-4055-921e-c8efd67802d6\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/83d3a1fe-76a4-45bc-af33-95c060618547/action\", \"href_result\": \"/servers/83d3a1fe-76a4-45bc-af33-95c060618547\", \"started_at\": \"2025-11-04T10:20:03.610210+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-2\"}}" - headers: - Content-Length: - - "357" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/912b89c5-09d8-4055-921e-c8efd67802d6 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b3213e46-806d-475b-95e5-5baafca7a1e1 - status: 202 Accepted - code: 202 - duration: 326.798018ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2823 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:03.358440+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2823" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 14ae6635-2dc5-41e9-a2b9-7ef217f1aa38 - status: 200 OK - code: 200 - duration: 422.857998ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2823 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:03.358440+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2823" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 952a9dbf-bf4b-43a9-868e-e54f81b73741 - status: 200 OK - code: 200 - duration: 103.650084ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2925 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:03.358440+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2925" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ff17dd51-1aa6-47ed-bb20-8e6931e9100c - status: 200 OK - code: 200 - duration: 118.643027ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2925 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:03.358440+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2925" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 659139c2-f782-41a8-abab-5e44f28a2a37 - status: 200 OK - code: 200 - duration: 117.25067ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2925 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:03.358440+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2925" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - dda78962-0417-4188-bd92-ae8ab57215eb - status: 200 OK - code: 200 - duration: 114.904216ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2956 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:19.683549+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2956" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 853c285b-52e7-42d4-8966-c8c66595a860 - status: 200 OK - code: 200 - duration: 104.939297ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - host: api.scaleway.com - body: "{\"action\":\"poweroff\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 352 - body: "{\"task\": {\"id\": \"2db9235b-7256-4256-9433-35f81d03a22a\", \"description\": \"server_poweroff\", \"status\": \"pending\", \"href_from\": \"/servers/83d3a1fe-76a4-45bc-af33-95c060618547/action\", \"href_result\": \"/servers/83d3a1fe-76a4-45bc-af33-95c060618547\", \"started_at\": \"2025-11-04T10:20:24.848672+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-2\"}}" - headers: - Content-Length: - - "352" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:24 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/2db9235b-7256-4256-9433-35f81d03a22a - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c94cbb5f-cc12-4c62-b84f-b10707e7d946 - status: 202 Accepted - code: 202 - duration: 215.226845ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2916 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"stopping\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2916" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4bd2ca4a-8815-4384-9146-244f69b0be1e - status: 200 OK - code: 200 - duration: 101.186283ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2916 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"stopping\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2916" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 28d07030-b508-4dd3-97a5-d76b9c157668 - status: 200 OK - code: 200 - duration: 122.24046ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2916 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"stopping\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2916" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 40811ebc-da23-48fc-a509-014864d747a8 - status: 200 OK - code: 200 - duration: 118.155468ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2916 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"stopping\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2916" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ad967363-f7a3-4f60-aeae-0c9be43656da - status: 200 OK - code: 200 - duration: 110.697558ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2914 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"booted\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2914" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 36317e36-6d47-46e7-8089-07e504519cc5 - status: 200 OK - code: 200 - duration: 130.824985ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2914 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"booted\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2914" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 831f2ec9-8ac4-44b7-b866-1c1c8c14f8a7 - status: 200 OK - code: 200 - duration: 121.570889ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2914 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"booted\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2914" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:20:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ce13af47-df10-4d0b-b027-7a313c8ec9bc - status: 200 OK - code: 200 - duration: 101.628971ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2914 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"booted\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2914" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0e21b16c-30bb-460a-87d4-ce429d9a20d1 - status: 200 OK - code: 200 - duration: 101.640417ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2914 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"booted\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:24.699337+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-2\", \"platform_id\": \"30\", \"cluster_id\": \"38\", \"hypervisor_id\": \"501\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2914" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ee0f03a4-f6ff-418f-81b7-777a7ebfa90f - status: 200 OK - code: 200 - duration: 110.326315ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2801 - body: "{\"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\", \"arch\": \"x86_64\", \"commercial_type\": \"H100-1-80G\", \"boot_type\": \"local\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"hostname\": \"cli-srv-laughing-austin\", \"image\": {\"id\": \"f3431c05-e917-4bf0-b9db-9d4c14716a5e\", \"name\": \"Ubuntu Jammy GPU OS 12 passthrough\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"43d3942a-890e-4bae-b657-a776667db001\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-20T14:33:32.134908+00:00\", \"modification_date\": \"2025-10-20T14:33:32.134908+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-2\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"state\": \"available\", \"zone\": \"fr-par-2\"}, \"1\": {\"boot\": false, \"id\": \"48ef0622-d26b-4a6e-87ce-21d5b33738f2\", \"name\": \"cli-srv-laughing-austin-1\", \"volume_type\": \"scratch\", \"organization\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"project\": \"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"server\": {\"id\": \"83d3a1fe-76a4-45bc-af33-95c060618547\", \"name\": \"cli-srv-laughing-austin\"}, \"size\": 3000000000000, \"state\": \"available\", \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:20:02.706491+00:00\", \"tags\": [], \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}, \"public_ips\": [{\"id\": \"ac88a6d3-3ad8-4c51-8b09-3036c12add9b\", \"address\": \"51.159.131.214\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"60083e2c-9816-4a84-b14a-d346dd4d39ee\"}], \"mac_address\": \"de:00:00:8f:cf:d9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-04T10:20:02.706491+00:00\", \"modification_date\": \"2025-11-04T10:21:08.979000+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"22961510-2391-4fc7-83bd-d4c9d2d5c7fd\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"poweron\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "2801" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9d7f36fc-a35b-4540-881f-d9cb95f7e37c - status: 200 OK - code: 200 - duration: 119.680534ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/83d3a1fe-76a4-45bc-af33-95c060618547 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 48c29f32-7a46-4652-8b5f-5cf59c4d873c - status: 204 No Content - code: 204 - duration: 342.910282ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/ips/ac88a6d3-3ad8-4c51-8b09-3036c12add9b - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f3ed69a6-594d-4b88-a162-33550d520ca3 - status: 204 No Content - code: 204 - duration: 435.995392ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0ffc426a-21b8-4a9a-9100-a3d3f8478bf4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 504 - body: "{\"id\":\"0ffc426a-21b8-4a9a-9100-a3d3f8478bf4\", \"name\":\"Ubuntu Jammy GPU OS 12 passthrough_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"fa1e3217-dc80-42ac-85c3-3f034b78b552\", \"created_at\":\"2025-11-04T10:20:02.794503Z\", \"updated_at\":\"2025-11-04T10:21:11.451949Z\", \"references\":[], \"parent_snapshot_id\":\"43d3942a-890e-4bae-b657-a776667db001\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-11-04T10:21:11.451949Z\", \"zone\":\"fr-par-2\"}" - headers: - Content-Length: - - "504" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - dbe17821-72ee-409c-bdd9-de2fa91b323f - status: 200 OK - code: 200 - duration: 83.429059ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0ffc426a-21b8-4a9a-9100-a3d3f8478bf4 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 10:21:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a0901707-cb5d-4e89-ae13-bcea76b3834b - status: 204 No Content - code: 204 - duration: 118.238152ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + page: + - "1" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 42203 + body: '{"servers": {"B300-SXM-8-288G": {"alt_names": [], "arch": "x86_64", "ncpus": 224, "ram": 4123168604160, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "B300-SXM", "gpu_memory": 309237645312}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 24000000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 43800.0, "hourly_price": 60.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "GPU-3070-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "RTX-3070", "gpu_memory": 8589934592}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 715.4, "hourly_price": 0.98, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 3066.0, "hourly_price": 4.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 6132.0, "hourly_price": 8.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-SXM-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 257698037760, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 4393.14, "hourly_price": 6.018, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-4-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 515396075520, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 8475.3, "hourly_price": 11.61, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-8-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 128, "ram": 1030792151040, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 16810.44, "hourly_price": 23.028, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "scratch_storage_max_volumes_count": 1, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}' + headers: + Content-Length: + - "42203" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:21 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d2c1aa11-f6b1-4202-8b52-1d609eba10dc + X-Total-Count: + - "77" + status: 200 OK + code: 200 + duration: 202.064375ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + page: + - "2" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 22045 + body: '{"servers": {"POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}}}' + headers: + Content-Length: + - "22045" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:21 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e096b01a-f8d6-4d1b-98cd-9bd756cd3d21 + X-Total-Count: + - "77" + status: 200 OK + code: 200 + duration: 45.911458ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_jammy_gpu_os_12 + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-2 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy_gpu_os_12&order_by=type_asc&type=instance_sbs&zone=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 536 + body: '{"local_images":[{"id":"f3431c05-e917-4bf0-b9db-9d4c14716a5e", "arch":"x86_64", "zone":"fr-par-2", "compatible_commercial_types":["L4-1-24G", "L4-2-24G", "L4-4-24G", "L4-8-24G", "L40S-1-48G", "L40S-2-48G", "L40S-4-48G", "L40S-8-48G", "RENDER-S", "GPU-3070-S", "H100-1-M", "H100-2-M", "H100-1-80G", "H100-2-80G", "H100-SXM-1-80G", "H100-SXM-2-80G", "H100-SXM-4-80G", "H100-SXM-8-80G", "B300-SXM-1-288G", "B300-SXM-2-288G", "B300-SXM-4-288G", "B300-SXM-8-288G"], "label":"ubuntu_jammy_gpu_os_12", "type":"instance_sbs"}], "total_count":1}' + headers: + Content-Length: + - "536" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6cf0632b-91ad-4f68-9c02-1a127296196d + status: 200 OK + code: 200 + duration: 49.71275ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/images/f3431c05-e917-4bf0-b9db-9d4c14716a5e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 593 + body: '{"image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}}' + headers: + Content-Length: + - "593" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fd60d642-318c-4b24-9305-3d0946d93e9f + status: 200 OK + code: 200 + duration: 54.909542ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: '{"project":"951df375-e094-4d26-97c1-ba548eeb9c42","type":"routed_ipv4"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + body: '{"ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "prefix": null, "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-2", "type": "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}}' + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/ips/21feb3e0-211e-49af-b197-2740e9241662 + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - df786bf1-c23f-4a6b-b25a-1941d4389e64 + status: 201 Created + code: 201 + duration: 463.46775ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 283 + host: api.scaleway.com + body: '{"name":"cli-srv-flamboyant-mayer","dynamic_ip_required":true,"commercial_type":"H100-1-80G","image":"f3431c05-e917-4bf0-b9db-9d4c14716a5e","enable_ipv6":false,"public_ips":["21feb3e0-211e-49af-b197-2740e9241662"],"boot_type":"local","project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2894 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2894" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6f07f30e-e1e0-4a96-aebf-a09b7d7578d8 + status: 201 Created + code: 201 + duration: 736.31225ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: '{"action":"poweron"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: '{"task": {"id": "b432199e-f987-47c4-ad9d-7ec2b5f06cae", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb/action", "href_result": "/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "started_at": "2026-01-14T10:24:23.157701+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-2"}}' + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:23 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/b432199e-f987-47c4-ad9d-7ec2b5f06cae + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ab938a2b-0e24-4a1d-8269-1e2b69f2894a + status: 202 Accepted + code: 202 + duration: 247.061791ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2916 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.979142+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2916" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e25f2e78-1ddf-497b-9bfe-4474f1003ff9 + status: 200 OK + code: 200 + duration: 135.984084ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2916 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.979142+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2916" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 02073732-d341-4e63-9b82-5eaa05a5551e + status: 200 OK + code: 200 + duration: 123.330458ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3018 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.979142+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3018" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fac3d6bd-373d-4b56-8737-11036cf0834f + status: 200 OK + code: 200 + duration: 262.235125ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3018 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.979142+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3018" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - faf7d874-0556-47af-8505-6995acf10bf9 + status: 200 OK + code: 200 + duration: 120.114666ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3018 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.979142+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3018" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a969cebf-c5b0-4d92-8a30-fc4bffd1a40d + status: 200 OK + code: 200 + duration: 135.84875ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3049 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:39.988061+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3049" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f4a73089-9f54-4e2d-b740-1aed0c7d98ae + status: 200 OK + code: 200 + duration: 121.530334ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + host: api.scaleway.com + body: '{"action":"poweroff"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: '{"task": {"id": "275a2cb5-2d3c-40a7-9385-adcc89aec3b2", "description": "server_poweroff", "status": "pending", "href_from": "/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb/action", "href_result": "/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "started_at": "2026-01-14T10:24:44.290069+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-2"}}' + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/275a2cb5-2d3c-40a7-9385-adcc89aec3b2 + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2755ede3-620f-4f27-9df9-7ca0db7e4872 + status: 202 Accepted + code: 202 + duration: 204.646583ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3009 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3009" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fb982eb0-ebdd-4133-9b22-0f4c6c29d89c + status: 200 OK + code: 200 + duration: 112.066917ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3009 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3009" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d625ee2f-9bef-407c-b74b-704290e17793 + status: 200 OK + code: 200 + duration: 107.030041ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3009 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3009" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 90cbef32-a5dc-4320-9e00-311d180aa4ab + status: 200 OK + code: 200 + duration: 113.735083ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3009 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3009" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:24:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5482f904-241b-45b0-87ba-c98ab767553d + status: 200 OK + code: 200 + duration: 107.243459ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3007 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "booted", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3007" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 92ae5e2b-dc9b-4cdd-8da7-dcb01f2f7581 + status: 200 OK + code: 200 + duration: 136.26125ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3007 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "booted", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3007" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 292bc1b3-3da6-4535-8970-25978e292309 + status: 200 OK + code: 200 + duration: 114.287958ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3007 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "booted", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3007" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e9d5ee33-aa2a-4734-bc17-968d4bd5b127 + status: 200 OK + code: 200 + duration: 97.559166ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3007 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "booted", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3007" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 32e43c57-f76e-4c4a-a005-03b9d6f5cffe + status: 200 OK + code: 200 + duration: 96.159625ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3007 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "booted", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:44.141332+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "38", "hypervisor_id": "301", "node_id": "1"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3007" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a2bc5a8f-b642-445b-907e-38709ea1d7fd + status: 200 OK + code: 200 + duration: 113.654792ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2894 + body: '{"server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer", "arch": "x86_64", "commercial_type": "H100-1-80G", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "43d3942a-890e-4bae-b657-a776667db001", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-10-20T14:33:32.134908+00:00", "modification_date": "2025-10-20T14:33:32.134908+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "state": "available", "zone": "fr-par-2"}, "1": {"boot": false, "id": "e0212979-0063-472e-b0ae-4d8416336324", "name": "autogenerated scratch volume", "volume_type": "scratch", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", "name": "cli-srv-flamboyant-mayer"}, "size": 3000000000000, "state": "available", "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:24:22.263340+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}, "public_ips": [{"id": "21feb3e0-211e-49af-b197-2740e9241662", "address": "51.159.166.9", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662"}], "mac_address": "de:00:00:9d:a3:a3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-14T10:24:22.263340+00:00", "modification_date": "2026-01-14T10:25:29.122641+00:00", "bootscript": null, "security_group": {"id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false, "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2894" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9fbfc49f-6e1d-4225-b449-7d935f1af96e + status: 200 OK + code: 200 + duration: 491.879042ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 72ad3366-727d-488e-bf50-00264baae6f6 + status: 204 No Content + code: 204 + duration: 496.337834ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/ips/21feb3e0-211e-49af-b197-2740e9241662 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4b74b4e8-87ef-491a-bcb6-9947e16089e7 + status: 204 No Content + code: 204 + duration: 234.322625ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/4205ef3c-83ca-4664-90f1-f64ec2484852 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: '{"id":"4205ef3c-83ca-4664-90f1-f64ec2484852", "name":"Ubuntu Jammy GPU OS 12 passthrough_sbs_volume_0", "type":"sbs_5k", "size":20000000000, "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2026-01-14T10:24:22.397533Z", "updated_at":"2026-01-14T10:25:31.214650Z", "references":[], "parent_snapshot_id":"43d3942a-890e-4bae-b657-a776667db001", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-01-14T10:25:31.214650Z", "zone":"fr-par-2"}' + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 65e42ab3-c000-403e-a5e8-d56e25fc9bb7 + status: 200 OK + code: 200 + duration: 53.316041ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.5; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/4205ef3c-83ca-4664-90f1-f64ec2484852 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Wed, 14 Jan 2026 10:25:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ecb272b7-989c-463a-91c5-f20395e1695b + status: 204 No Content + code: 204 + duration: 77.317583ms diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.golden b/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.golden index 98482ffb0d..9c3db7c16f 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-scratch-storage-default-scratch-storage.golden @@ -1,9 +1,9 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 83d3a1fe-76a4-45bc-af33-95c060618547 -Name cli-srv-laughing-austin -Organization fa1e3217-dc80-42ac-85c3-3f034b78b552 -Project fa1e3217-dc80-42ac-85c3-3f034b78b552 +ID 0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb +Name cli-srv-flamboyant-mayer +Organization 951df375-e094-4d26-97c1-ba548eeb9c42 +Project 951df375-e094-4d26-97c1-ba548eeb9c42 AllowedActions.0 poweron AllowedActions.1 backup CommercialType H100-1-80G @@ -11,7 +11,7 @@ CreationDate few seconds ago DynamicIPRequired true RoutedIPEnabled true EnableIPv6 false -Hostname cli-srv-laughing-austin +Hostname cli-srv-flamboyant-mayer Image.ID f3431c05-e917-4bf0-b9db-9d4c14716a5e Image.Name Ubuntu Jammy GPU OS 12 passthrough Image.Arch x86_64 @@ -26,58 +26,59 @@ Image.State available Image.Project 51b656e3-4865-41e8-adbc-0c45bdd780db Image.Zone fr-par-2 Protected false -PublicIP.ID ac88a6d3-3ad8-4c51-8b09-3036c12add9b -PublicIP.Address 51.159.131.214 +PublicIP.ID 21feb3e0-211e-49af-b197-2740e9241662 +PublicIP.Address 51.159.166.9 PublicIP.Gateway 62.210.0.1 PublicIP.Netmask 32 PublicIP.Family inet PublicIP.Dynamic false PublicIP.ProvisioningMode dhcp -PublicIP.IpamID 60083e2c-9816-4a84-b14a-d346dd4d39ee +PublicIP.IpamID 21feb3e0-211e-49af-b197-2740e9241662 PublicIP.State attached -PublicIPs.0.ID ac88a6d3-3ad8-4c51-8b09-3036c12add9b -PublicIPs.0.Address 51.159.131.214 +PublicIPs.0.ID 21feb3e0-211e-49af-b197-2740e9241662 +PublicIPs.0.Address 51.159.166.9 PublicIPs.0.Gateway 62.210.0.1 PublicIPs.0.Netmask 32 PublicIPs.0.Family inet PublicIPs.0.Dynamic false PublicIPs.0.ProvisioningMode dhcp -PublicIPs.0.IpamID 60083e2c-9816-4a84-b14a-d346dd4d39ee +PublicIPs.0.IpamID 21feb3e0-211e-49af-b197-2740e9241662 PublicIPs.0.State attached -MacAddress de:00:00:8f:cf:d9 +MacAddress de:00:00:9d:a3:a3 ModificationDate few seconds ago State archived BootType local -Volumes.0.ID 0ffc426a-21b8-4a9a-9100-a3d3f8478bf4 +Volumes.0.ID 4205ef3c-83ca-4664-90f1-f64ec2484852 Volumes.0.VolumeType sbs_volume Volumes.0.State available Volumes.0.Boot false Volumes.0.Zone fr-par-2 -Volumes.1.ID 48ef0622-d26b-4a6e-87ce-21d5b33738f2 -Volumes.1.Name cli-srv-laughing-austin-1 -Volumes.1.Organization fa1e3217-dc80-42ac-85c3-3f034b78b552 -Volumes.1.Server.ID 83d3a1fe-76a4-45bc-af33-95c060618547 -Volumes.1.Server.Name cli-srv-laughing-austin +Volumes.1.ID e0212979-0063-472e-b0ae-4d8416336324 +Volumes.1.Name autogenerated scratch volume +Volumes.1.Organization 951df375-e094-4d26-97c1-ba548eeb9c42 +Volumes.1.Server.ID 0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb +Volumes.1.Server.Name cli-srv-flamboyant-mayer Volumes.1.Size 3.0 TB Volumes.1.VolumeType scratch Volumes.1.CreationDate few seconds ago Volumes.1.ModificationDate few seconds ago Volumes.1.State available -Volumes.1.Project fa1e3217-dc80-42ac-85c3-3f034b78b552 +Volumes.1.Project 951df375-e094-4d26-97c1-ba548eeb9c42 Volumes.1.Boot false Volumes.1.Zone fr-par-2 -SecurityGroup.ID 22961510-2391-4fc7-83bd-d4c9d2d5c7fd +SecurityGroup.ID afd48481-71bf-4cab-829e-db84b13c5951 SecurityGroup.Name Default security group StateDetail - Arch x86_64 Zone fr-par-2 EndOfService false +DNS 0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "83d3a1fe-76a4-45bc-af33-95c060618547", - "name": "cli-srv-laughing-austin", - "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", + "name": "cli-srv-flamboyant-mayer", + "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", + "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "allowed_actions": [ "poweron", "backup" @@ -88,7 +89,7 @@ EndOfService false "dynamic_ip_required": true, "routed_ip_enabled": true, "enable_ipv6": false, - "hostname": "cli-srv-laughing-austin", + "hostname": "cli-srv-flamboyant-mayer", "image": { "id": "f3431c05-e917-4bf0-b9db-9d4c14716a5e", "name": "Ubuntu Jammy GPU OS 12 passthrough", @@ -114,32 +115,32 @@ EndOfService false "protected": false, "private_ip": null, "public_ip": { - "id": "ac88a6d3-3ad8-4c51-8b09-3036c12add9b", - "address": "51.159.131.214", + "id": "21feb3e0-211e-49af-b197-2740e9241662", + "address": "51.159.166.9", "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "dynamic": false, "provisioning_mode": "dhcp", "tags": [], - "ipam_id": "60083e2c-9816-4a84-b14a-d346dd4d39ee", + "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662", "state": "attached" }, "public_ips": [ { - "id": "ac88a6d3-3ad8-4c51-8b09-3036c12add9b", - "address": "51.159.131.214", + "id": "21feb3e0-211e-49af-b197-2740e9241662", + "address": "51.159.166.9", "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "dynamic": false, "provisioning_mode": "dhcp", "tags": [], - "ipam_id": "60083e2c-9816-4a84-b14a-d346dd4d39ee", + "ipam_id": "21feb3e0-211e-49af-b197-2740e9241662", "state": "attached" } ], - "mac_address": "de:00:00:8f:cf:d9", + "mac_address": "de:00:00:9d:a3:a3", "modification_date": "1970-01-01T00:00:00.0Z", "state": "stopped", "location": null, @@ -147,7 +148,7 @@ EndOfService false "boot_type": "local", "volumes": { "0": { - "id": "0ffc426a-21b8-4a9a-9100-a3d3f8478bf4", + "id": "4205ef3c-83ca-4664-90f1-f64ec2484852", "name": null, "export_uri": null, "organization": null, @@ -162,26 +163,26 @@ EndOfService false "zone": "fr-par-2" }, "1": { - "id": "48ef0622-d26b-4a6e-87ce-21d5b33738f2", - "name": "cli-srv-laughing-austin-1", + "id": "e0212979-0063-472e-b0ae-4d8416336324", + "name": "autogenerated scratch volume", "export_uri": null, - "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": { - "id": "83d3a1fe-76a4-45bc-af33-95c060618547", - "name": "cli-srv-laughing-austin" + "id": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb", + "name": "cli-srv-flamboyant-mayer" }, "size": 3000000000000, "volume_type": "scratch", "creation_date": "1970-01-01T00:00:00.0Z", "modification_date": "1970-01-01T00:00:00.0Z", "state": "available", - "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "boot": false, "zone": "fr-par-2" } }, "security_group": { - "id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", + "id": "afd48481-71bf-4cab-829e-db84b13c5951", "name": "Default security group" }, "maintenances": [], @@ -194,5 +195,6 @@ EndOfService false "admin_password_encrypted_value": null, "filesystems": [], "end_of_service": false, + "dns": "0fc093fd-4593-4c7f-b2f9-8f8e9cf1beeb.pub.instances.scw.cloud", "Warnings": null } diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.golden b/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.golden index 0bf8c8992c..d95f9be7d5 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.golden @@ -121,5 +121,6 @@ EndOfService false "admin_password_encrypted_value": null, "filesystems": [], "end_of_service": false, + "dns": null, "Warnings": null } diff --git a/internal/namespaces/instance/v1/testdata/test-image-list-with-sbs-additional-volumes.golden b/internal/namespaces/instance/v1/testdata/test-image-list-with-sbs-additional-volumes.golden index bd559daefe..819474fc9f 100644 --- a/internal/namespaces/instance/v1/testdata/test-image-list-with-sbs-additional-volumes.golden +++ b/internal/namespaces/instance/v1/testdata/test-image-list-with-sbs-additional-volumes.golden @@ -15,6 +15,7 @@ ID NAME STATE ZONE "1": { "id": "e06982b3-b5b3-40d3-979c-7a57471641e0", "name": "", + "export_uri": null, "size": 10000000000, "volume_type": "sbs_snapshot", "creation_date": null, @@ -29,6 +30,7 @@ ID NAME STATE ZONE "2": { "id": "babb28ec-025f-43ed-8ccd-167e290e3ac2", "name": "", + "export_uri": null, "size": 15000000000, "volume_type": "sbs_snapshot", "creation_date": null, diff --git a/internal/namespaces/instance/v1/testdata/test-list-server-simple.golden b/internal/namespaces/instance/v1/testdata/test-list-server-simple.golden index 1fb7a39d49..85b84837d9 100644 --- a/internal/namespaces/instance/v1/testdata/test-list-server-simple.golden +++ b/internal/namespaces/instance/v1/testdata/test-list-server-simple.golden @@ -1,9 +1,9 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID NAME TYPE STATE ZONE PUBLIC IP PRIVATE IP TAGS IMAGE NAME ROUTED IP ENABLED MODIFICATION DATE CREATION DATE VOLUMES PROTECTED SECURITY GROUP NAME SECURITY GROUP ID STATE DETAIL ARCH IMAGE ID -6ab3aeee-069c-493c-895c-f7328500e45b cli-srv-priceless-black DEV1-S archived fr-par-1 51.158.97.101 - [] Ubuntu 22.04 Jammy Jellyfish true few seconds ago few seconds ago 1 false Default security group da505169-540e-4c2b-b0da-c854139224e0 - x86_64 6d3c053e-c728-4294-b23a-560b62a4d592 -fbe2e3c3-411c-4ba5-b3f1-2eded5a8b985 tf-srv-naughty-colden POP2-2C-8G-WIN archived fr-par-1 - - [] Windows Server 2022 true few seconds ago few seconds ago 1 false Default security group da505169-540e-4c2b-b0da-c854139224e0 - x86_64 5d355a7d-8abb-4418-9599-e26621bf7ca8 -6ffbe4b0-3cf0-407e-8e87-2c67defd8897 tf-tests-instance-block-external-root-volume PLAY2-PICO archived fr-par-1 - - [] Ubuntu 22.04 Jammy Jellyfish true few seconds ago few seconds ago 1 false Default security group c30bff3f-a276-4c5b-bb3e-92ecab6e962e - x86_64 6d3c053e-c728-4294-b23a-560b62a4d592 +ID NAME TYPE STATE ZONE PUBLIC IP PRIVATE IP TAGS IMAGE NAME ROUTED IP ENABLED MODIFICATION DATE CREATION DATE VOLUMES PROTECTED SECURITY GROUP NAME SECURITY GROUP ID STATE DETAIL ARCH IMAGE ID PROJECT ID +6ab3aeee-069c-493c-895c-f7328500e45b cli-srv-priceless-black DEV1-S archived fr-par-1 51.158.97.101 - [] Ubuntu 22.04 Jammy Jellyfish true few seconds ago few seconds ago 1 false Default security group da505169-540e-4c2b-b0da-c854139224e0 - x86_64 6d3c053e-c728-4294-b23a-560b62a4d592 fa1e3217-dc80-42ac-85c3-3f034b78b552 +fbe2e3c3-411c-4ba5-b3f1-2eded5a8b985 tf-srv-naughty-colden POP2-2C-8G-WIN archived fr-par-1 - - [] Windows Server 2022 true few seconds ago few seconds ago 1 false Default security group da505169-540e-4c2b-b0da-c854139224e0 - x86_64 5d355a7d-8abb-4418-9599-e26621bf7ca8 fa1e3217-dc80-42ac-85c3-3f034b78b552 +6ffbe4b0-3cf0-407e-8e87-2c67defd8897 tf-tests-instance-block-external-root-volume PLAY2-PICO archived fr-par-1 - - [] Ubuntu 22.04 Jammy Jellyfish true few seconds ago few seconds ago 1 false Default security group c30bff3f-a276-4c5b-bb3e-92ecab6e962e - x86_64 6d3c053e-c728-4294-b23a-560b62a4d592 44693172-d6a3-49b0-b56f-011f492e4dfa 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { @@ -108,7 +108,8 @@ fbe2e3c3-411c-4ba5-b3f1-2eded5a8b985 tf-srv-naughty-colden "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null, "filesystems": [], - "end_of_service": false + "end_of_service": false, + "dns": null }, { "id": "fbe2e3c3-411c-4ba5-b3f1-2eded5a8b985", @@ -188,7 +189,8 @@ fbe2e3c3-411c-4ba5-b3f1-2eded5a8b985 tf-srv-naughty-colden "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null, "filesystems": [], - "end_of_service": false + "end_of_service": false, + "dns": null }, { "id": "6ffbe4b0-3cf0-407e-8e87-2c67defd8897", @@ -268,6 +270,7 @@ fbe2e3c3-411c-4ba5-b3f1-2eded5a8b985 tf-srv-naughty-colden "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null, "filesystems": [], - "end_of_service": false + "end_of_service": false, + "dns": null } ] diff --git a/internal/namespaces/instance/v1/testdata/test-server-action-manual-poweron.golden b/internal/namespaces/instance/v1/testdata/test-server-action-manual-poweron.golden index 4c1916dfbe..edff892385 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-action-manual-poweron.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-action-manual-poweron.golden @@ -133,5 +133,6 @@ EndOfService false "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null, "filesystems": [], - "end_of_service": false + "end_of_service": false, + "dns": null } diff --git a/internal/namespaces/instance/v1/testdata/test-server-backup-with-sbs-volumes.golden b/internal/namespaces/instance/v1/testdata/test-server-backup-with-sbs-volumes.golden index 0ae5cb197a..8b51230bdd 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-backup-with-sbs-volumes.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-backup-with-sbs-volumes.golden @@ -26,6 +26,7 @@ Image.Zone fr-par-1 "1": { "id": "ca888d38-0425-4686-a0df-d033f8341859", "name": "", + "export_uri": null, "size": 0, "volume_type": "sbs_snapshot", "creation_date": null, @@ -40,6 +41,7 @@ Image.Zone fr-par-1 "2": { "id": "137ff099-af16-4bc8-a22d-e6ecd34c171f", "name": "", + "export_uri": null, "size": 0, "volume_type": "sbs_snapshot", "creation_date": null, diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-simple.golden b/internal/namespaces/instance/v1/testdata/test-server-update-simple.golden index 98683032a4..c163048f0d 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-simple.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-update-simple.golden @@ -121,5 +121,6 @@ EndOfService false "admin_password_encrypted_value": null, "filesystems": [], "end_of_service": false, + "dns": null, "Warnings": null } diff --git a/internal/namespaces/iot/v1/custom_hub.go b/internal/namespaces/iot/v1/custom_hub.go index f16b12e635..d47b468418 100644 --- a/internal/namespaces/iot/v1/custom_hub.go +++ b/internal/namespaces/iot/v1/custom_hub.go @@ -8,7 +8,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" "github.com/scaleway/scaleway-sdk-go/api/iot/v1" - "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -30,7 +29,7 @@ func hubCreateBuilder(c *core.Command) *core.Command { return api.WaitForHub(&iot.WaitForHubRequest{ HubID: respI.(*iot.Hub).ID, Region: respI.(*iot.Hub).Region, - Timeout: scw.TimeDurationPtr(hubActionTimeout), + Timeout: new(hubActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/jobs/v1alpha1/custom.go b/internal/namespaces/jobs/v1alpha2/custom.go similarity index 74% rename from internal/namespaces/jobs/v1alpha1/custom.go rename to internal/namespaces/jobs/v1alpha2/custom.go index 45376623f9..6d1aadf22a 100644 --- a/internal/namespaces/jobs/v1alpha1/custom.go +++ b/internal/namespaces/jobs/v1alpha2/custom.go @@ -4,17 +4,19 @@ import ( "github.com/fatih/color" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" - jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha1" + jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha2" ) var jobRunStateMarshalSpecs = human.EnumMarshalSpecs{ jobs.JobRunStateUnknownState: &human.EnumMarshalSpec{Attribute: color.Faint}, jobs.JobRunStateQueued: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - jobs.JobRunStateScheduled: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + jobs.JobRunStateInitialized: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + jobs.JobRunStateValidated: &human.EnumMarshalSpec{Attribute: color.FgBlue}, jobs.JobRunStateRunning: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - jobs.JobRunStateSucceeded: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + jobs.JobRunStateSucceeded: &human.EnumMarshalSpec{Attribute: color.FgGreen}, jobs.JobRunStateFailed: &human.EnumMarshalSpec{Attribute: color.FgRed}, - jobs.JobRunStateCanceled: &human.EnumMarshalSpec{Attribute: color.FgRed}, + jobs.JobRunStateInterrupting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + jobs.JobRunStateInterrupted: &human.EnumMarshalSpec{Attribute: color.FgRed}, } func GetCommands() *core.Commands { diff --git a/internal/namespaces/jobs/v1alpha1/custom_job_definition.go b/internal/namespaces/jobs/v1alpha2/custom_job_definition.go similarity index 94% rename from internal/namespaces/jobs/v1alpha1/custom_job_definition.go rename to internal/namespaces/jobs/v1alpha2/custom_job_definition.go index bdefcd2448..ead08af87b 100644 --- a/internal/namespaces/jobs/v1alpha1/custom_job_definition.go +++ b/internal/namespaces/jobs/v1alpha2/custom_job_definition.go @@ -6,7 +6,7 @@ import ( "fmt" "github.com/scaleway/scaleway-cli/v2/core" - jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha1" + jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha2" "github.com/scaleway/scaleway-sdk-go/scw" ) diff --git a/internal/namespaces/jobs/v1alpha1/custom_job_run.go b/internal/namespaces/jobs/v1alpha2/custom_job_run.go similarity index 93% rename from internal/namespaces/jobs/v1alpha1/custom_job_run.go rename to internal/namespaces/jobs/v1alpha2/custom_job_run.go index c642140b07..fe64717eb1 100644 --- a/internal/namespaces/jobs/v1alpha1/custom_job_run.go +++ b/internal/namespaces/jobs/v1alpha2/custom_job_run.go @@ -5,7 +5,7 @@ import ( "reflect" "github.com/scaleway/scaleway-cli/v2/core" - jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha1" + jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha2" "github.com/scaleway/scaleway-sdk-go/scw" ) diff --git a/internal/namespaces/jobs/v1alpha1/jobs_cli.go b/internal/namespaces/jobs/v1alpha2/jobs_cli.go similarity index 86% rename from internal/namespaces/jobs/v1alpha1/jobs_cli.go rename to internal/namespaces/jobs/v1alpha2/jobs_cli.go index 78cecc8c7f..7546fb60e6 100644 --- a/internal/namespaces/jobs/v1alpha1/jobs_cli.go +++ b/internal/namespaces/jobs/v1alpha2/jobs_cli.go @@ -8,7 +8,7 @@ import ( "reflect" "github.com/scaleway/scaleway-cli/v2/core" - jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha1" + jobs "github.com/scaleway/scaleway-sdk-go/api/jobs/v1alpha2" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -29,14 +29,14 @@ func GetGeneratedCommands() *core.Commands { jobsDefinitionUpdate(), jobsDefinitionDelete(), jobsDefinitionStart(), + jobsRunGet(), + jobsRunList(), + jobsRunStop(), jobsSecretCreate(), jobsSecretGet(), jobsSecretList(), jobsSecretUpdate(), jobsSecretDelete(), - jobsRunGet(), - jobsRunStop(), - jobsRunList(), ) } @@ -95,7 +95,7 @@ func jobsDefinitionCreate() *core.Command { }, { Name: "cpu-limit", - Short: `CPU limit of the job`, + Short: `CPU limit of the job (in mvCPU)`, Required: true, Deprecated: false, Positional: false, @@ -125,6 +125,20 @@ func jobsDefinitionCreate() *core.Command { Name: "command", Short: `Startup command. If empty or not defined, the image's default command is used.`, Required: false, + Deprecated: true, + Positional: false, + }, + { + Name: "startup-command.{index}", + Short: `Job startup command. Overrides the default defined in the job image.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "args.{index}", + Short: `Job arguments. Overrides the default arguments defined in the job image.`, + Required: false, Deprecated: false, Positional: false, }, @@ -298,7 +312,7 @@ func jobsDefinitionUpdate() *core.Command { }, { Name: "cpu-limit", - Short: `CPU limit of the job`, + Short: `CPU limit of the job (in mvCPU)`, Required: false, Deprecated: false, Positional: false, @@ -326,7 +340,21 @@ func jobsDefinitionUpdate() *core.Command { }, { Name: "command", - Short: `Startup command`, + Short: `Startup command. If empty or not defined, the image's default command is used.`, + Required: false, + Deprecated: true, + Positional: false, + }, + { + Name: "startup-command.{index}", + Short: `Job startup command. Overrides the default defined in the job image.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "args.{index}", + Short: `Job arguments. Overrides the default arguments defined in the job image.`, Required: false, Deprecated: false, Positional: false, @@ -424,8 +452,8 @@ func jobsDefinitionDelete() *core.Command { func jobsDefinitionStart() *core.Command { return &core.Command{ - Short: `Run an existing job definition by its unique identifier. This will create a new job run`, - Long: `Run an existing job definition by its unique identifier. This will create a new job run.`, + Short: `Run an existing job definition using its unique identifier and create a new job run`, + Long: `Run an existing job definition using its unique identifier and create a new job run.`, Namespace: "jobs", Resource: "definition", Verb: "start", @@ -441,7 +469,21 @@ func jobsDefinitionStart() *core.Command { }, { Name: "command", - Short: `Contextual startup command for this specific job run`, + Short: `Contextual startup command for this specific job run.`, + Required: false, + Deprecated: true, + Positional: false, + }, + { + Name: "startup-command.{index}", + Short: `Contextual startup command for this specific job run.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "args.{index}", + Short: `Contextual arguments for this specific job run.`, Required: false, Deprecated: false, Positional: false, @@ -477,85 +519,132 @@ func jobsDefinitionStart() *core.Command { } } -func jobsSecretCreate() *core.Command { +func jobsRunGet() *core.Command { return &core.Command{ - Short: `Create a secret reference within a job definition`, - Long: `Create a secret reference within a job definition.`, + Short: `Get a job run by its unique identifier`, + Long: `Get a job run by its unique identifier.`, Namespace: "jobs", - Resource: "secret", - Verb: "create", + Resource: "run", + Verb: "get", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.CreateJobDefinitionSecretsRequest{}), + ArgsType: reflect.TypeOf(jobs.GetJobRunRequest{}), ArgSpecs: core.ArgSpecs{ { - Name: "job-definition-id", - Short: `UUID of the job definition`, + Name: "job-run-id", + Short: `UUID of the job run to get`, Required: true, Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*jobs.GetJobRunRequest) + + client := core.ExtractClient(ctx) + api := jobs.NewAPI(client) + + return api.GetJobRun(request) + }, + } +} + +func jobsRunList() *core.Command { + return &core.Command{ + Short: `List all job runs with filters`, + Long: `List all job runs with filters.`, + Namespace: "jobs", + Resource: "run", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(jobs.ListJobRunsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Required: false, + Deprecated: false, Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + }, }, { - Name: "secrets.{index}.secret-manager-id", + Name: "job-definition-id", Required: false, Deprecated: false, Positional: false, }, { - Name: "secrets.{index}.secret-manager-version", + Name: "project-id", Required: false, Deprecated: false, Positional: false, }, { - Name: "secrets.{index}.path", + Name: "state", Required: false, Deprecated: false, Positional: false, + EnumValues: []string{ + "unknown_state", + "initialized", + "validated", + "queued", + "running", + "succeeded", + "failed", + "interrupting", + "interrupted", + "retrying", + }, }, { - Name: "secrets.{index}.env-var-name", + Name: "states.{index}", Required: false, Deprecated: false, Positional: false, + EnumValues: []string{ + "unknown_state", + "initialized", + "validated", + "queued", + "running", + "succeeded", + "failed", + "interrupting", + "interrupted", + "retrying", + }, }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.CreateJobDefinitionSecretsRequest) - - client := core.ExtractClient(ctx) - api := jobs.NewAPI(client) - - return api.CreateJobDefinitionSecrets(request) - }, - } -} - -func jobsSecretGet() *core.Command { - return &core.Command{ - Short: `Get a secret references within a job definition`, - Long: `Get a secret references within a job definition.`, - Namespace: "jobs", - Resource: "secret", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.GetJobDefinitionSecretRequest{}), - ArgSpecs: core.ArgSpecs{ { - Name: "job-definition-id", - Short: `UUID of the job definition`, - Required: true, + Name: "reasons.{index}", + Required: false, Deprecated: false, Positional: false, + EnumValues: []string{ + "unknown_reason", + "invalid_request", + "timeout", + "cancellation", + "technical_error", + "image_not_found", + "invalid_image", + "memory_usage_exceeded", + "storage_usage_exceeded", + "exited_with_error", + "secret_disabled", + "secret_not_found", + "quota_exceeded", + }, }, { - Name: "secret-id", - Short: `UUID of the secret reference within the job`, - Required: true, + Name: "organization-id", + Required: false, Deprecated: false, Positional: false, }, @@ -563,32 +652,42 @@ func jobsSecretGet() *core.Command { scw.RegionFrPar, scw.RegionNlAms, scw.RegionPlWaw, + scw.Region(core.AllLocalities), ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.GetJobDefinitionSecretRequest) + request := args.(*jobs.ListJobRunsRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListJobRuns(request, opts...) + if err != nil { + return nil, err + } - return api.GetJobDefinitionSecret(request) + return resp.JobRuns, nil }, } } -func jobsSecretList() *core.Command { +func jobsRunStop() *core.Command { return &core.Command{ - Short: `List secrets references within a job definition`, - Long: `List secrets references within a job definition.`, + Short: `Stop a job run using its unique identifier`, + Long: `Stop a job run using its unique identifier.`, Namespace: "jobs", - Resource: "secret", - Verb: "list", + Resource: "run", + Verb: "stop", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.ListJobDefinitionSecretsRequest{}), + ArgsType: reflect.TypeOf(jobs.StopJobRunRequest{}), ArgSpecs: core.ArgSpecs{ { - Name: "job-definition-id", - Short: `UUID of the job definition`, + Name: "job-run-id", + Short: `UUID of the job run to stop`, Required: true, Deprecated: false, Positional: false, @@ -600,25 +699,25 @@ func jobsSecretList() *core.Command { ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.ListJobDefinitionSecretsRequest) + request := args.(*jobs.StopJobRunRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) - return api.ListJobDefinitionSecrets(request) + return api.StopJobRun(request) }, } } -func jobsSecretUpdate() *core.Command { +func jobsSecretCreate() *core.Command { return &core.Command{ - Short: `Update a secret reference within a job definition`, - Long: `Update a secret reference within a job definition.`, + Short: `Create a secret reference within a job definition`, + Long: `Create a secret reference within a job definition.`, Namespace: "jobs", Resource: "secret", - Verb: "update", + Verb: "create", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.UpdateJobDefinitionSecretRequest{}), + ArgsType: reflect.TypeOf(jobs.CreateSecretsRequest{}), ArgSpecs: core.ArgSpecs{ { Name: "job-definition-id", @@ -628,29 +727,25 @@ func jobsSecretUpdate() *core.Command { Positional: false, }, { - Name: "secret-id", - Short: `UUID of the secret reference within the job`, - Required: true, + Name: "secrets.{index}.secret-manager-id", + Required: false, Deprecated: false, Positional: false, }, { - Name: "secret-manager-version", - Short: `Version of the secret in Secret Manager`, + Name: "secrets.{index}.secret-manager-version", Required: false, Deprecated: false, Positional: false, }, { - Name: "path", - Short: `Path of the secret to mount inside the job (either ` + "`" + `path` + "`" + ` or ` + "`" + `env_var_name` + "`" + ` must be set)`, + Name: "secrets.{index}.path", Required: false, Deprecated: false, Positional: false, }, { - Name: "env-var-name", - Short: `Environment variable name used to expose the secret inside the job (either ` + "`" + `path` + "`" + ` or ` + "`" + `env_var_name` + "`" + ` must be set)`, + Name: "secrets.{index}.env-var-name", Required: false, Deprecated: false, Positional: false, @@ -662,33 +757,26 @@ func jobsSecretUpdate() *core.Command { ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.UpdateJobDefinitionSecretRequest) + request := args.(*jobs.CreateSecretsRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) - return api.UpdateJobDefinitionSecret(request) + return api.CreateSecrets(request) }, } } -func jobsSecretDelete() *core.Command { +func jobsSecretGet() *core.Command { return &core.Command{ - Short: `Delete a secret reference within a job definition`, - Long: `Delete a secret reference within a job definition.`, + Short: `Get a secret references within a job definition`, + Long: `Get a secret references within a job definition.`, Namespace: "jobs", Resource: "secret", - Verb: "delete", + Verb: "get", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.DeleteJobDefinitionSecretRequest{}), + ArgsType: reflect.TypeOf(jobs.GetSecretRequest{}), ArgSpecs: core.ArgSpecs{ - { - Name: "job-definition-id", - Short: `UUID of the job definition`, - Required: true, - Deprecated: false, - Positional: false, - }, { Name: "secret-id", Short: `UUID of the secret reference within the job`, @@ -703,39 +791,32 @@ func jobsSecretDelete() *core.Command { ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.DeleteJobDefinitionSecretRequest) + request := args.(*jobs.GetSecretRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) - e = api.DeleteJobDefinitionSecret(request) - if e != nil { - return nil, e - } - return &core.SuccessResult{ - Resource: "secret", - Verb: "delete", - }, nil + return api.GetSecret(request) }, } } -func jobsRunGet() *core.Command { +func jobsSecretList() *core.Command { return &core.Command{ - Short: `Get a job run by its unique identifier`, - Long: `Get a job run by its unique identifier.`, + Short: `List secrets references within a job definition`, + Long: `List secrets references within a job definition.`, Namespace: "jobs", - Resource: "run", - Verb: "get", + Resource: "secret", + Verb: "list", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.GetJobRunRequest{}), + ArgsType: reflect.TypeOf(jobs.ListSecretsRequest{}), ArgSpecs: core.ArgSpecs{ { - Name: "job-run-id", - Short: `UUID of the job run to get`, + Name: "job-definition-id", + Short: `UUID of the job definition`, Required: true, Deprecated: false, - Positional: true, + Positional: false, }, core.RegionArgSpec( scw.RegionFrPar, @@ -744,32 +825,53 @@ func jobsRunGet() *core.Command { ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.GetJobRunRequest) + request := args.(*jobs.ListSecretsRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) - return api.GetJobRun(request) + return api.ListSecrets(request) }, } } -func jobsRunStop() *core.Command { +func jobsSecretUpdate() *core.Command { return &core.Command{ - Short: `Stop a job run by its unique identifier`, - Long: `Stop a job run by its unique identifier.`, + Short: `Update a secret reference within a job definition`, + Long: `Update a secret reference within a job definition.`, Namespace: "jobs", - Resource: "run", - Verb: "stop", + Resource: "secret", + Verb: "update", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.StopJobRunRequest{}), + ArgsType: reflect.TypeOf(jobs.UpdateSecretRequest{}), ArgSpecs: core.ArgSpecs{ { - Name: "job-run-id", - Short: `UUID of the job run to stop`, + Name: "secret-id", + Short: `UUID of the secret reference within the job`, Required: true, Deprecated: false, - Positional: true, + Positional: false, + }, + { + Name: "secret-manager-version", + Short: `Version of the secret in Secret Manager`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "path", + Short: `Path of the secret to mount inside the job (either ` + "`" + `path` + "`" + ` or ` + "`" + `env_var_name` + "`" + ` must be set)`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "env-var-name", + Short: `Environment variable name used to expose the secret inside the job (either ` + "`" + `path` + "`" + ` or ` + "`" + `env_var_name` + "`" + ` must be set)`, + Required: false, + Deprecated: false, + Positional: false, }, core.RegionArgSpec( scw.RegionFrPar, @@ -778,83 +880,30 @@ func jobsRunStop() *core.Command { ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.StopJobRunRequest) + request := args.(*jobs.UpdateSecretRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) - return api.StopJobRun(request) + return api.UpdateSecret(request) }, } } -func jobsRunList() *core.Command { +func jobsSecretDelete() *core.Command { return &core.Command{ - Short: `List all job runs with filters`, - Long: `List all job runs with filters.`, + Short: `Delete a secret reference within a job definition`, + Long: `Delete a secret reference within a job definition.`, Namespace: "jobs", - Resource: "run", - Verb: "list", + Resource: "secret", + Verb: "delete", // Deprecated: false, - ArgsType: reflect.TypeOf(jobs.ListJobRunsRequest{}), + ArgsType: reflect.TypeOf(jobs.DeleteSecretRequest{}), ArgSpecs: core.ArgSpecs{ { - Name: "order-by", - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - }, - }, - { - Name: "job-definition-id", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "project-id", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "state", - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_state", - "queued", - "scheduled", - "running", - "succeeded", - "failed", - "canceled", - "internal_error", - }, - }, - { - Name: "states.{index}", - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_state", - "queued", - "scheduled", - "running", - "succeeded", - "failed", - "canceled", - "internal_error", - }, - }, - { - Name: "organization-id", - Required: false, + Name: "secret-id", + Short: `UUID of the secret reference within the job`, + Required: true, Deprecated: false, Positional: false, }, @@ -862,25 +911,22 @@ func jobsRunList() *core.Command { scw.RegionFrPar, scw.RegionNlAms, scw.RegionPlWaw, - scw.Region(core.AllLocalities), ), }, Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*jobs.ListJobRunsRequest) + request := args.(*jobs.DeleteSecretRequest) client := core.ExtractClient(ctx) api := jobs.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListJobRuns(request, opts...) - if err != nil { - return nil, err + e = api.DeleteSecret(request) + if e != nil { + return nil, e } - return resp.JobRuns, nil + return &core.SuccessResult{ + Resource: "secret", + Verb: "delete", + }, nil }, } } diff --git a/internal/namespaces/k8s/v1/custom_cluster.go b/internal/namespaces/k8s/v1/custom_cluster.go index bb84587e98..d3d3e5c33d 100644 --- a/internal/namespaces/k8s/v1/custom_cluster.go +++ b/internal/namespaces/k8s/v1/custom_cluster.go @@ -145,30 +145,6 @@ func clusterCreateBuilder(c *core.Command) *core.Command { var pn *vpc.PrivateNetwork var err error - types, err := k8sAPI.ListClusterTypes(&k8s.ListClusterTypesRequest{ - Region: request.Region, - }) - if err != nil { - return nil, err - } - if request.Type != "" { - validType := false - validTypes := []string(nil) - for _, clusterType := range types.ClusterTypes { - validTypes = append(validTypes, clusterType.Name) - if clusterType.Name == request.Type { - validType = true - } - } - if !validType { - return nil, fmt.Errorf( - "invalid cluster type %q, must be one of %v", - request.Type, - validTypes, - ) - } - } - if request.Type == "" || strings.HasPrefix(request.Type, "kapsule") { if request.PrivateNetworkID == nil { createPNReq := &vpc.CreatePrivateNetworkRequest{ @@ -182,7 +158,7 @@ func clusterCreateBuilder(c *core.Command) *core.Command { if err != nil { return nil, err } - request.PrivateNetworkID = scw.StringPtr(pn.ID) + request.PrivateNetworkID = new(pn.ID) pnCreated = true } else { pn, err = vpcAPI.GetPrivateNetwork(&vpc.GetPrivateNetworkRequest{ @@ -359,7 +335,7 @@ func waitForClusterFunc(action int) core.WaitFunc { WaitForCluster(&k8s.WaitForClusterRequest{ Region: clusterResponse.Region, ClusterID: clusterResponse.ID, - Timeout: scw.TimeDurationPtr(clusterActionTimeout), + Timeout: new(clusterActionTimeout), RetryInterval: core.DefaultRetryInterval, }) switch action { diff --git a/internal/namespaces/k8s/v1/custom_execcredentials_test.go b/internal/namespaces/k8s/v1/custom_execcredentials_test.go index b5394899c8..3b3779d91e 100644 --- a/internal/namespaces/k8s/v1/custom_execcredentials_test.go +++ b/internal/namespaces/k8s/v1/custom_execcredentials_test.go @@ -137,38 +137,38 @@ func beforeFuncCreateConfigFile(c *scw.Config) core.BeforeFunc { func beforeFuncCreateFullConfig() core.BeforeFunc { return beforeFuncCreateConfigFile(&scw.Config{ Profile: scw.Profile{ - AccessKey: scw.StringPtr("SCWXXXXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr(p1Secret), - APIURL: scw.StringPtr("https://mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("deadbeef-dead-dead-dead-deaddeafbeef"), - DefaultProjectID: scw.StringPtr("deadbeef-dead-dead-dead-deaddeafbeef"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWXXXXXXXXXXXXXXXXX"), + SecretKey: new(p1Secret), + APIURL: new("https://mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("deadbeef-dead-dead-dead-deaddeafbeef"), + DefaultProjectID: new("deadbeef-dead-dead-dead-deaddeafbeef"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, Profiles: map[string]*scw.Profile{ "p2": { - AccessKey: scw.StringPtr("SCWP2XXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr(p2Secret), - APIURL: scw.StringPtr("https://p2-mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("deadbeef-dead-dead-dead-deaddeafbeef"), - DefaultProjectID: scw.StringPtr("deadbeef-dead-dead-dead-deaddeafbeef"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWP2XXXXXXXXXXXXXXX"), + SecretKey: new(p2Secret), + APIURL: new("https://p2-mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("deadbeef-dead-dead-dead-deaddeafbeef"), + DefaultProjectID: new("deadbeef-dead-dead-dead-deaddeafbeef"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, "p3": { - AccessKey: scw.StringPtr("SCWP3XXXXXXXXXXXXXXX"), - SecretKey: scw.StringPtr(p3Secret), - APIURL: scw.StringPtr("https://p3-mock-api-url.com"), - Insecure: scw.BoolPtr(true), - DefaultOrganizationID: scw.StringPtr("deadbeef-dead-dead-dead-deaddeafbeef"), - DefaultProjectID: scw.StringPtr("deadbeef-dead-dead-dead-deaddeafbeef"), - DefaultRegion: scw.StringPtr("fr-par"), - DefaultZone: scw.StringPtr("fr-par-1"), - SendTelemetry: scw.BoolPtr(true), + AccessKey: new("SCWP3XXXXXXXXXXXXXXX"), + SecretKey: new(p3Secret), + APIURL: new("https://p3-mock-api-url.com"), + Insecure: new(true), + DefaultOrganizationID: new("deadbeef-dead-dead-dead-deaddeafbeef"), + DefaultProjectID: new("deadbeef-dead-dead-dead-deaddeafbeef"), + DefaultRegion: new("fr-par"), + DefaultZone: new("fr-par-1"), + SendTelemetry: new(true), }, }, }) diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_get.go b/internal/namespaces/k8s/v1/custom_kubeconfig_get.go index 531d2d4235..7631984fff 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_get.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_get.go @@ -72,7 +72,7 @@ func k8sKubeconfigGetRun(ctx context.Context, argsI any) (i any, e error) { GetClusterKubeConfig(&k8s.GetClusterKubeConfigRequest{ Region: request.Region, ClusterID: request.ClusterID, - Redacted: scw.BoolPtr( + Redacted: new( request.AuthMethod != authMethodLegacy, ), // put true after legacy deprecation }) diff --git a/internal/namespaces/k8s/v1/custom_kubeconfig_install.go b/internal/namespaces/k8s/v1/custom_kubeconfig_install.go index 06abf5cbb1..02d30bb571 100644 --- a/internal/namespaces/k8s/v1/custom_kubeconfig_install.go +++ b/internal/namespaces/k8s/v1/custom_kubeconfig_install.go @@ -86,7 +86,7 @@ func k8sKubeconfigInstallRun(ctx context.Context, argsI any) (i any, e error) { GetClusterKubeConfig(&k8s.GetClusterKubeConfigRequest{ Region: request.Region, ClusterID: request.ClusterID, - Redacted: scw.BoolPtr( + Redacted: new( request.AuthMethod != authMethodLegacy, ), // put true after legacy deprecation }) diff --git a/internal/namespaces/k8s/v1/custom_node.go b/internal/namespaces/k8s/v1/custom_node.go index eca08a8918..95d7269695 100644 --- a/internal/namespaces/k8s/v1/custom_node.go +++ b/internal/namespaces/k8s/v1/custom_node.go @@ -9,7 +9,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" k8s "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" - "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -41,7 +40,7 @@ func waitForNodeFunc(action int) core.WaitFunc { node, err := k8s.NewAPI(core.ExtractClient(ctx)).WaitForNode(&k8s.WaitForNodeRequest{ Region: respI.(*k8s.Node).Region, NodeID: respI.(*k8s.Node).ID, - Timeout: scw.TimeDurationPtr(nodeActionTimeout), + Timeout: new(nodeActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if action == nodeActionReboot { diff --git a/internal/namespaces/k8s/v1/custom_pool.go b/internal/namespaces/k8s/v1/custom_pool.go index 52e15216e4..87a098f25d 100644 --- a/internal/namespaces/k8s/v1/custom_pool.go +++ b/internal/namespaces/k8s/v1/custom_pool.go @@ -76,7 +76,7 @@ func waitForPoolFunc(action int) core.WaitFunc { pool, err := k8s.NewAPI(core.ExtractClient(ctx)).WaitForPool(&k8s.WaitForPoolRequest{ Region: respI.(*k8s.Pool).Region, PoolID: respI.(*k8s.Pool).ID, - Timeout: scw.TimeDurationPtr(poolActionTimeout), + Timeout: new(poolActionTimeout), RetryInterval: core.DefaultRetryInterval, }) switch action { @@ -190,13 +190,16 @@ Keep in mind that your external node needs to have wget in order to download the homeDir = "/home/" + args.Username } nodeInitScript := buildNodeInitScript(args.PoolID, args.Region) - copyScriptArgs := []string{ + copyScriptArgs := append(append([]string{}, "cat", "<<", "EOF", - ">", homeDir + "/init_kosmos_node.sh", - "\n", - } - copyScriptArgs = append(copyScriptArgs, strings.Split(nodeInitScript, " \n")...) - if err = execSSHCommand(ctx, append(sshCommonArgs, copyScriptArgs...), true); err != nil { + ">", homeDir+"/init_kosmos_node.sh", + "\n"), + strings.Split(nodeInitScript, " \n")...) + if err = execSSHCommand( + ctx, + append(sshCommonArgs, copyScriptArgs...), + true, + ); err != nil { return nil, err } chmodArgs := []string{"chmod", "+x", homeDir + "/init_kosmos_node.sh"} @@ -212,7 +215,11 @@ Keep in mind that your external node needs to have wget in order to download the "SCW_SECRET_KEY=" + secretKey, "./init_kosmos_node.sh", } - if err = execSSHCommand(ctx, append(sshCommonArgs, execScriptArgs...), false); err != nil { + if err = execSSHCommand( + ctx, + append(sshCommonArgs, execScriptArgs...), + false, + ); err != nil { return nil, err } diff --git a/internal/namespaces/k8s/v1/helpers_test.go b/internal/namespaces/k8s/v1/helpers_test.go index a6ec99f5d7..749c033b2d 100644 --- a/internal/namespaces/k8s/v1/helpers_test.go +++ b/internal/namespaces/k8s/v1/helpers_test.go @@ -11,7 +11,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" go_api "github.com/scaleway/scaleway-cli/v2/internal/namespaces/k8s/v1/types" k8s "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" - "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -56,7 +55,7 @@ func fetchClusterKubeconfigMetadata( GetClusterKubeConfig(&k8s.GetClusterKubeConfigRequest{ Region: cluster.Region, ClusterID: cluster.ID, - Redacted: scw.BoolPtr(redacted), + Redacted: new(redacted), }) if err != nil { return err diff --git a/internal/namespaces/k8s/v1/k8s_cli.go b/internal/namespaces/k8s/v1/k8s_cli.go index 11c786cd48..fed8a5ad88 100644 --- a/internal/namespaces/k8s/v1/k8s_cli.go +++ b/internal/namespaces/k8s/v1/k8s_cli.go @@ -46,7 +46,6 @@ func GetGeneratedCommands() *core.Commands { k8sPoolUpgrade(), k8sPoolUpdate(), k8sPoolDelete(), - k8sPoolMigrateToNewImages(), k8sNodeList(), k8sNodeGet(), k8sNodeReplace(), @@ -488,9 +487,68 @@ func k8sClusterCreate() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "pools.{index}.labels.{key}", + Short: `Kubernetes labels applied and reconciled on the nodes`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "pools.{index}.taints.{index}.key", + Short: `The taint key to be applied to a node`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "pools.{index}.taints.{index}.value", + Short: `The taint value corresponding to the taint key`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "pools.{index}.taints.{index}.effect", + Short: `Effect defines the effects of Taint`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "NoSchedule", + "PreferNoSchedule", + "NoExecute", + }, + }, + { + Name: "pools.{index}.startup-taints.{index}.key", + Short: `The taint key to be applied to a node`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "pools.{index}.startup-taints.{index}.value", + Short: `The taint value corresponding to the taint key`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "pools.{index}.startup-taints.{index}.effect", + Short: `Effect defines the effects of Taint`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "NoSchedule", + "PreferNoSchedule", + "NoExecute", + }, + }, { Name: "autoscaler-config.scale-down-disabled", - Short: `Disable the cluster autoscaler`, + Short: `Forbid cluster autoscaler to scale down the cluster, defaults to false`, Required: false, Deprecated: false, Positional: false, @@ -515,7 +573,7 @@ func k8sClusterCreate() *core.Command { }, { Name: "autoscaler-config.expander", - Short: `Type of node group expander to be used in scale up`, + Short: `Kubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details`, Required: false, Deprecated: false, Positional: false, @@ -530,14 +588,14 @@ func k8sClusterCreate() *core.Command { }, { Name: "autoscaler-config.ignore-daemonsets-utilization", - Short: `Ignore DaemonSet pods when calculating resource utilization for scaling down`, + Short: `Ignore DaemonSet pods when calculating resource utilization for scaling down, defaults to false`, Required: false, Deprecated: false, Positional: false, }, { Name: "autoscaler-config.balance-similar-node-groups", - Short: `Detect similar node groups and balance the number of nodes between them`, + Short: `Detect similar node groups and balance the number of nodes between them, defaults to false`, Required: false, Deprecated: false, Positional: false, @@ -551,21 +609,21 @@ func k8sClusterCreate() *core.Command { }, { Name: "autoscaler-config.scale-down-unneeded-time", - Short: `How long a node should be unneeded before it is eligible to be scaled down`, + Short: `How long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes`, Required: false, Deprecated: false, Positional: false, }, { Name: "autoscaler-config.scale-down-utilization-threshold", - Short: `Node utilization level, defined as a sum of requested resources divided by capacity, below which a node can be considered for scale down`, + Short: `Node utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down`, Required: false, Deprecated: false, Positional: false, }, { Name: "autoscaler-config.max-graceful-termination-sec", - Short: `Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node`, + Short: `Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes)`, Required: false, Deprecated: false, Positional: false, @@ -807,7 +865,7 @@ func k8sClusterUpdate() *core.Command { }, { Name: "autoscaler-config.scale-down-disabled", - Short: `Disable the cluster autoscaler`, + Short: `Forbid cluster autoscaler to scale down the cluster, defaults to false`, Required: false, Deprecated: false, Positional: false, @@ -832,7 +890,7 @@ func k8sClusterUpdate() *core.Command { }, { Name: "autoscaler-config.expander", - Short: `Type of node group expander to be used in scale up`, + Short: `Kubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details`, Required: false, Deprecated: false, Positional: false, @@ -847,14 +905,14 @@ func k8sClusterUpdate() *core.Command { }, { Name: "autoscaler-config.ignore-daemonsets-utilization", - Short: `Ignore DaemonSet pods when calculating resource utilization for scaling down`, + Short: `Ignore DaemonSet pods when calculating resource utilization for scaling down, defaults to false`, Required: false, Deprecated: false, Positional: false, }, { Name: "autoscaler-config.balance-similar-node-groups", - Short: `Detect similar node groups and balance the number of nodes between them`, + Short: `Detect similar node groups and balance the number of nodes between them, defaults to false`, Required: false, Deprecated: false, Positional: false, @@ -868,21 +926,21 @@ func k8sClusterUpdate() *core.Command { }, { Name: "autoscaler-config.scale-down-unneeded-time", - Short: `How long a node should be unneeded before it is eligible to be scaled down`, + Short: `How long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes`, Required: false, Deprecated: false, Positional: false, }, { Name: "autoscaler-config.scale-down-utilization-threshold", - Short: `Node utilization level, defined as a sum of requested resources divided by capacity, below which a node can be considered for scale down`, + Short: `Node utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down`, Required: false, Deprecated: false, Positional: false, }, { Name: "autoscaler-config.max-graceful-termination-sec", - Short: `Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node`, + Short: `Maximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes)`, Required: false, Deprecated: false, Positional: false, @@ -1837,6 +1895,65 @@ func k8sPoolCreate() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "labels.{key}", + Short: `Kubernetes labels applied and reconciled on the nodes`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "taints.{index}.key", + Short: `The taint key to be applied to a node`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "taints.{index}.value", + Short: `The taint value corresponding to the taint key`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "taints.{index}.effect", + Short: `Effect defines the effects of Taint`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "NoSchedule", + "PreferNoSchedule", + "NoExecute", + }, + }, + { + Name: "startup-taints.{index}.key", + Short: `The taint key to be applied to a node`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "startup-taints.{index}.value", + Short: `The taint value corresponding to the taint key`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "startup-taints.{index}.effect", + Short: `Effect defines the effects of Taint`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "NoSchedule", + "PreferNoSchedule", + "NoExecute", + }, + }, core.RegionArgSpec( scw.RegionFrPar, scw.RegionNlAms, @@ -2034,6 +2151,13 @@ func k8sPoolUpdate() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "security-group-id", + Short: `Security group ID in which all the nodes of the pool will be moved`, + Required: false, + Deprecated: false, + Positional: false, + }, core.RegionArgSpec( scw.RegionFrPar, scw.RegionNlAms, @@ -2109,62 +2233,6 @@ func k8sPoolDelete() *core.Command { } } -func k8sPoolMigrateToNewImages() *core.Command { - return &core.Command{ - Short: `Migrate specific pools or all pools of a cluster to new images.`, - Long: `If no pool is specified, all pools of the cluster will be migrated to new images.`, - Namespace: "k8s", - Resource: "pool", - Verb: "migrate-to-new-images", - // Deprecated: false, - ArgsType: reflect.TypeOf(k8s.MigratePoolsToNewImagesRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "cluster-id", - Required: true, - Deprecated: false, - Positional: false, - }, - { - Name: "pool-ids.{index}", - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*k8s.MigratePoolsToNewImagesRequest) - - client := core.ExtractClient(ctx) - api := k8s.NewAPI(client) - e = api.MigratePoolsToNewImages(request) - if e != nil { - return nil, e - } - - return &core.SuccessResult{ - Resource: "pool", - Verb: "migrate-to-new-images", - }, nil - }, - Examples: []*core.Example{ - { - Short: "Migrate all pools of a cluster to new images", - Raw: `scw k8s pool migrate-to-new-images cluster-id=11111111-1111-1111-1111-111111111111`, - }, - { - Short: "Migrate a specific pool of a cluster to new images", - Raw: `scw k8s pool migrate-to-new-images cluster-id=11111111-1111-1111-1111-111111111111 pools.0=22222222-2222-2222-2222-222222222222`, - }, - }, - } -} - func k8sNodeList() *core.Command { return &core.Command{ Short: `List Nodes in a Cluster`, diff --git a/internal/namespaces/k8s/v1/testdata/test-get-cluster-simple.golden b/internal/namespaces/k8s/v1/testdata/test-get-cluster-simple.golden index b9765c6193..64e48b9e21 100644 --- a/internal/namespaces/k8s/v1/testdata/test-get-cluster-simple.golden +++ b/internal/namespaces/k8s/v1/testdata/test-get-cluster-simple.golden @@ -19,7 +19,6 @@ PrivateNetworkID 4a64f3e9-f128-4679-84ac-af05eec5b520 CommitmentEndsAt few seconds ago ACLAvailable true IamNodesGroupID - -NewImagesEnabled true PodCidr 100.64.0.0/15 ServiceCidr 10.32.0.0/20 ServiceDNSIP 10.32.0.10 @@ -104,7 +103,6 @@ ID NAME STATUS VERSION NODE TYPE MIN "commitment_ends_at": "1970-01-01T00:00:00.0Z", "acl_available": true, "iam_nodes_group_id": "", - "new_images_enabled": true, "pod_cidr": "100.64.0.0/15", "service_cidr": "10.32.0.0/20", "service_dns_ip": "10.32.0.10", diff --git a/internal/namespaces/k8s/v1/testdata/test-wait-cluster-wait-for-pools.golden b/internal/namespaces/k8s/v1/testdata/test-wait-cluster-wait-for-pools.golden index a585b3765d..741ee1d196 100644 --- a/internal/namespaces/k8s/v1/testdata/test-wait-cluster-wait-for-pools.golden +++ b/internal/namespaces/k8s/v1/testdata/test-wait-cluster-wait-for-pools.golden @@ -19,7 +19,6 @@ PrivateNetworkID f932db89-93ed-4779-b9d4-2231b507aea2 CommitmentEndsAt few seconds ago ACLAvailable true IamNodesGroupID 30185f78-13c6-470e-a589-bc4f33fd9119 -NewImagesEnabled true PodCidr 100.64.0.0/15 ServiceCidr 10.32.0.0/20 ServiceDNSIP 10.32.0.10 @@ -100,7 +99,6 @@ GroupsPrefix - "commitment_ends_at": "1970-01-01T00:00:00.0Z", "acl_available": true, "iam_nodes_group_id": "30185f78-13c6-470e-a589-bc4f33fd9119", - "new_images_enabled": true, "pod_cidr": "100.64.0.0/15", "service_cidr": "10.32.0.0/20", "service_dns_ip": "10.32.0.10" diff --git a/internal/namespaces/k8s/v1/types/types.go b/internal/namespaces/k8s/v1/types/types.go index 588e2ac192..33dc1af265 100644 --- a/internal/namespaces/k8s/v1/types/types.go +++ b/internal/namespaces/k8s/v1/types/types.go @@ -109,10 +109,10 @@ type AuthInfo struct { ClientKey string `json:"client-key,omitempty"` // ClientKeyData contains PEM-encoded data from a client key file for TLS. Overrides ClientKey // +optional - ClientKeyData []byte `json:"client-key-data,omitempty" datapolicy:"security-key"` + ClientKeyData []byte `json:"client-key-data,omitempty" datapolicy:"security-key"` // Token is the bearer token for authentication to the kubernetes cluster. // +optional - Token string `json:"token,omitempty" datapolicy:"token"` + Token string `json:"token,omitempty" datapolicy:"token"` // TokenFile is a pointer to a file that contains a bearer token (as described above). If both Token and TokenFile are present, Token takes precedence. // +optional TokenFile string `json:"tokenFile,omitempty"` @@ -133,7 +133,7 @@ type AuthInfo struct { Username string `json:"username,omitempty"` // Password is the password for basic authentication to the kubernetes cluster. // +optional - Password string `json:"password,omitempty" datapolicy:"password"` + Password string `json:"password,omitempty" datapolicy:"password"` // AuthProvider specifies a custom authentication plugin for the kubernetes cluster. // +optional AuthProvider *AuthProviderConfig `json:"auth-provider,omitempty"` diff --git a/internal/namespaces/lb/v1/custom_backend.go b/internal/namespaces/lb/v1/custom_backend.go index 28f468cf42..9961a527d5 100644 --- a/internal/namespaces/lb/v1/custom_backend.go +++ b/internal/namespaces/lb/v1/custom_backend.go @@ -183,8 +183,12 @@ func backendCreateBuilder(c *core.Command) *core.Command { } else { if server.Server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.Server.ID, server.Server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.Server.ID, + server.Server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, } } serverIPs = append(serverIPs, *server.Server.PrivateIP) @@ -246,8 +250,12 @@ func backendCreateBuilder(c *core.Command) *core.Command { } else { if server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.ID, server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.ID, + server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, } } serverIPs = append(serverIPs, *server.PrivateIP) @@ -378,8 +386,12 @@ func backendAddServersBuilder(c *core.Command) *core.Command { } else { if server.Server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.Server.ID, server.Server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.Server.ID, + server.Server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, } } serverIPs = append(serverIPs, *server.Server.PrivateIP) @@ -441,8 +453,12 @@ func backendAddServersBuilder(c *core.Command) *core.Command { } else { if server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.ID, server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.ID, + server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, } } serverIPs = append(serverIPs, *server.PrivateIP) @@ -561,8 +577,12 @@ func backendRemoveServersBuilder(c *core.Command) *core.Command { } else { if server.Server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.Server.ID, server.Server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.Server.ID, + server.Server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, } } serverIPs = append(serverIPs, *server.Server.PrivateIP) @@ -624,8 +644,12 @@ func backendRemoveServersBuilder(c *core.Command) *core.Command { } else { if server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.ID, server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.ID, + server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, } } serverIPs = append(serverIPs, *server.PrivateIP) @@ -744,8 +768,12 @@ func backendSetServersBuilder(c *core.Command) *core.Command { } else { if server.Server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.Server.ID, server.Server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.Server.ID, + server.Server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.Server.ID, } } serverIPs = append(serverIPs, *server.Server.PrivateIP) @@ -807,8 +835,12 @@ func backendSetServersBuilder(c *core.Command) *core.Command { } else { if server.PrivateIP == nil { return nil, &core.CliError{ - Message: fmt.Sprintf("server %s (%s) does not have a private ip", server.ID, server.Name), - Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, + Message: fmt.Sprintf( + "server %s (%s) does not have a private ip", + server.ID, + server.Name, + ), + Hint: "Private ip are assigned when the server boots, start yours with: scw instance server start " + server.ID, } } serverIPs = append(serverIPs, *server.PrivateIP) diff --git a/internal/namespaces/lb/v1/custom_lb.go b/internal/namespaces/lb/v1/custom_lb.go index 955cfc1884..00bf0dabc7 100644 --- a/internal/namespaces/lb/v1/custom_lb.go +++ b/internal/namespaces/lb/v1/custom_lb.go @@ -174,7 +174,7 @@ func lbUpdateBuilder(c *core.Command) *core.Command { waitRequest := &lb.ZonedAPIWaitForLBRequest{ LBID: request.LBID, Zone: request.Zone, - Timeout: scw.TimeDurationPtr(defaultLBTimeout), + Timeout: new(defaultLBTimeout), RetryInterval: core.DefaultRetryInterval, } res, err := lbAPI.WaitForLb(waitRequest, scw.WithContext(ctx)) diff --git a/internal/namespaces/login/login.go b/internal/namespaces/login/login.go index e33758682a..392e134ec9 100644 --- a/internal/namespaces/login/login.go +++ b/internal/namespaces/login/login.go @@ -75,7 +75,9 @@ Once you connected to Scaleway, the profile should be configured. } else { err = open.Start(accountURL) if err != nil { - logger.Warningf("Failed to open web url, you may not have a default browser configured") + logger.Warningf( + "Failed to open web url, you may not have a default browser configured", + ) logger.Warningf("You can open it: " + accountURL) } } diff --git a/internal/namespaces/mongodb/v1alpha1/custom_instance.go b/internal/namespaces/mongodb/v1alpha1/custom_instance.go index 426325e383..e14d665624 100644 --- a/internal/namespaces/mongodb/v1alpha1/custom_instance.go +++ b/internal/namespaces/mongodb/v1alpha1/custom_instance.go @@ -66,7 +66,7 @@ func instanceCreateBuilder(c *core.Command) *core.Command { return api.WaitForInstance(&mongodb.WaitForInstanceRequest{ InstanceID: getResp.ID, Region: getResp.Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -145,7 +145,7 @@ func instanceWaitCommand() *core.Command { return api.WaitForInstance(&mongodb.WaitForInstanceRequest{ Region: argsI.(*serverWaitRequest).Region, InstanceID: argsI.(*serverWaitRequest).InstanceID, - Timeout: scw.TimeDurationPtr(argsI.(*serverWaitRequest).Timeout), + Timeout: new(argsI.(*serverWaitRequest).Timeout), RetryInterval: core.DefaultRetryInterval, }) }, diff --git a/internal/namespaces/object/v1/custom_bucket.go b/internal/namespaces/object/v1/custom_bucket.go index 04687178e9..4377f6c83d 100644 --- a/internal/namespaces/object/v1/custom_bucket.go +++ b/internal/namespaces/object/v1/custom_bucket.go @@ -77,7 +77,7 @@ func bucketCreateCommand() *core.Command { CreateBucketConfiguration: &types.CreateBucketConfiguration{ LocationConstraint: types.BucketLocationConstraint(args.Region), }, - ObjectLockEnabledForBucket: scw.BoolPtr(false), + ObjectLockEnabledForBucket: new(false), }) if err != nil { return nil, fmt.Errorf("could not create bucket: %w", err) diff --git a/internal/namespaces/object/v1/custom_bucket_test.go b/internal/namespaces/object/v1/custom_bucket_test.go index 360cf0e6d3..96fba6f291 100644 --- a/internal/namespaces/object/v1/custom_bucket_test.go +++ b/internal/namespaces/object/v1/custom_bucket_test.go @@ -59,12 +59,12 @@ func Test_BucketCreate(t *testing.T) { assert.False(t, bucket.EnableVersioning) assert.Equal(t, []types.Tag{ { - Key: scw.StringPtr("key1"), - Value: scw.StringPtr("value1"), + Key: new("key1"), + Value: new("value1"), }, { - Key: scw.StringPtr("key2"), - Value: scw.StringPtr("value2"), + Key: new("key2"), + Value: new("value2"), }, }, bucket.Tags) checkACL(t, "private", bucket.ACL, bucket.Owner) @@ -214,8 +214,8 @@ func Test_BucketUpdate(t *testing.T) { assert.False(t, bucket.EnableVersioning) assert.Equal(t, []types.Tag{ { - Key: scw.StringPtr("key1"), - Value: scw.StringPtr("value1"), + Key: new("key1"), + Value: new("value1"), }, }, bucket.Tags) checkACL(t, "private", bucket.ACL, bucket.Owner) @@ -243,12 +243,12 @@ func Test_BucketUpdate(t *testing.T) { assert.True(t, bucket.EnableVersioning) assert.Equal(t, []types.Tag{ { - Key: scw.StringPtr("key1"), - Value: scw.StringPtr("value1"), + Key: new("key1"), + Value: new("value1"), }, { - Key: scw.StringPtr("key2"), - Value: scw.StringPtr("value2"), + Key: new("key2"), + Value: new("value2"), }, }, bucket.Tags) checkACL(t, "public-read-write", bucket.ACL, bucket.Owner) diff --git a/internal/namespaces/object/v1/s3_helpers.go b/internal/namespaces/object/v1/s3_helpers.go index 017757d96a..abe6b31f6d 100644 --- a/internal/namespaces/object/v1/s3_helpers.go +++ b/internal/namespaces/object/v1/s3_helpers.go @@ -42,7 +42,7 @@ func newS3Client(ctx context.Context, region scw.Region) *s3.Client { SecretAccessKey: secretKey, }, nil }), - BaseEndpoint: scw.StringPtr(customEndpoint), + BaseEndpoint: new(customEndpoint), Region: region.String(), HTTPClient: httpClient, }) @@ -82,15 +82,15 @@ func verifyACLInput(aclInput string) (bool, []types.BucketCannedACL) { } func awsACLToCustomGrants(output *s3.GetBucketAclOutput) []CustomS3ACLGrant { - customGrants := []CustomS3ACLGrant(nil) + customGrants := make([]CustomS3ACLGrant, 0, len(output.Grants)) for _, grant := range output.Grants { var grantee *string switch grant.Grantee.Type { case types.TypeCanonicalUser: - grantee = scw.StringPtr(normalizeOwnerID(grant.Grantee.ID)) + grantee = new(normalizeOwnerID(grant.Grantee.ID)) case types.TypeGroup: split := strings.Split(*grant.Grantee.URI, "/") - grantee = scw.StringPtr(split[len(split)-1]) + grantee = new(split[len(split)-1]) } customGrants = append(customGrants, CustomS3ACLGrant{ Grantee: grantee, diff --git a/internal/namespaces/rdb/v1/custom_acl.go b/internal/namespaces/rdb/v1/custom_acl.go index cab2dde8f4..64e8a97387 100644 --- a/internal/namespaces/rdb/v1/custom_acl.go +++ b/internal/namespaces/rdb/v1/custom_acl.go @@ -144,7 +144,7 @@ func aclAddBuilder(c *core.Command) *core.Command { _, err := api.WaitForInstance(&rdb.WaitForInstanceRequest{ InstanceID: args.InstanceID, Region: args.Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -272,7 +272,7 @@ func aclDeleteBuilder(c *core.Command) *core.Command { _, err := api.WaitForInstance(&rdb.WaitForInstanceRequest{ InstanceID: args.InstanceID, Region: args.Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -322,7 +322,7 @@ func aclSetBuilder(c *core.Command) *core.Command { client := core.ExtractClient(ctx) api := rdb.NewAPI(client) - aclRules := []*rdb.ACLRuleRequest(nil) + aclRules := make([]*rdb.ACLRuleRequest, 0, len(args.ACLRuleIPs)) for _, ip := range args.ACLRuleIPs { aclRules = append(aclRules, &rdb.ACLRuleRequest{ IP: ip, @@ -358,7 +358,7 @@ func aclSetBuilder(c *core.Command) *core.Command { _, err := api.WaitForInstance(&rdb.WaitForInstanceRequest{ InstanceID: args.InstanceID, Region: args.Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/namespaces/rdb/v1/custom_backup.go b/internal/namespaces/rdb/v1/custom_backup.go index ebb997dfd2..354e8ceda5 100644 --- a/internal/namespaces/rdb/v1/custom_backup.go +++ b/internal/namespaces/rdb/v1/custom_backup.go @@ -76,7 +76,7 @@ func backupWaitCommand() *core.Command { return api.WaitForDatabaseBackup(&rdb.WaitForDatabaseBackupRequest{ DatabaseBackupID: argsI.(*backupWaitRequest).BackupID, Region: argsI.(*backupWaitRequest).Region, - Timeout: scw.TimeDurationPtr(argsI.(*backupWaitRequest).Timeout), + Timeout: new(argsI.(*backupWaitRequest).Timeout), RetryInterval: core.DefaultRetryInterval, }) }, @@ -402,7 +402,7 @@ func backupDownloadCommand() *core.Command { backupRequest := &rdb.WaitForDatabaseBackupRequest{ DatabaseBackupID: args.BackupID, Region: args.Region, - Timeout: scw.TimeDurationPtr(backupActionTimeout), + Timeout: new(backupActionTimeout), RetryInterval: core.DefaultRetryInterval, } diff --git a/internal/namespaces/rdb/v1/custom_endpoint_test.go b/internal/namespaces/rdb/v1/custom_endpoint_test.go index 75c37d7ae6..d696fb389e 100644 --- a/internal/namespaces/rdb/v1/custom_endpoint_test.go +++ b/internal/namespaces/rdb/v1/custom_endpoint_test.go @@ -268,7 +268,7 @@ func checkEndpoints( Region: instance.Region, ResourceID: &instance.ID, ResourceType: "rdb_instance", - IsIPv6: scw.BoolPtr(false), + IsIPv6: new(false), }, scw.WithAllPages()) if err != nil { t.Errorf("could not list IPs: %v", err) diff --git a/internal/namespaces/rdb/v1/custom_instance.go b/internal/namespaces/rdb/v1/custom_instance.go index 00482f8c6a..9f860ce10d 100644 --- a/internal/namespaces/rdb/v1/custom_instance.go +++ b/internal/namespaces/rdb/v1/custom_instance.go @@ -198,7 +198,7 @@ func instanceCloneBuilder(c *core.Command) *core.Command { return api.WaitForInstance(&rdbSDK.WaitForInstanceRequest{ InstanceID: respI.(*rdbSDK.Instance).ID, Region: respI.(*rdbSDK.Instance).Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -318,7 +318,7 @@ func instanceCreateBuilder(c *core.Command) *core.Command { instance, err := api.WaitForInstance(&rdbSDK.WaitForInstanceRequest{ InstanceID: respI.(CreateInstanceResult).ID, Region: respI.(CreateInstanceResult).Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -510,7 +510,7 @@ func instanceUpgradeBuilder(c *core.Command) *core.Command { return api.WaitForInstance(&rdbSDK.WaitForInstanceRequest{ InstanceID: instance.ID, Region: instance.Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -669,7 +669,7 @@ func instanceUpdateBuilder(_ *core.Command) *core.Command { return api.WaitForInstance(&rdbSDK.WaitForInstanceRequest{ InstanceID: respI.(*rdbSDK.Instance).ID, Region: respI.(*rdbSDK.Instance).Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) }, @@ -696,7 +696,7 @@ func instanceDeleteBuilder(c *core.Command) *core.Command { instance, err := api.WaitForInstance(&rdbSDK.WaitForInstanceRequest{ InstanceID: respI.(*rdbSDK.Instance).ID, Region: respI.(*rdbSDK.Instance).Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -732,7 +732,7 @@ func instanceWaitCommand() *core.Command { return api.WaitForInstance(&rdbSDK.WaitForInstanceRequest{ Region: argsI.(*serverWaitRequest).Region, InstanceID: argsI.(*serverWaitRequest).InstanceID, - Timeout: scw.TimeDurationPtr(argsI.(*serverWaitRequest).Timeout), + Timeout: new(argsI.(*serverWaitRequest).Timeout), RetryInterval: core.DefaultRetryInterval, }) }, diff --git a/internal/namespaces/rdb/v1/custom_log.go b/internal/namespaces/rdb/v1/custom_log.go index 48ff713ee9..396892b21a 100644 --- a/internal/namespaces/rdb/v1/custom_log.go +++ b/internal/namespaces/rdb/v1/custom_log.go @@ -39,7 +39,7 @@ func logPrepareBuilder(c *core.Command) *core.Command { logs, err := api.WaitForInstanceLog(&rdb.WaitForInstanceLogRequest{ InstanceLogID: getResp.InstanceLogs[i].ID, Region: getResp.InstanceLogs[i].Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -172,7 +172,7 @@ func logDownloadCommand() *core.Command { logs, err := api.WaitForInstanceLog(&rdb.WaitForInstanceLogRequest{ InstanceLogID: prepareResp.InstanceLogs[i].ID, Region: prepareResp.InstanceLogs[i].Region, - Timeout: scw.TimeDurationPtr(instanceActionTimeout), + Timeout: new(instanceActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/namespaces/redis/v1/custom.go b/internal/namespaces/redis/v1/custom.go index 9d4e79271e..552ba86cd4 100644 --- a/internal/namespaces/redis/v1/custom.go +++ b/internal/namespaces/redis/v1/custom.go @@ -13,7 +13,7 @@ func GetCommands() *core.Commands { human.RegisterMarshalerFunc(redis.Cluster{}, redisClusterGetMarshalerFunc) - cmds.Merge(core.NewCommands(clusterWaitCommand())) + cmds.Merge(core.NewCommands(clusterWaitCommand(), clusterConnectCommand())) cmds.MustFind("redis", "cluster", "create").Override(clusterCreateBuilder) cmds.MustFind("redis", "cluster", "delete").Override(clusterDeleteBuilder) cmds.MustFind("redis", "acl", "add").Override(ACLAddListBuilder) diff --git a/internal/namespaces/redis/v1/custom_acl.go b/internal/namespaces/redis/v1/custom_acl.go index 6a9fbf1508..d5a6a7cba8 100644 --- a/internal/namespaces/redis/v1/custom_acl.go +++ b/internal/namespaces/redis/v1/custom_acl.go @@ -73,7 +73,7 @@ func redisACLUpdateCommand() *core.Command { waitReq := &redis.WaitForClusterRequest{ ClusterID: args.ClusterID, Zone: scw.Zone(args.Zone), - Timeout: scw.TimeDurationPtr(redisActionTimeout), + Timeout: new(redisActionTimeout), } _, err = api.WaitForCluster(waitReq) if err != nil { diff --git a/internal/namespaces/redis/v1/custom_cluster.go b/internal/namespaces/redis/v1/custom_cluster.go index b3eedafc5f..d6dce37412 100644 --- a/internal/namespaces/redis/v1/custom_cluster.go +++ b/internal/namespaces/redis/v1/custom_cluster.go @@ -3,13 +3,20 @@ package redis import ( "context" "errors" + "fmt" + "io" "net/http" + "os" + "os/exec" + "path/filepath" "reflect" + "strconv" "strings" "time" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" + "github.com/scaleway/scaleway-cli/v2/internal/interactive" "github.com/scaleway/scaleway-sdk-go/api/redis/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -51,7 +58,7 @@ func clusterCreateBuilder(c *core.Command) *core.Command { cluster, err := api.WaitForCluster(&redis.WaitForClusterRequest{ ClusterID: respI.(*redis.Cluster).ID, Zone: respI.(*redis.Cluster).Zone, - Timeout: scw.TimeDurationPtr(redisActionTimeout), + Timeout: new(redisActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -114,7 +121,7 @@ func clusterDeleteBuilder(c *core.Command) *core.Command { cluster, err := api.WaitForCluster(&redis.WaitForClusterRequest{ ClusterID: respI.(*redis.Cluster).ID, Zone: respI.(*redis.Cluster).Zone, - Timeout: scw.TimeDurationPtr(redisActionTimeout), + Timeout: new(redisActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { @@ -316,3 +323,222 @@ func autoCompleteNodeType( return suggestions } + +type clusterConnectArgs struct { + Zone scw.Zone + PrivateNetwork bool + ClusterID string + CliRedis *string + CliArgs []string +} + +const ( + errorMessagePublicEndpointNotFound = "public endpoint not found" + errorMessagePrivateEndpointNotFound = "private endpoint not found" + errorMessageEndpointNotFound = "any endpoint is associated on your cluster" + errorMessageRedisCliNotFound = "redis-cli is not installed. Please install redis-cli to use this command" +) + +func getPublicEndpoint(endpoints []*redis.Endpoint) (*redis.Endpoint, error) { + for _, e := range endpoints { + if e.PublicNetwork != nil { + return e, nil + } + } + + return nil, fmt.Errorf("%s", errorMessagePublicEndpointNotFound) +} + +func getPrivateEndpoint(endpoints []*redis.Endpoint) (*redis.Endpoint, error) { + for _, e := range endpoints { + if e.PrivateNetwork != nil { + return e, nil + } + } + + return nil, fmt.Errorf("%s", errorMessagePrivateEndpointNotFound) +} + +func checkRedisCliInstalled(cliRedis string) error { + cmd := exec.Command(cliRedis, "--version") //nolint:gosec + if err := cmd.Run(); err != nil { + return fmt.Errorf("%s", errorMessageRedisCliNotFound) + } + + return nil +} + +func getRedisZones() []scw.Zone { + // Get zones dynamically from the Redis API SDK + // We create a minimal client just to access the Zones() method + // which doesn't require authentication + client := &scw.Client{} + api := redis.NewAPI(client) + + return api.Zones() +} + +func clusterConnectCommand() *core.Command { + return &core.Command{ + Namespace: "redis", + Resource: "cluster", + Verb: "connect", + Short: "Connect to a Redis cluster using locally installed redis-cli", + Long: "Connect to a Redis cluster using locally installed redis-cli. The command will check if redis-cli is installed, download the certificate if TLS is enabled, and prompt for the password.", + ArgsType: reflect.TypeOf(clusterConnectArgs{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "private-network", + Short: `Connect by the private network endpoint attached.`, + Required: false, + Default: core.DefaultValueSetter("false"), + }, + { + Name: "cluster-id", + Short: `UUID of the cluster`, + Required: true, + Positional: true, + }, + { + Name: "cli-redis", + Short: "Command line tool to use, default to redis-cli", + }, + { + Name: "cli-args", + Short: "Additional arguments to pass to redis-cli", + Required: false, + }, + core.ZoneArgSpec(getRedisZones()...), + }, + Run: func(ctx context.Context, argsI any) (any, error) { + args := argsI.(*clusterConnectArgs) + + cliRedis := "redis-cli" + if args.CliRedis != nil { + cliRedis = *args.CliRedis + } + + if err := checkRedisCliInstalled(cliRedis); err != nil { + return nil, err + } + + client := core.ExtractClient(ctx) + api := redis.NewAPI(client) + cluster, err := api.GetCluster(&redis.GetClusterRequest{ + Zone: args.Zone, + ClusterID: args.ClusterID, + }) + if err != nil { + return nil, err + } + + if len(cluster.Endpoints) == 0 { + return nil, fmt.Errorf("%s", errorMessageEndpointNotFound) + } + + var endpoint *redis.Endpoint + switch { + case args.PrivateNetwork: + endpoint, err = getPrivateEndpoint(cluster.Endpoints) + if err != nil { + return nil, err + } + default: + endpoint, err = getPublicEndpoint(cluster.Endpoints) + if err != nil { + return nil, err + } + } + + if len(endpoint.IPs) == 0 { + return nil, errors.New("endpoint has no IP addresses") + } + + port := endpoint.Port + + var certPath string + if cluster.TLSEnabled { + certResp, err := api.GetClusterCertificate(&redis.GetClusterCertificateRequest{ + Zone: args.Zone, + ClusterID: args.ClusterID, + }) + if err != nil { + return nil, fmt.Errorf("failed to get certificate: %w", err) + } + + certContent, err := io.ReadAll(certResp.Content) + if err != nil { + return nil, fmt.Errorf("failed to read certificate content: %w", err) + } + + tmpDir := os.TempDir() + certPath = filepath.Join(tmpDir, fmt.Sprintf("redis-cert-%s.crt", args.ClusterID)) + if err := os.WriteFile(certPath, certContent, 0o600); err != nil { + return nil, fmt.Errorf("failed to write certificate: %w", err) + } + defer func() { + if err := os.Remove(certPath); err != nil { + core.ExtractLogger(ctx).Debugf("failed to remove certificate file: %v", err) + } + }() + } + + password, err := interactive.PromptPasswordWithConfig(&interactive.PromptPasswordConfig{ + Ctx: ctx, + Prompt: "Password", + }) + if err != nil { + return nil, fmt.Errorf("failed to get password: %w", err) + } + + hostStr := endpoint.IPs[0].String() + cmdArgs := []string{ + cliRedis, + "-h", hostStr, + "-p", strconv.FormatUint(uint64(port), 10), + "-a", password, + } + + if cluster.TLSEnabled { + cmdArgs = append(cmdArgs, "--tls", "--cert", certPath) + } + + if cluster.UserName != "" { + cmdArgs = append(cmdArgs, "--user", cluster.UserName) + } + + // Add any additional arguments passed by the user + if len(args.CliArgs) > 0 { + cmdArgs = append(cmdArgs, args.CliArgs...) + } + + cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...) //nolint:gosec + cmd.Stdin = os.Stdin + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + core.ExtractLogger(ctx).Debugf("executing: %s\n", cmd.Args) + + if err := cmd.Run(); err != nil { + if exitError, ok := err.(*exec.ExitError); ok { + return nil, &core.CliError{Empty: true, Code: exitError.ExitCode()} + } + + return nil, err + } + + return &core.SuccessResult{ + Empty: true, + }, nil + }, + Examples: []*core.Example{ + { + Short: "Connect to a Redis cluster", + Raw: `scw redis cluster connect 11111111-1111-1111-1111-111111111111`, + }, + { + Short: "Connect to a Redis cluster via private network", + Raw: `scw redis cluster connect 11111111-1111-1111-1111-111111111111 private-network=true`, + }, + }, + } +} diff --git a/internal/namespaces/registry/v1/custom_docker_helper.go b/internal/namespaces/registry/v1/custom_docker_helper.go index 739934c03c..3df1cce01e 100644 --- a/internal/namespaces/registry/v1/custom_docker_helper.go +++ b/internal/namespaces/registry/v1/custom_docker_helper.go @@ -140,8 +140,12 @@ func registrySetupDockerHelperRun(ctx context.Context, argsI any) (i any, e erro ) } else { _, _ = interactive.PrintlnWithoutIndent("Docker credential helper successfully installed.") - _, _ = interactive.PrintlnWithoutIndent("The Docker credential helper will now take care of the authentication for you.") - _, _ = interactive.PrintlnWithoutIndent("You don't have to login to your registries anymore.") + _, _ = interactive.PrintlnWithoutIndent( + "The Docker credential helper will now take care of the authentication for you.", + ) + _, _ = interactive.PrintlnWithoutIndent( + "You don't have to login to your registries anymore.", + ) } return &core.SuccessResult{}, nil diff --git a/internal/namespaces/registry/v1/custom_docker_helper_test.go b/internal/namespaces/registry/v1/custom_docker_helper_test.go index f03a36becb..388134a5dd 100644 --- a/internal/namespaces/registry/v1/custom_docker_helper_test.go +++ b/internal/namespaces/registry/v1/custom_docker_helper_test.go @@ -37,7 +37,7 @@ func TestRegistryInstallDockerHelperCommand(t *testing.T) { require.NoError(t, err) assert.JSONEq( t, - "{\n \"credHelpers\": {\n \"rg.fr-par.scw.cloud\": \"scw\",\n \"rg.nl-ams.scw.cloud\": \"scw\",\n \"rg.pl-waw.scw.cloud\": \"scw\"\n }\n}\n", + "{\n \"credHelpers\": {\n \"rg.fr-par.scw.cloud\": \"scw\",\n \"rg.it-mil.scw.cloud\": \"scw\",\n \"rg.nl-ams.scw.cloud\": \"scw\",\n \"rg.pl-waw.scw.cloud\": \"scw\"\n }\n}\n", string(dockerConfigContent), ) }, diff --git a/internal/namespaces/registry/v1/testdata/test-registry-docker-helper-list-command-simple.golden b/internal/namespaces/registry/v1/testdata/test-registry-docker-helper-list-command-simple.golden index c24f907ae3..11e038987e 100644 --- a/internal/namespaces/registry/v1/testdata/test-registry-docker-helper-list-command-simple.golden +++ b/internal/namespaces/registry/v1/testdata/test-registry-docker-helper-list-command-simple.golden @@ -1,4 +1,4 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -{"rg.fr-par.scw.cloud":"scaleway","rg.nl-ams.scw.cloud":"scaleway","rg.pl-waw.scw.cloud":"scaleway"}🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -{"rg.fr-par.scw.cloud":"scaleway","rg.nl-ams.scw.cloud":"scaleway","rg.pl-waw.scw.cloud":"scaleway"} \ No newline at end of file +{"rg.fr-par.scw.cloud":"scaleway","rg.it-mil.scw.cloud":"scaleway","rg.nl-ams.scw.cloud":"scaleway","rg.pl-waw.scw.cloud":"scaleway"}🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{"rg.fr-par.scw.cloud":"scaleway","rg.it-mil.scw.cloud":"scaleway","rg.nl-ams.scw.cloud":"scaleway","rg.pl-waw.scw.cloud":"scaleway"} \ No newline at end of file diff --git a/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-simple.cassette.yaml b/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-simple.cassette.yaml index 3d14830a82..e21e5544a5 100644 --- a/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-simple.cassette.yaml +++ b/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-simple.cassette.yaml @@ -2,26 +2,34 @@ version: 1 interactions: - request: - body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"rleone-macbook", + "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2025-09-08T15:21:36.563446Z", + "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW363CZ5SRN5YHQBGXY method: GET response: - body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"rleone-macbook", + "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2025-09-08T15:21:36.563446Z", + "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' headers: Content-Length: - - "109" + - "387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 14 Sep 2023 08:47:57 GMT + - Tue, 24 Feb 2026 16:35:16 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -29,7 +37,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa69b56e-0b6a-4363-9d0d-66048c5b20f3 - status: 401 Unauthorized - code: 401 + - 4e7e444d-511b-48f2-b1d4-71ac907b519d + status: 200 OK + code: 200 duration: "" diff --git a/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-with-profile.cassette.yaml b/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-with-profile.cassette.yaml index 6b98a96842..cd3bb556b3 100644 --- a/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-with-profile.cassette.yaml +++ b/internal/namespaces/registry/v1/testdata/test-registry-install-docker-helper-command-with-profile.cassette.yaml @@ -2,26 +2,34 @@ version: 1 interactions: - request: - body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"rleone-macbook", + "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2025-09-08T15:21:36.563446Z", + "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW363CZ5SRN5YHQBGXY method: GET response: - body: '{"message":"authentication is denied","method":"api_key","reason":"not_found","type":"denied_authentication"}' + body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"rleone-macbook", + "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2025-09-08T15:21:36.563446Z", + "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", + "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' headers: Content-Length: - - "109" + - "387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 14 Sep 2023 08:47:57 GMT + - Tue, 24 Feb 2026 16:35:16 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -29,7 +37,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3066976-183a-4b60-9890-09fe02d647a5 - status: 401 Unauthorized - code: 401 + - dc7798a4-4f6c-4504-ace8-25f2bef4116c + status: 200 OK + code: 200 duration: "" diff --git a/internal/namespaces/s2s_vpn/v1alpha1/custom.go b/internal/namespaces/s2s_vpn/v1alpha1/custom.go new file mode 100644 index 0000000000..abd6dc91af --- /dev/null +++ b/internal/namespaces/s2s_vpn/v1alpha1/custom.go @@ -0,0 +1,11 @@ +package s2s_vpn + +import "github.com/scaleway/scaleway-cli/v2/core" + +func GetCommands() *core.Commands { + cmds := GetGeneratedCommands() + + cmds.MustFind("s2s-vpn").Groups = []string{"network"} + + return cmds +} diff --git a/internal/namespaces/s2s_vpn/v1alpha1/s2s_vpn_cli.go b/internal/namespaces/s2s_vpn/v1alpha1/s2s_vpn_cli.go new file mode 100644 index 0000000000..1408d79e01 --- /dev/null +++ b/internal/namespaces/s2s_vpn/v1alpha1/s2s_vpn_cli.go @@ -0,0 +1,1820 @@ +// This file was automatically generated. DO NOT EDIT. +// If you have any remark or suggestion do not hesitate to open an issue. + +package s2s_vpn + +import ( + "context" + "reflect" + + "github.com/scaleway/scaleway-cli/v2/core" + s2s_vpn "github.com/scaleway/scaleway-sdk-go/api/s2s_vpn/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +// always import dependencies +var ( + _ = scw.RegionFrPar +) + +func GetGeneratedCommands() *core.Commands { + return core.NewCommands( + s2sVpnRoot(), + s2sVpnVpnGateway(), + s2sVpnVpnGatewayType(), + s2sVpnConnection(), + s2sVpnCustomerGateway(), + s2sVpnRoutingPolicy(), + s2sVpnVpnGatewayTypeList(), + s2sVpnVpnGatewayList(), + s2sVpnVpnGatewayGet(), + s2sVpnVpnGatewayCreate(), + s2sVpnVpnGatewayUpdate(), + s2sVpnVpnGatewayDelete(), + s2sVpnConnectionList(), + s2sVpnConnectionGet(), + s2sVpnConnectionCreate(), + s2sVpnConnectionUpdate(), + s2sVpnConnectionDelete(), + s2sVpnConnectionRenewPsk(), + s2sVpnConnectionSetRoutingPolicy(), + s2sVpnConnectionDetachRoutingPolicy(), + s2sVpnConnectionEnableRoutePropagation(), + s2sVpnConnectionDisableRoutePropagation(), + s2sVpnCustomerGatewayList(), + s2sVpnCustomerGatewayGet(), + s2sVpnCustomerGatewayCreate(), + s2sVpnCustomerGatewayUpdate(), + s2sVpnCustomerGatewayDelete(), + s2sVpnRoutingPolicyList(), + s2sVpnRoutingPolicyGet(), + s2sVpnRoutingPolicyCreate(), + s2sVpnRoutingPolicyUpdate(), + s2sVpnRoutingPolicyDelete(), + ) +} + +func s2sVpnRoot() *core.Command { + return &core.Command{ + Short: `This API allows you to manage your Site-to-Site VPN`, + Long: `This API allows you to manage your Site-to-Site VPN.`, + Namespace: "s2s-vpn", + } +} + +func s2sVpnVpnGateway() *core.Command { + return &core.Command{ + Short: `A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways.`, + Long: `A VPN gateway is an IPsec peer managed by Scaleway. It can support multiple connections to customer gateways.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway", + } +} + +func s2sVpnVpnGatewayType() *core.Command { + return &core.Command{ + Short: `VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway.`, + Long: `VPN gateways come in various shapes, sizes and prices, which are described by VPN gateway types. They represent the different commercial offer types for VPN gateways available at Scaleway.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway-type", + } +} + +func s2sVpnConnection() *core.Command { + return &core.Command{ + Short: `A connection represents the IPsec tunnel between VPN gateway and customer gateway.`, + Long: `A connection represents the IPsec tunnel between VPN gateway and customer gateway.`, + Namespace: "s2s-vpn", + Resource: "connection", + } +} + +func s2sVpnCustomerGateway() *core.Command { + return &core.Command{ + Short: `A customer gateway represents a Scaleway client's device that communicates with a VPN gateway.`, + Long: `A customer gateway represents a Scaleway client's device that communicates with a VPN gateway.`, + Namespace: "s2s-vpn", + Resource: "customer-gateway", + } +} + +func s2sVpnRoutingPolicy() *core.Command { + return &core.Command{ + Short: `By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow.`, + Long: `By default, all routes across the Site-to-Site VPN (between VPN gateway and customer gateway) are blocked. Routing policies allow you to set filters to define the IP prefixes to allow.`, + Namespace: "s2s-vpn", + Resource: "routing-policy", + } +} + +func s2sVpnVpnGatewayTypeList() *core.Command { + return &core.Command{ + Short: `List VPN gateway types`, + Long: `List the different VPN gateway commercial offer types available at Scaleway. The response is an array of objects describing the name and technical details of each available VPN gateway type.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway-type", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.ListVpnGatewayTypesRequest{}), + ArgSpecs: core.ArgSpecs{ + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.ListVpnGatewayTypesRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListVpnGatewayTypes(request, opts...) + if err != nil { + return nil, err + } + + return resp.GatewayTypes, nil + }, + } +} + +func s2sVpnVpnGatewayList() *core.Command { + return &core.Command{ + Short: `List VPN gateways`, + Long: `List all your VPN gateways. A number of filters are available, including Project ID, name, tags and status.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.ListVpnGatewaysRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `Order in which to return results`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + "type_asc", + "type_desc", + "status_asc", + "status_desc", + }, + }, + { + Name: "project-id", + Short: `Project ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `VPN gateway name to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "statuses.{index}", + Short: `VPN gateway statuses to filter for`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_status", + "configuring", + "failed", + "provisioning", + "active", + "deprovisioning", + "locked", + }, + }, + { + Name: "gateway-types.{index}", + Short: `Filter for VPN gateways of these types`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "private-network-ids.{index}", + Short: `Filter for VPN gateways attached to these private networks`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "organization-id", + Short: `Organization ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.ListVpnGatewaysRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListVpnGateways(request, opts...) + if err != nil { + return nil, err + } + + return resp.Gateways, nil + }, + } +} + +func s2sVpnVpnGatewayGet() *core.Command { + return &core.Command{ + Short: `Get a VPN gateway`, + Long: `Get a VPN gateway for the given VPN gateway ID.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.GetVpnGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "gateway-id", + Short: `ID of the requested VPN gateway`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.GetVpnGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.GetVpnGateway(request) + }, + } +} + +func s2sVpnVpnGatewayCreate() *core.Command { + return &core.Command{ + Short: `Create VPN gateway`, + Long: `Create VPN gateway.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.CreateVpnGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `Name of the VPN gateway`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the VPN gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "gateway-type", + Short: `VPN gateway type (commercial offer type)`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "public-config.ipam-ipv4-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "public-config.ipam-ipv6-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "private-network-id", + Short: `ID of the Private Network to attach to the VPN gateway`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "public-tunnel-config.single-ipv4-tunnel.ipam-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "public-tunnel-config.single-ipv6-tunnel.ipam-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "public-tunnel-config.dual-ipv4v6-tunnel.ipam-ipv4-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "public-tunnel-config.dual-ipv4v6-tunnel.ipam-ipv6-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipam-private-ipv4-id", + Short: `ID of the IPAM private IPv4 address to attach to the VPN gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipam-private-ipv6-id", + Short: `ID of the IPAM private IPv6 address to attach to the VPN gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "zone", + Short: `Availability Zone where the VPN gateway should be provisioned. If no zone is specified, the VPN gateway will be automatically placed.`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.CreateVpnGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.CreateVpnGateway(request) + }, + } +} + +func s2sVpnVpnGatewayUpdate() *core.Command { + return &core.Command{ + Short: `Update a VPN gateway`, + Long: `Update an existing VPN gateway, specified by its VPN gateway ID. Only its name and tags can be updated.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.UpdateVpnGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "gateway-id", + Short: `ID of the VPN gateway to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "name", + Short: `Name of the VPN gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the VPN Gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.UpdateVpnGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.UpdateVpnGateway(request) + }, + } +} + +func s2sVpnVpnGatewayDelete() *core.Command { + return &core.Command{ + Short: `Delete a VPN gateway`, + Long: `Delete an existing VPN gateway, specified by its VPN gateway ID.`, + Namespace: "s2s-vpn", + Resource: "vpn-gateway", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.DeleteVpnGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "gateway-id", + Short: `ID of the VPN gateway to delete`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.DeleteVpnGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.DeleteVpnGateway(request) + }, + } +} + +func s2sVpnConnectionList() *core.Command { + return &core.Command{ + Short: `List connections`, + Long: `List all your connections. A number of filters are available, including Project ID, name, tags and status.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.ListConnectionsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `Order in which to return results`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + "status_asc", + "status_desc", + }, + }, + { + Name: "project-id", + Short: `Project ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Connection name to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "statuses.{index}", + Short: `Connection statuses to filter for`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_status", + "active", + "limited_connectivity", + "down", + "locked", + }, + }, + { + Name: "is-ipv6", + Short: `Filter connections with IP version of IPSec tunnel`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "routing-policy-ids.{index}", + Short: `Filter for connections using these routing policies`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "route-propagation-enabled", + Short: `Filter for connections with route propagation enabled`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "vpn-gateway-ids.{index}", + Short: `Filter for connections attached to these VPN gateways`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "customer-gateway-ids.{index}", + Short: `Filter for connections attached to these customer gateways`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "organization-id", + Short: `Organization ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.ListConnectionsRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListConnections(request, opts...) + if err != nil { + return nil, err + } + + return resp.Connections, nil + }, + } +} + +func s2sVpnConnectionGet() *core.Command { + return &core.Command{ + Short: `Get a connection`, + Long: `Get a connection for the given connection ID. The response object includes information about the connection's various configuration details.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.GetConnectionRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the requested connection`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.GetConnectionRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.GetConnection(request) + }, + } +} + +func s2sVpnConnectionCreate() *core.Command { + return &core.Command{ + Short: `Create a connection`, + Long: `Create a connection.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.CreateConnectionRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `Name of the connection`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the connection`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "is-ipv6", + Short: `Defines IP version of the IPSec Tunnel`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "initiation-policy", + Short: `Who initiates the IPsec tunnel`, + Required: true, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_initiation_policy", + "vpn_gateway", + "customer_gateway", + }, + }, + { + Name: "ikev2-ciphers.{index}.encryption", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_encryption", + "aes128", + "aes192", + "aes256", + "aes128gcm", + "aes192gcm", + "aes256gcm", + "aes128ccm", + "aes256ccm", + "chacha20poly1305", + }, + }, + { + Name: "ikev2-ciphers.{index}.integrity", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_integrity", + "sha256", + "sha384", + "sha512", + }, + }, + { + Name: "ikev2-ciphers.{index}.dh-group", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_dhgroup", + "modp2048", + "modp3072", + "modp4096", + "ecp256", + "ecp384", + "ecp521", + "curve25519", + }, + }, + { + Name: "esp-ciphers.{index}.encryption", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_encryption", + "aes128", + "aes192", + "aes256", + "aes128gcm", + "aes192gcm", + "aes256gcm", + "aes128ccm", + "aes256ccm", + "chacha20poly1305", + }, + }, + { + Name: "esp-ciphers.{index}.integrity", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_integrity", + "sha256", + "sha384", + "sha512", + }, + }, + { + Name: "esp-ciphers.{index}.dh-group", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_dhgroup", + "modp2048", + "modp3072", + "modp4096", + "ecp256", + "ecp384", + "ecp521", + "curve25519", + }, + }, + { + Name: "enable-route-propagation", + Short: `Defines whether route propagation is enabled or not.`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "vpn-gateway-id", + Short: `ID of the VPN gateway to attach to the connection`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "customer-gateway-id", + Short: `ID of the customer gateway to attach to the connection`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "bgp-config-ipv4.routing-policy-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "bgp-config-ipv4.private-ip", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "bgp-config-ipv4.peer-private-ip", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "bgp-config-ipv6.routing-policy-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "bgp-config-ipv6.private-ip", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "bgp-config-ipv6.peer-private-ip", + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.CreateConnectionRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.CreateConnection(request) + }, + } +} + +func s2sVpnConnectionUpdate() *core.Command { + return &core.Command{ + Short: `Update a connection`, + Long: `Update an existing connection, specified by its connection ID.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.UpdateConnectionRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "name", + Short: `Name of the connection`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the connection`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "initiation-policy", + Short: `Who initiates the IPsec tunnel`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_initiation_policy", + "vpn_gateway", + "customer_gateway", + }, + }, + { + Name: "ikev2-ciphers.{index}.encryption", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_encryption", + "aes128", + "aes192", + "aes256", + "aes128gcm", + "aes192gcm", + "aes256gcm", + "aes128ccm", + "aes256ccm", + "chacha20poly1305", + }, + }, + { + Name: "ikev2-ciphers.{index}.integrity", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_integrity", + "sha256", + "sha384", + "sha512", + }, + }, + { + Name: "ikev2-ciphers.{index}.dh-group", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_dhgroup", + "modp2048", + "modp3072", + "modp4096", + "ecp256", + "ecp384", + "ecp521", + "curve25519", + }, + }, + { + Name: "esp-ciphers.{index}.encryption", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_encryption", + "aes128", + "aes192", + "aes256", + "aes128gcm", + "aes192gcm", + "aes256gcm", + "aes128ccm", + "aes256ccm", + "chacha20poly1305", + }, + }, + { + Name: "esp-ciphers.{index}.integrity", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_integrity", + "sha256", + "sha384", + "sha512", + }, + }, + { + Name: "esp-ciphers.{index}.dh-group", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_dhgroup", + "modp2048", + "modp3072", + "modp4096", + "ecp256", + "ecp384", + "ecp521", + "curve25519", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.UpdateConnectionRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.UpdateConnection(request) + }, + } +} + +func s2sVpnConnectionDelete() *core.Command { + return &core.Command{ + Short: `Delete a connection`, + Long: `Delete an existing connection, specified by its connection ID.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.DeleteConnectionRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection to delete`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.DeleteConnectionRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + e = api.DeleteConnection(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "connection", + Verb: "delete", + }, nil + }, + } +} + +func s2sVpnConnectionRenewPsk() *core.Command { + return &core.Command{ + Short: `Renew pre-shared key`, + Long: `Renew pre-shared key for a given connection.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "renew-psk", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.RenewConnectionPskRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection to renew the PSK`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.RenewConnectionPskRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.RenewConnectionPsk(request) + }, + } +} + +func s2sVpnConnectionSetRoutingPolicy() *core.Command { + return &core.Command{ + Short: `Set a new routing policy`, + Long: `Set a new routing policy on a connection, overriding the existing one if present, specified by its connection ID.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "set-routing-policy", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.SetRoutingPolicyRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection whose routing policy is being updated`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "routing-policy-v4", + Short: `ID of the routing policy to set for the BGP IPv4 session`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "routing-policy-v6", + Short: `ID of the routing policy to set for the BGP IPv6 session`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.SetRoutingPolicyRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.SetRoutingPolicy(request) + }, + } +} + +func s2sVpnConnectionDetachRoutingPolicy() *core.Command { + return &core.Command{ + Short: `Detach a routing policy`, + Long: `Detach an existing routing policy from a connection, specified by its connection ID.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "detach-routing-policy", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.DetachRoutingPolicyRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection from which routing policy is being detached`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "routing-policy-v4", + Short: `ID of the routing policy to detach from the BGP IPv4 session`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "routing-policy-v6", + Short: `ID of the routing policy to detach from the BGP IPv6 session`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.DetachRoutingPolicyRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.DetachRoutingPolicy(request) + }, + } +} + +func s2sVpnConnectionEnableRoutePropagation() *core.Command { + return &core.Command{ + Short: `Enable route propagation`, + Long: `Enable all allowed prefixes (defined in a routing policy) to be announced in the BGP session. This allows traffic to flow between the attached VPC and the on-premises infrastructure along the announced routes. Note that by default, even when route propagation is enabled, all routes are blocked. It is essential to attach a routing policy to define the ranges of routes to announce.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "enable-route-propagation", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.EnableRoutePropagationRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection on which to enable route propagation`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.EnableRoutePropagationRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.EnableRoutePropagation(request) + }, + } +} + +func s2sVpnConnectionDisableRoutePropagation() *core.Command { + return &core.Command{ + Short: `Disable route propagation`, + Long: `Prevent any prefixes from being announced in the BGP session. Traffic will not be able to flow over the VPN Gateway until route propagation is re-enabled.`, + Namespace: "s2s-vpn", + Resource: "connection", + Verb: "disable-route-propagation", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.DisableRoutePropagationRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "connection-id", + Short: `ID of the connection on which to disable route propagation`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.DisableRoutePropagationRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.DisableRoutePropagation(request) + }, + } +} + +func s2sVpnCustomerGatewayList() *core.Command { + return &core.Command{ + Short: `List customer gateways`, + Long: `List all your customer gateways. A number of filters are available, including Project ID, name, and tags.`, + Namespace: "s2s-vpn", + Resource: "customer-gateway", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.ListCustomerGatewaysRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `Order in which to return results`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + }, + }, + { + Name: "project-id", + Short: `Project ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Customer gateway name to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "organization-id", + Short: `Organization ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.ListCustomerGatewaysRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListCustomerGateways(request, opts...) + if err != nil { + return nil, err + } + + return resp.Gateways, nil + }, + } +} + +func s2sVpnCustomerGatewayGet() *core.Command { + return &core.Command{ + Short: `Get a customer gateway`, + Long: `Get a customer gateway for the given customer gateway ID.`, + Namespace: "s2s-vpn", + Resource: "customer-gateway", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.GetCustomerGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "gateway-id", + Short: `ID of the requested customer gateway`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.GetCustomerGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.GetCustomerGateway(request) + }, + } +} + +func s2sVpnCustomerGatewayCreate() *core.Command { + return &core.Command{ + Short: `Create a customer gateway`, + Long: `Create a customer gateway.`, + Namespace: "s2s-vpn", + Resource: "customer-gateway", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.CreateCustomerGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `Name of the customer gateway`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipv4-public", + Short: `Public IPv4 address of the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipv6-public", + Short: `Public IPv6 address of the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "asn", + Short: `AS Number of the customer gateway`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.CreateCustomerGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.CreateCustomerGateway(request) + }, + } +} + +func s2sVpnCustomerGatewayUpdate() *core.Command { + return &core.Command{ + Short: `Update a customer gateway`, + Long: `Update an existing customer gateway, specified by its customer gateway ID. You can update its name, tags, public IPv4 & IPv6 address and AS Number.`, + Namespace: "s2s-vpn", + Resource: "customer-gateway", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.UpdateCustomerGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "gateway-id", + Short: `ID of the customer gateway to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "name", + Short: `Name of the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipv4-public", + Short: `Public IPv4 address of the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipv6-public", + Short: `Public IPv6 address of the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "asn", + Short: `AS Number of the customer gateway`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.UpdateCustomerGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.UpdateCustomerGateway(request) + }, + } +} + +func s2sVpnCustomerGatewayDelete() *core.Command { + return &core.Command{ + Short: `Delete a customer gateway`, + Long: `Delete an existing customer gateway, specified by its customer gateway ID.`, + Namespace: "s2s-vpn", + Resource: "customer-gateway", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.DeleteCustomerGatewayRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "gateway-id", + Short: `ID of the customer gateway to delete`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.DeleteCustomerGatewayRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + e = api.DeleteCustomerGateway(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "customer-gateway", + Verb: "delete", + }, nil + }, + } +} + +func s2sVpnRoutingPolicyList() *core.Command { + return &core.Command{ + Short: `List routing policies`, + Long: `List all routing policies in a given region. A routing policy can be attached to one or multiple connections (S2S VPN connections).`, + Namespace: "s2s-vpn", + Resource: "routing-policy", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.ListRoutingPoliciesRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `Order in which to return results`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + }, + }, + { + Name: "project-id", + Short: `Project ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Routing policy name to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "ipv6", + Short: `Filter for the routing policies based on IP prefixes version`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "organization-id", + Short: `Organization ID to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.ListRoutingPoliciesRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListRoutingPolicies(request, opts...) + if err != nil { + return nil, err + } + + return resp.RoutingPolicies, nil + }, + } +} + +func s2sVpnRoutingPolicyGet() *core.Command { + return &core.Command{ + Short: `Get routing policy`, + Long: `Get a routing policy for the given routing policy ID. The response object gives information including the policy's name, tags and prefix filters.`, + Namespace: "s2s-vpn", + Resource: "routing-policy", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.GetRoutingPolicyRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "routing-policy-id", + Short: `ID of the routing policy to get`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.GetRoutingPolicyRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.GetRoutingPolicy(request) + }, + } +} + +func s2sVpnRoutingPolicyCreate() *core.Command { + return &core.Command{ + Short: `Create a routing policy`, + Long: `Create a routing policy. Routing policies allow you to set IP prefix filters to define the incoming route announcements to accept from the customer gateway, and the outgoing routes to announce to the customer gateway.`, + Namespace: "s2s-vpn", + Resource: "routing-policy", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.CreateRoutingPolicyRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `Name of the routing policy`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the routing policy`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "is-ipv6", + Short: `IP prefixes version of the routing policy`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "prefix-filter-in.{index}", + Short: `IP prefixes to accept from the peer (ranges of route announcements to accept)`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "prefix-filter-out.{index}", + Short: `IP prefix filters to advertise to the peer (ranges of routes to advertise)`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.CreateRoutingPolicyRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.CreateRoutingPolicy(request) + }, + } +} + +func s2sVpnRoutingPolicyUpdate() *core.Command { + return &core.Command{ + Short: `Update a routing policy`, + Long: `Update an existing routing policy, specified by its routing policy ID. Its name, tags and incoming/outgoing prefix filters can be updated.`, + Namespace: "s2s-vpn", + Resource: "routing-policy", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.UpdateRoutingPolicyRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "routing-policy-id", + Short: `ID of the routing policy to update`, + Required: true, + Deprecated: false, + Positional: true, + }, + { + Name: "name", + Short: `Name of the routing policy`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `List of tags to apply to the routing policy`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "prefix-filter-in.{index}", + Short: `IP prefixes to accept from the peer (ranges of route announcements to accept)`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "prefix-filter-out.{index}", + Short: `IP prefix filters for routes to advertise to the peer (ranges of routes to advertise)`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.UpdateRoutingPolicyRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + + return api.UpdateRoutingPolicy(request) + }, + } +} + +func s2sVpnRoutingPolicyDelete() *core.Command { + return &core.Command{ + Short: `Delete a routing policy`, + Long: `Delete an existing routing policy, specified by its routing policy ID.`, + Namespace: "s2s-vpn", + Resource: "routing-policy", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(s2s_vpn.DeleteRoutingPolicyRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "routing-policy-id", + Short: `ID of the routing policy to delete`, + Required: true, + Deprecated: false, + Positional: true, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.RegionNlAms, + scw.RegionPlWaw, + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*s2s_vpn.DeleteRoutingPolicyRequest) + + client := core.ExtractClient(ctx) + api := s2s_vpn.NewAPI(client) + e = api.DeleteRoutingPolicy(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "routing-policy", + Verb: "delete", + }, nil + }, + } +} diff --git a/internal/namespaces/searchdb/v1alpha1/custom.go b/internal/namespaces/searchdb/v1alpha1/custom.go new file mode 100644 index 0000000000..92fdad85a4 --- /dev/null +++ b/internal/namespaces/searchdb/v1alpha1/custom.go @@ -0,0 +1,88 @@ +package searchdb + +import ( + "github.com/fatih/color" + "github.com/scaleway/scaleway-cli/v2/core" + "github.com/scaleway/scaleway-cli/v2/core/human" + searchdb "github.com/scaleway/scaleway-sdk-go/api/searchdb/v1alpha1" +) + +func GetCommands() *core.Commands { + cmds := GetGeneratedCommands() + + cmds.MustFind("searchdb").Groups = []string{"database"} + + deploymentStatusMarshalSpecs := human.EnumMarshalSpecs{ + searchdb.DeploymentStatusUnknownStatus: &human.EnumMarshalSpec{ + Attribute: color.Faint, + Value: "unknown", + }, + searchdb.DeploymentStatusReady: { + Attribute: color.FgGreen, + Value: "ready", + }, + searchdb.DeploymentStatusCreating: { + Attribute: color.FgBlue, + Value: "creating", + }, + searchdb.DeploymentStatusInitializing: { + Attribute: color.FgBlue, + Value: "initializing", + }, + searchdb.DeploymentStatusUpgrading: { + Attribute: color.FgBlue, + Value: "upgrading", + }, + searchdb.DeploymentStatusDeleting: { + Attribute: color.FgBlue, + Value: "deleting", + }, + searchdb.DeploymentStatusError: { + Attribute: color.FgRed, + Value: "error", + }, + searchdb.DeploymentStatusLocked: { + Attribute: color.FgRed, + Value: "locked", + }, + searchdb.DeploymentStatusLocking: { + Attribute: color.FgBlue, + Value: "locking", + }, + searchdb.DeploymentStatusUnlocking: { + Attribute: color.FgBlue, + Value: "unlocking", + }, + } + + nodeStatusMarshalSpecs := human.EnumMarshalSpecs{ + searchdb.NodeTypeStockStatusUnknownStock: &human.EnumMarshalSpec{ + Attribute: color.Faint, + Value: "unknown", + }, + searchdb.NodeTypeStockStatusLowStock: &human.EnumMarshalSpec{ + Attribute: color.FgYellow, + Value: "low_stock", + }, + searchdb.NodeTypeStockStatusOutOfStock: &human.EnumMarshalSpec{ + Attribute: color.FgRed, + Value: "out_of_stock", + }, + searchdb.NodeTypeStockStatusAvailable: &human.EnumMarshalSpec{ + Attribute: color.FgGreen, + Value: "available", + }, + } + + human.RegisterMarshalerFunc( + searchdb.DeploymentStatus(""), + human.EnumMarshalFunc(deploymentStatusMarshalSpecs), + ) + + human.RegisterMarshalerFunc( + searchdb.NodeTypeStockStatus(""), + human.EnumMarshalFunc(nodeStatusMarshalSpecs), + ) + + return cmds +} diff --git a/internal/namespaces/searchdb/v1alpha1/searchdb_cli.go b/internal/namespaces/searchdb/v1alpha1/searchdb_cli.go new file mode 100644 index 0000000000..3a8408bf00 --- /dev/null +++ b/internal/namespaces/searchdb/v1alpha1/searchdb_cli.go @@ -0,0 +1,792 @@ +// This file was automatically generated. DO NOT EDIT. +// If you have any remark or suggestion do not hesitate to open an issue. + +package searchdb + +import ( + "context" + "reflect" + + "github.com/scaleway/scaleway-cli/v2/core" + searchdb "github.com/scaleway/scaleway-sdk-go/api/searchdb/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +// always import dependencies +var ( + _ = scw.RegionFrPar +) + +func GetGeneratedCommands() *core.Commands { + return core.NewCommands( + searchdbRoot(), + searchdbDeployment(), + searchdbVersions(), + searchdbNodeTypes(), + searchdbUser(), + searchdbEndpoint(), + searchdbDeploymentCreate(), + searchdbDeploymentUpdate(), + searchdbDeploymentUpgrade(), + searchdbDeploymentGet(), + searchdbDeploymentDelete(), + searchdbDeploymentList(), + searchdbVersionsList(), + searchdbNodeTypesList(), + searchdbEndpointCreate(), + searchdbEndpointDelete(), + searchdbUserList(), + searchdbUserCreate(), + searchdbUserUpdate(), + searchdbUserDelete(), + ) +} + +func searchdbRoot() *core.Command { + return &core.Command{ + Short: `Cloud Essentials for Opensearch API`, + Long: `Cloud Essentials for Opensearch API.`, + Namespace: "searchdb", + } +} + +func searchdbDeployment() *core.Command { + return &core.Command{ + Short: ``, + Long: `Manage your Cloud Essentials for OpenSearch deployment.`, + Namespace: "searchdb", + Resource: "deployment", + } +} + +func searchdbVersions() *core.Command { + return &core.Command{ + Short: ``, + Long: `List your Cloud Essentials for OpenSearch versions.`, + Namespace: "searchdb", + Resource: "versions", + } +} + +func searchdbNodeTypes() *core.Command { + return &core.Command{ + Short: ``, + Long: `List available node types.`, + Namespace: "searchdb", + Resource: "node-types", + } +} + +func searchdbUser() *core.Command { + return &core.Command{ + Short: ``, + Long: `Manage your Cloud Essentials for OpenSearch deployment users.`, + Namespace: "searchdb", + Resource: "user", + } +} + +func searchdbEndpoint() *core.Command { + return &core.Command{ + Short: ``, + Long: `Manage your Cloud Essentials for OpenSearch deployment endpoint.`, + Namespace: "searchdb", + Resource: "endpoint", + } +} + +func searchdbDeploymentCreate() *core.Command { + return &core.Command{ + Short: `Create a new Cloud Essentials for OpenSearch deployment`, + Long: `Create a new Cloud Essentials for OpenSearch deployment.`, + Namespace: "searchdb", + Resource: "deployment", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.CreateDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + core.ProjectIDArgSpec(), + { + Name: "name", + Short: `Name of the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "node-amount", + Short: `Number of nodes`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "node-type", + Short: `Node type`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "user-name", + Short: `Username for the deployment user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "password", + Short: `Password for the deployment user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "volume.type", + Short: `Define the type of the Volume`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "unknown_type", + "sbs_5k", + "sbs_15k", + }, + }, + { + Name: "volume.size-bytes", + Short: `Define the size of the Volume`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "endpoints.{index}.private-network.private-network-id", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "version", + Short: `The Opensearch version to use`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.CreateDeploymentRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.CreateDeployment(request) + }, + } +} + +func searchdbDeploymentUpdate() *core.Command { + return &core.Command{ + Short: `Update a Cloud Essentials for OpenSearch deployment`, + Long: `Update a Cloud Essentials for OpenSearch deployment.`, + Namespace: "searchdb", + Resource: "deployment", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.UpdateDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the deployment to update`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Name of the deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "tags.{index}", + Short: `Tags of a deployment`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.UpdateDeploymentRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.UpdateDeployment(request) + }, + } +} + +func searchdbDeploymentUpgrade() *core.Command { + return &core.Command{ + Short: `Upgrade a Cloud Essentials for OpenSearch deployment`, + Long: `Upgrade a Cloud Essentials for OpenSearch deployment.`, + Namespace: "searchdb", + Resource: "deployment", + Verb: "upgrade", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.UpgradeDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `UUID of the Deployment to upgrade`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "node-amount", + Short: `Amount of node upgrade target`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "volume-size-bytes", + Short: `Volume size upgrade target`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.UpgradeDeploymentRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.UpgradeDeployment(request) + }, + } +} + +func searchdbDeploymentGet() *core.Command { + return &core.Command{ + Short: `Retrieve a specific Cloud Essentials for OpenSearch deployment`, + Long: `Retrieve a specific Cloud Essentials for OpenSearch deployment.`, + Namespace: "searchdb", + Resource: "deployment", + Verb: "get", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.GetDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `ID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.GetDeploymentRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.GetDeployment(request) + }, + } +} + +func searchdbDeploymentDelete() *core.Command { + return &core.Command{ + Short: `Delete a Cloud Essentials for OpenSearch deployment`, + Long: `Delete a Cloud Essentials for OpenSearch deployment.`, + Namespace: "searchdb", + Resource: "deployment", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.DeleteDeploymentRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `ID of the deployment`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.DeleteDeploymentRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.DeleteDeployment(request) + }, + } +} + +func searchdbDeploymentList() *core.Command { + return &core.Command{ + Short: `Retrieve a list of Cloud Essentials for OpenSearch deployments`, + Long: `Retrieve a list of Cloud Essentials for OpenSearch deployments.`, + Namespace: "searchdb", + Resource: "deployment", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.ListDeploymentsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "project-id", + Short: `ID of the Project containing the deployments`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "order-by", + Short: `Define the order of the returned deployments`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "created_at_asc", + "created_at_desc", + "name_asc", + "name_desc", + "updated_at_asc", + "updated_at_desc", + }, + }, + { + Name: "tags.{index}", + Short: `Filter by tag, only deployments with one or more matching tags will be returned`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "name", + Short: `Deployment name to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "version", + Short: `Engine version to filter for`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "organization-id", + Short: `ID of the Organization containing the deployments`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.ListDeploymentsRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListDeployments(request, opts...) + if err != nil { + return nil, err + } + + return resp.Deployments, nil + }, + } +} + +func searchdbVersionsList() *core.Command { + return &core.Command{ + Short: `List available Cloud Essentials for OpenSearch versions`, + Long: `List available Cloud Essentials for OpenSearch versions.`, + Namespace: "searchdb", + Resource: "versions", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.ListVersionsRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `Define the order of the returned version`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "version_asc", + "version_desc", + }, + }, + { + Name: "version", + Short: `Filter by version`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.ListVersionsRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListVersions(request, opts...) + if err != nil { + return nil, err + } + + return resp.Versions, nil + }, + } +} + +func searchdbNodeTypesList() *core.Command { + return &core.Command{ + Short: `Retrieve a list of available node types`, + Long: `Retrieve a list of available node types.`, + Namespace: "searchdb", + Resource: "node-types", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.ListNodeTypesRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Short: `Sort order of nodes in the response (name, vcpus or memory)`, + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + "vcpus_asc", + "vcpus_desc", + "memory_asc", + "memory_desc", + }, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.ListNodeTypesRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListNodeTypes(request, opts...) + if err != nil { + return nil, err + } + + return resp.NodeTypes, nil + }, + } +} + +func searchdbEndpointCreate() *core.Command { + return &core.Command{ + Short: `Create a new endpoint on a deployment`, + Long: `Create a new endpoint on a deployment.`, + Namespace: "searchdb", + Resource: "endpoint", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.CreateEndpointRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `ID of the deployment for which to create an endpoint`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "endpoint-spec.private-network.private-network-id", + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.CreateEndpointRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.CreateEndpoint(request) + }, + } +} + +func searchdbEndpointDelete() *core.Command { + return &core.Command{ + Short: `Delete an existing endpoint`, + Long: `Delete an existing endpoint.`, + Namespace: "searchdb", + Resource: "endpoint", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.DeleteEndpointRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "endpoint-id", + Short: `ID of the endpoint to delete`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.DeleteEndpointRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + e = api.DeleteEndpoint(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "endpoint", + Verb: "delete", + }, nil + }, + } +} + +func searchdbUserList() *core.Command { + return &core.Command{ + Short: `Retrieve a list of deployment users`, + Long: `Retrieve a list of deployment users.`, + Namespace: "searchdb", + Resource: "user", + Verb: "list", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.ListUsersRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "order-by", + Required: false, + Deprecated: false, + Positional: false, + EnumValues: []string{ + "name_asc", + "name_desc", + }, + }, + { + Name: "name", + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "deployment-id", + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec( + scw.RegionFrPar, + scw.Region(core.AllLocalities), + ), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.ListUsersRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + opts := []scw.RequestOption{scw.WithAllPages()} + if request.Region == scw.Region(core.AllLocalities) { + opts = append(opts, scw.WithRegions(api.Regions()...)) + request.Region = "" + } + resp, err := api.ListUsers(request, opts...) + if err != nil { + return nil, err + } + + return resp.Users, nil + }, + } +} + +func searchdbUserCreate() *core.Command { + return &core.Command{ + Short: `Create a new user`, + Long: `Create a new user.`, + Namespace: "searchdb", + Resource: "user", + Verb: "create", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.CreateUserRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `ID of the deployment in which to create the user`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "username", + Short: `Username of the deployment user`, + Required: false, + Deprecated: false, + Positional: false, + }, + { + Name: "password", + Short: `Password of the deployment user`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.CreateUserRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.CreateUser(request) + }, + } +} + +func searchdbUserUpdate() *core.Command { + return &core.Command{ + Short: `Update an existing user`, + Long: `Update an existing user.`, + Namespace: "searchdb", + Resource: "user", + Verb: "update", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.UpdateUserRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `ID of the deployment in which to create the user`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "username", + Short: `Username of the deployment user`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "password", + Short: `Password of the deployment user`, + Required: false, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.UpdateUserRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + + return api.UpdateUser(request) + }, + } +} + +func searchdbUserDelete() *core.Command { + return &core.Command{ + Short: `Delete an existing user`, + Long: `Delete an existing user.`, + Namespace: "searchdb", + Resource: "user", + Verb: "delete", + // Deprecated: false, + ArgsType: reflect.TypeOf(searchdb.DeleteUserRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "deployment-id", + Short: `ID of the deployment in which to create the user`, + Required: true, + Deprecated: false, + Positional: false, + }, + { + Name: "username", + Short: `Username of the deployment user`, + Required: true, + Deprecated: false, + Positional: false, + }, + core.RegionArgSpec(scw.RegionFrPar), + }, + Run: func(ctx context.Context, args any) (i any, e error) { + request := args.(*searchdb.DeleteUserRequest) + + client := core.ExtractClient(ctx) + api := searchdb.NewAPI(client) + e = api.DeleteUser(request) + if e != nil { + return nil, e + } + + return &core.SuccessResult{ + Resource: "user", + Verb: "delete", + }, nil + }, + } +} diff --git a/internal/namespaces/test/custom/testdata/test-anonymous-fields-usage.golden b/internal/namespaces/test/custom/testdata/test-anonymous-fields-usage.golden index 063bc4da2a..663af3cca8 100644 --- a/internal/namespaces/test/custom/testdata/test-anonymous-fields-usage.golden +++ b/internal/namespaces/test/custom/testdata/test-anonymous-fields-usage.golden @@ -11,7 +11,8 @@ ARGS: [field-a] Field A FLAGS: - -h, --help help for anonymous-fields + -h, --help help for anonymous-fields + --list-sub-commands List all subcommands GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/internal/namespaces/vpc/v2/custom_private_network.go b/internal/namespaces/vpc/v2/custom_private_network.go index 29dcc1fd9b..0dcd7f890f 100644 --- a/internal/namespaces/vpc/v2/custom_private_network.go +++ b/internal/namespaces/vpc/v2/custom_private_network.go @@ -70,63 +70,94 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { g.Go(func() (err error) { instanceServers, err = listCustomInstanceServers(groupCtx, client, pn) + if err != nil { + instanceServers = []customInstanceServer{} + } - return err + return nil }) g.Go(func() (err error) { baremetalServers, err = listCustomBaremetalServers(groupCtx, client, pn) + if err != nil { + baremetalServers = []customBaremetalServer{} + } - return err + return nil }) g.Go(func() (err error) { k8sClusters, err = listCustomK8sClusters(groupCtx, client, pn) + if err != nil { + k8sClusters = []customK8sCluster{} + } - return err + return nil }) g.Go(func() (err error) { lbs, err = listCustomLBs(groupCtx, client, pn) + if err != nil { + lbs = []customLB{} + } - return err + return nil }) g.Go(func() (err error) { rdbs, err = listCustomRdbs(groupCtx, client, pn) + if err != nil { + rdbs = []customRdb{} + } - return err + return nil }) g.Go(func() (err error) { redisClusters, err = listCustomRedisClusters(groupCtx, client, pn) + if err != nil { + redisClusters = []customRedis{} + } - return err + return nil }) g.Go(func() (err error) { gateways, err = listCustomGateways(groupCtx, client, pn) + if err != nil { + gateways = []customGateway{} + } - return err + return nil }) g.Go(func() (err error) { appleSiliconServers, err = listCustomAppleSiliconServers(groupCtx, client, pn) + if err != nil { + appleSiliconServers = []customAppleSiliconServer{} + } - return err + return nil }) g.Go(func() (err error) { mongoDBs, err = listCustomMongoDBs(groupCtx, client, pn) + if err != nil { + mongoDBs = []customMongoDB{} + } - return err + return nil }) g.Go(func() (err error) { ipamIPs, err = listCustomIPAMIPs(groupCtx, client, pn) + if err != nil { + ipamIPs = []customIPAMIP{} + } - return err + return nil }) g.Go(func() (err error) { inferenceDeployments, err = listCustomInferenceDeployments(groupCtx, client, pn) + if err != nil { + inferenceDeployments = []customInferenceDeployment{} + } - return err + return nil }) - if err = g.Wait(); err != nil { - return nil, err - } + _ = g.Wait() return &struct { *vpc.PrivateNetwork diff --git a/internal/namespaces/vpc/v2/vpc_cli.go b/internal/namespaces/vpc/v2/vpc_cli.go index 8308e152e3..f162795078 100644 --- a/internal/namespaces/vpc/v2/vpc_cli.go +++ b/internal/namespaces/vpc/v2/vpc_cli.go @@ -773,6 +773,13 @@ func vpcRouteCreate() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "nexthop-vpc-connector-id", + Short: `ID of the nexthop VPC Connector`, + Required: false, + Deprecated: false, + Positional: false, + }, core.RegionArgSpec( scw.RegionFrPar, scw.RegionNlAms, @@ -876,6 +883,13 @@ func vpcRouteUpdate() *core.Command { Deprecated: false, Positional: false, }, + { + Name: "nexthop-vpc-connector-id", + Short: `ID of the nexthop VPC connector`, + Required: false, + Deprecated: false, + Positional: false, + }, core.RegionArgSpec( scw.RegionFrPar, scw.RegionNlAms, @@ -1162,6 +1176,13 @@ func vpcRouteList() *core.Command { "apple_silicon_private_nic", }, }, + { + Name: "nexthop-vpc-connector-id", + Short: `Next hop VPC connector ID to filter for. Only routes with a matching next hop VPC connector ID will be returned`, + Required: false, + Deprecated: false, + Positional: false, + }, { Name: "contains", Short: `Only routes whose destination is contained in this subnet will be returned`, diff --git a/internal/namespaces/vpcgw/v1/custom_gateway.go b/internal/namespaces/vpcgw/v1/custom_gateway.go index 333848dcba..6bb7d1b399 100644 --- a/internal/namespaces/vpcgw/v1/custom_gateway.go +++ b/internal/namespaces/vpcgw/v1/custom_gateway.go @@ -8,7 +8,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" - "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -35,7 +34,7 @@ func gatewayCreateBuilder(c *core.Command) *core.Command { return api.WaitForGateway(&vpcgw.WaitForGatewayRequest{ GatewayID: getResp.ID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(gatewayActionTimeout), + Timeout: new(gatewayActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/vpcgw/v1/custom_gateway_network.go b/internal/namespaces/vpcgw/v1/custom_gateway_network.go index c1d87788cd..6c7a08cd0c 100644 --- a/internal/namespaces/vpcgw/v1/custom_gateway_network.go +++ b/internal/namespaces/vpcgw/v1/custom_gateway_network.go @@ -30,7 +30,7 @@ func gatewayNetworkCreateBuilder(c *core.Command) *core.Command { return api.WaitForGatewayNetwork(&vpcgw.WaitForGatewayNetworkRequest{ GatewayNetworkID: getResp.ID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(gatewayActionTimeout), + Timeout: new(gatewayActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -45,7 +45,7 @@ func gatewayNetworkDeleteBuilder(c *core.Command) *core.Command { gwNetwork, err := api.WaitForGatewayNetwork(&vpcgw.WaitForGatewayNetworkRequest{ GatewayNetworkID: getResp.GatewayNetworkID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(gatewayActionTimeout), + Timeout: new(gatewayActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/namespaces/vpcgw/v2/custom_gateway.go b/internal/namespaces/vpcgw/v2/custom_gateway.go index e80165d528..a89b198719 100644 --- a/internal/namespaces/vpcgw/v2/custom_gateway.go +++ b/internal/namespaces/vpcgw/v2/custom_gateway.go @@ -8,7 +8,6 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" - "github.com/scaleway/scaleway-sdk-go/scw" ) const ( @@ -35,7 +34,7 @@ func gatewayCreateBuilder(c *core.Command) *core.Command { return api.WaitForGateway(&vpcgw.WaitForGatewayRequest{ GatewayID: getResp.ID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(gatewayActionTimeout), + Timeout: new(gatewayActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } diff --git a/internal/namespaces/vpcgw/v2/custom_gateway_network.go b/internal/namespaces/vpcgw/v2/custom_gateway_network.go index e8d5ede3dc..d563b9ac38 100644 --- a/internal/namespaces/vpcgw/v2/custom_gateway_network.go +++ b/internal/namespaces/vpcgw/v2/custom_gateway_network.go @@ -29,7 +29,7 @@ func gatewayNetworkCreateBuilder(c *core.Command) *core.Command { return api.WaitForGatewayNetwork(&vpcgw.WaitForGatewayNetworkRequest{ GatewayNetworkID: getResp.ID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(gatewayActionTimeout), + Timeout: new(gatewayActionTimeout), RetryInterval: core.DefaultRetryInterval, }) } @@ -44,7 +44,7 @@ func gatewayNetworkDeleteBuilder(c *core.Command) *core.Command { gwNetwork, err := api.WaitForGatewayNetwork(&vpcgw.WaitForGatewayNetworkRequest{ GatewayNetworkID: getResp.GatewayNetworkID, Zone: getResp.Zone, - Timeout: scw.TimeDurationPtr(gatewayActionTimeout), + Timeout: new(gatewayActionTimeout), RetryInterval: core.DefaultRetryInterval, }) if err != nil { diff --git a/internal/platform/terminal/terminal_client.go b/internal/platform/terminal/terminal_client.go index c0f95149b3..4beb93aeeb 100644 --- a/internal/platform/terminal/terminal_client.go +++ b/internal/platform/terminal/terminal_client.go @@ -66,7 +66,7 @@ func (p *Platform) CreateClient( logger.Debugf("guess region from %s zone", zone) region := zone[:len(zone)-2] if validation.IsRegion(region) { - profile.DefaultRegion = scw.StringPtr(region) + profile.DefaultRegion = new(region) } else { logger.Debugf("invalid guessed region '%s'", region) } diff --git a/internal/qa/ignore.go b/internal/qa/ignore.go index b7c3b5caf4..2b097bc1d0 100644 --- a/internal/qa/ignore.go +++ b/internal/qa/ignore.go @@ -23,9 +23,14 @@ func isIgnoredError(err error) bool { var isEqual bool switch typedError := err.(type) { case *DifferentLocalizationForNamespaceError: - isEqual = areCommandsEquals(typedError.Command1, ignoredError.Command) || areCommandsEquals(typedError.Command2, ignoredError.Command) + isEqual = areCommandsEquals(typedError.Command1, ignoredError.Command) || + areCommandsEquals(typedError.Command2, ignoredError.Command) default: - isEqual = (reflect.TypeOf(err) == ignoredError.Type) && areCommandsEquals(reflect.ValueOf(err).FieldByName("Command").Interface().(*core.Command), ignoredError.Command) + isEqual = (reflect.TypeOf(err) == ignoredError.Type) && + areCommandsEquals( + reflect.ValueOf(err).FieldByName("Command").Interface().(*core.Command), + ignoredError.Command, + ) } if isEqual { return true diff --git a/internal/tabwriter/tabwriter_test.go b/internal/tabwriter/tabwriter_test.go index 2f2c0922ba..910f286db2 100644 --- a/internal/tabwriter/tabwriter_test.go +++ b/internal/tabwriter/tabwriter_test.go @@ -840,7 +840,7 @@ lines func BenchmarkCode(b *testing.B) { b.ReportAllocs() - for range b.N { + for b.Loop() { w := tabwriter.NewWriter( io.Discard, 4, diff --git a/internal/wasm/roundtrip.go b/internal/wasm/roundtrip.go index 557392c729..4f0d6522d0 100644 --- a/internal/wasm/roundtrip.go +++ b/internal/wasm/roundtrip.go @@ -14,9 +14,8 @@ import ( "io" "net/http" "strconv" - _ "unsafe" - "syscall/js" + _ "unsafe" ) var uint8Array = js.Global().Get("Uint8Array") diff --git a/wasm/package.json b/wasm/package.json index fecfd85086..35707b0eec 100644 --- a/wasm/package.json +++ b/wasm/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@codecov/vite-plugin": "^1.9.1", "@vitest/browser": "^4.0.6", - "prettier": "3.7.3", + "prettier": "3.8.1", "typescript": "^5.8.3", "vite": "^6.4.1", "vitest": "^4.0.6" diff --git a/wasm/pnpm-lock.yaml b/wasm/pnpm-lock.yaml index e6d9b33dbb..065a8797a1 100644 --- a/wasm/pnpm-lock.yaml +++ b/wasm/pnpm-lock.yaml @@ -13,10 +13,10 @@ importers: version: 1.9.1(vite@6.4.1(@types/node@24.0.8)) '@vitest/browser': specifier: ^4.0.6 - version: 4.0.14(vite@6.4.1(@types/node@24.0.8))(vitest@4.0.14(@types/node@24.0.8)) + version: 4.0.18(vite@6.4.1(@types/node@24.0.8))(vitest@4.0.18(@types/node@24.0.8)) prettier: - specifier: 3.7.3 - version: 3.7.3 + specifier: 3.8.1 + version: 3.8.1 typescript: specifier: ^5.8.3 version: 5.9.3 @@ -25,7 +25,7 @@ importers: version: 6.4.1(@types/node@24.0.8) vitest: specifier: ^4.0.6 - version: 4.0.14(@types/node@24.0.8) + version: 4.0.18(@types/node@24.0.8) packages: @@ -362,8 +362,8 @@ packages: cpu: [x64] os: [win32] - '@standard-schema/spec@1.0.0': - resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} @@ -377,16 +377,16 @@ packages: '@types/node@24.0.8': resolution: {integrity: sha512-WytNrFSgWO/esSH9NbpWUfTMGQwCGIKfCmNlmFDNiI5gGhgMmEA+V1AEvKLeBNvvtBnailJtkrEa2OIISwrVAA==} - '@vitest/browser@4.0.14': - resolution: {integrity: sha512-vO0uqR8SnPTd8ykp14yaIuUyMZ9HEBYuoZrVdUp7RrEp76VEnkrX9fDkGnK0NyBdfWXB6cqp7BmqVekd8yKHFQ==} + '@vitest/browser@4.0.18': + resolution: {integrity: sha512-gVQqh7paBz3gC+ZdcCmNSWJMk70IUjDeVqi+5m5vYpEHsIwRgw3Y545jljtajhkekIpIp5Gg8oK7bctgY0E2Ng==} peerDependencies: - vitest: 4.0.14 + vitest: 4.0.18 - '@vitest/expect@4.0.14': - resolution: {integrity: sha512-RHk63V3zvRiYOWAV0rGEBRO820ce17hz7cI2kDmEdfQsBjT2luEKB5tCOc91u1oSQoUOZkSv3ZyzkdkSLD7lKw==} + '@vitest/expect@4.0.18': + resolution: {integrity: sha512-8sCWUyckXXYvx4opfzVY03EOiYVxyNrHS5QxX3DAIi5dpJAAkyJezHCP77VMX4HKA2LDT/Jpfo8i2r5BE3GnQQ==} - '@vitest/mocker@4.0.14': - resolution: {integrity: sha512-RzS5NujlCzeRPF1MK7MXLiEFpkIXeMdQ+rN3Kk3tDI9j0mtbr7Nmuq67tpkOJQpgyClbOltCXMjLZicJHsH5Cg==} + '@vitest/mocker@4.0.18': + resolution: {integrity: sha512-HhVd0MDnzzsgevnOWCBj5Otnzobjy5wLBe4EdeeFGv8luMsGcYqDuFRMcttKWZA5vVO8RFjexVovXvAM4JoJDQ==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0-0 @@ -396,20 +396,20 @@ packages: vite: optional: true - '@vitest/pretty-format@4.0.14': - resolution: {integrity: sha512-SOYPgujB6TITcJxgd3wmsLl+wZv+fy3av2PpiPpsWPZ6J1ySUYfScfpIt2Yv56ShJXR2MOA6q2KjKHN4EpdyRQ==} + '@vitest/pretty-format@4.0.18': + resolution: {integrity: sha512-P24GK3GulZWC5tz87ux0m8OADrQIUVDPIjjj65vBXYG17ZeU3qD7r+MNZ1RNv4l8CGU2vtTRqixrOi9fYk/yKw==} - '@vitest/runner@4.0.14': - resolution: {integrity: sha512-BsAIk3FAqxICqREbX8SetIteT8PiaUL/tgJjmhxJhCsigmzzH8xeadtp7LRnTpCVzvf0ib9BgAfKJHuhNllKLw==} + '@vitest/runner@4.0.18': + resolution: {integrity: sha512-rpk9y12PGa22Jg6g5M3UVVnTS7+zycIGk9ZNGN+m6tZHKQb7jrP7/77WfZy13Y/EUDd52NDsLRQhYKtv7XfPQw==} - '@vitest/snapshot@4.0.14': - resolution: {integrity: sha512-aQVBfT1PMzDSA16Y3Fp45a0q8nKexx6N5Amw3MX55BeTeZpoC08fGqEZqVmPcqN0ueZsuUQ9rriPMhZ3Mu19Ag==} + '@vitest/snapshot@4.0.18': + resolution: {integrity: sha512-PCiV0rcl7jKQjbgYqjtakly6T1uwv/5BQ9SwBLekVg/EaYeQFPiXcgrC2Y7vDMA8dM1SUEAEV82kgSQIlXNMvA==} - '@vitest/spy@4.0.14': - resolution: {integrity: sha512-JmAZT1UtZooO0tpY3GRyiC/8W7dCs05UOq9rfsUUgEZEdq+DuHLmWhPsrTt0TiW7WYeL/hXpaE07AZ2RCk44hg==} + '@vitest/spy@4.0.18': + resolution: {integrity: sha512-cbQt3PTSD7P2OARdVW3qWER5EGq7PHlvE+QfzSC0lbwO+xnt7+XH06ZzFjFRgzUX//JmpxrCu92VdwvEPlWSNw==} - '@vitest/utils@4.0.14': - resolution: {integrity: sha512-hLqXZKAWNg8pI+SQXyXxWCTOpA3MvsqcbVeNgSi8x/CSN2wi26dSzn1wrOhmCmFjEvN9p8/kLFRHa6PI8jHazw==} + '@vitest/utils@4.0.18': + resolution: {integrity: sha512-msMRKLMVLWygpK3u2Hybgi4MNjcYJvwTb0Ru09+fOyCXIgT5raYP041DRRdiJiI3k/2U6SEbAETB3YtBrUkCFA==} acorn@8.15.0: resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} @@ -427,8 +427,8 @@ packages: before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} - chai@6.2.1: - resolution: {integrity: sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==} + chai@6.2.2: + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} engines: {node: '>=18'} chalk@4.1.2: @@ -456,8 +456,8 @@ packages: estree-walker@3.0.3: resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - expect-type@1.2.2: - resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} engines: {node: '>=12.0.0'} fdir@6.4.6: @@ -530,8 +530,8 @@ packages: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} - prettier@3.7.3: - resolution: {integrity: sha512-QgODejq9K3OzoBbuyobZlUhznP5SKwPqp+6Q6xw6o8gnhr4O85L2U915iM2IDcfF2NPXVaM9zlo9tdwipnYwzg==} + prettier@3.8.1: + resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} engines: {node: '>=14'} hasBin: true @@ -569,8 +569,9 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.2: - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} tinyglobby@0.2.14: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} @@ -651,18 +652,18 @@ packages: yaml: optional: true - vitest@4.0.14: - resolution: {integrity: sha512-d9B2J9Cm9dN9+6nxMnnNJKJCtcyKfnHj15N6YNJfaFHRLua/d3sRKU9RuKmO9mB0XdFtUizlxfz/VPbd3OxGhw==} + vitest@4.0.18: + resolution: {integrity: sha512-hOQuK7h0FGKgBAas7v0mSAsnvrIgAvWmRFjmzpJ7SwFHH3g1k2u37JtYwOwmEKhK6ZO3v9ggDBBm0La1LCK4uQ==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@opentelemetry/api': ^1.9.0 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.0.14 - '@vitest/browser-preview': 4.0.14 - '@vitest/browser-webdriverio': 4.0.14 - '@vitest/ui': 4.0.14 + '@vitest/browser-playwright': 4.0.18 + '@vitest/browser-preview': 4.0.18 + '@vitest/browser-webdriverio': 4.0.18 + '@vitest/ui': 4.0.18 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -696,8 +697,8 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - ws@8.18.3: - resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + ws@8.19.0: + resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -953,7 +954,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.44.1': optional: true - '@standard-schema/spec@1.0.0': {} + '@standard-schema/spec@1.1.0': {} '@types/chai@5.2.3': dependencies: @@ -969,60 +970,60 @@ snapshots: undici-types: 7.8.0 optional: true - '@vitest/browser@4.0.14(vite@6.4.1(@types/node@24.0.8))(vitest@4.0.14(@types/node@24.0.8))': + '@vitest/browser@4.0.18(vite@6.4.1(@types/node@24.0.8))(vitest@4.0.18(@types/node@24.0.8))': dependencies: - '@vitest/mocker': 4.0.14(vite@6.4.1(@types/node@24.0.8)) - '@vitest/utils': 4.0.14 + '@vitest/mocker': 4.0.18(vite@6.4.1(@types/node@24.0.8)) + '@vitest/utils': 4.0.18 magic-string: 0.30.21 pixelmatch: 7.1.0 pngjs: 7.0.0 sirv: 3.0.2 tinyrainbow: 3.0.3 - vitest: 4.0.14(@types/node@24.0.8) - ws: 8.18.3 + vitest: 4.0.18(@types/node@24.0.8) + ws: 8.19.0 transitivePeerDependencies: - bufferutil - msw - utf-8-validate - vite - '@vitest/expect@4.0.14': + '@vitest/expect@4.0.18': dependencies: - '@standard-schema/spec': 1.0.0 + '@standard-schema/spec': 1.1.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.0.14 - '@vitest/utils': 4.0.14 - chai: 6.2.1 + '@vitest/spy': 4.0.18 + '@vitest/utils': 4.0.18 + chai: 6.2.2 tinyrainbow: 3.0.3 - '@vitest/mocker@4.0.14(vite@6.4.1(@types/node@24.0.8))': + '@vitest/mocker@4.0.18(vite@6.4.1(@types/node@24.0.8))': dependencies: - '@vitest/spy': 4.0.14 + '@vitest/spy': 4.0.18 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 6.4.1(@types/node@24.0.8) - '@vitest/pretty-format@4.0.14': + '@vitest/pretty-format@4.0.18': dependencies: tinyrainbow: 3.0.3 - '@vitest/runner@4.0.14': + '@vitest/runner@4.0.18': dependencies: - '@vitest/utils': 4.0.14 + '@vitest/utils': 4.0.18 pathe: 2.0.3 - '@vitest/snapshot@4.0.14': + '@vitest/snapshot@4.0.18': dependencies: - '@vitest/pretty-format': 4.0.14 + '@vitest/pretty-format': 4.0.18 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.0.14': {} + '@vitest/spy@4.0.18': {} - '@vitest/utils@4.0.14': + '@vitest/utils@4.0.18': dependencies: - '@vitest/pretty-format': 4.0.14 + '@vitest/pretty-format': 4.0.18 tinyrainbow: 3.0.3 acorn@8.15.0: {} @@ -1035,7 +1036,7 @@ snapshots: before-after-hook@2.2.3: {} - chai@6.2.1: {} + chai@6.2.2: {} chalk@4.1.2: dependencies: @@ -1084,7 +1085,7 @@ snapshots: dependencies: '@types/estree': 1.0.8 - expect-type@1.2.2: {} + expect-type@1.3.0: {} fdir@6.4.6(picomatch@4.0.2): optionalDependencies: @@ -1133,7 +1134,7 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - prettier@3.7.3: {} + prettier@3.8.1: {} rollup@4.44.1: dependencies: @@ -1183,7 +1184,7 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.2: {} + tinyexec@1.0.2: {} tinyglobby@0.2.14: dependencies: @@ -1229,24 +1230,24 @@ snapshots: '@types/node': 24.0.8 fsevents: 2.3.3 - vitest@4.0.14(@types/node@24.0.8): + vitest@4.0.18(@types/node@24.0.8): dependencies: - '@vitest/expect': 4.0.14 - '@vitest/mocker': 4.0.14(vite@6.4.1(@types/node@24.0.8)) - '@vitest/pretty-format': 4.0.14 - '@vitest/runner': 4.0.14 - '@vitest/snapshot': 4.0.14 - '@vitest/spy': 4.0.14 - '@vitest/utils': 4.0.14 + '@vitest/expect': 4.0.18 + '@vitest/mocker': 4.0.18(vite@6.4.1(@types/node@24.0.8)) + '@vitest/pretty-format': 4.0.18 + '@vitest/runner': 4.0.18 + '@vitest/snapshot': 4.0.18 + '@vitest/spy': 4.0.18 + '@vitest/utils': 4.0.18 es-module-lexer: 1.7.0 - expect-type: 1.2.2 + expect-type: 1.3.0 magic-string: 0.30.21 obug: 2.1.1 pathe: 2.0.3 picomatch: 4.0.3 std-env: 3.10.0 tinybench: 2.9.0 - tinyexec: 0.3.2 + tinyexec: 1.0.2 tinyglobby: 0.2.15 tinyrainbow: 3.0.3 vite: 6.4.1(@types/node@24.0.8) @@ -1275,6 +1276,6 @@ snapshots: wrappy@1.0.2: {} - ws@8.18.3: {} + ws@8.19.0: {} zod@3.25.76: {}