diff --git a/.ci/bump-stack-version.sh b/.ci/bump-stack-version.sh new file mode 100755 index 0000000000..364326eb66 --- /dev/null +++ b/.ci/bump-stack-version.sh @@ -0,0 +1,65 @@ +#!/usr/bin/env bash +# +# Given the stack version this script will bump the version. +# +# This script is executed by the automation we are putting in place +# and it requires the git add/commit commands. +# +# Parameters: +# $1 -> the version to be bumped. Mandatory. +# $2 -> whether to create a branch where to commit the changes to. +# this is required when reusing an existing Pull Request. +# Optional. Default true. +# +set -euo pipefail +MSG="parameter missing." +VERSION=${1:?$MSG} +CREATE_BRANCH=${2:-true} + +OS=$(uname -s| tr '[:upper:]' '[:lower:]') + +if [ "${OS}" == "darwin" ] ; then + SED="sed -i .bck" +else + SED="sed -i" +fi + +echo "Update stack with version ${VERSION} in .stack-version" +echo "${VERSION}-SNAPSHOT" > .stack-version +git add .stack-version + +echo "Update stack with version ${VERSION} in Go files" +FILE="./internal/common/defaults.go" +${SED} -E -e "s#(var BeatVersionBase = (\"))[0-9]+\.[0-9]+\.[0-9]+(-[a-f0-9]{8})?#\1${VERSION}#g" $FILE +git add $FILE + +echo "Update stack with version ${VERSION} in Jenkinsfile" +FILE="./.ci/Jenkinsfile" +${SED} -E -e "s#(name: 'BEAT_VERSION', defaultValue: ')[0-9]+\.[0-9]+\.[0-9]+(-[a-f0-9]{8})?#\1${VERSION}#g" $FILE +${SED} -E -e "s#(name: 'STACK_VERSION', defaultValue: ')[0-9]+\.[0-9]+\.[0-9]+(-[a-f0-9]{8})?#\1${VERSION}#g" $FILE +git add $FILE + +echo "Update stack with version ${VERSION} in docker-compose.yml" +find . -name 'docker-compose.yml' -path './cli/config/compose/profiles/*' -print0 | + while IFS= read -r -d '' FILE ; do + ${SED} -E -e "s#(image: (\")?docker\.elastic\.co/.*):-[0-9]+\.[0-9]+\.[0-9]+(-[a-f0-9]{8})?#\1:-${VERSION}#g" $FILE + git add $FILE + done + +echo "Update stack with version ${VERSION} in deployment.yaml" +find . -name 'deployment.yaml' -print0 | + while IFS= read -r -d '' FILE ; do + ${SED} -E -e "s#(image: docker\.elastic\.co/.*):[0-9]+\.[0-9]+\.[0-9]+(-[a-f0-9]{8})?#\1:${VERSION}#g" $FILE + git add $FILE + done + +echo "Commit changes" +if [ "$CREATE_BRANCH" = "true" ]; then + git checkout -b "update-stack-version-$(date "+%Y%m%d%H%M%S")" +else + echo "Branch creation disabled." +fi +git diff --staged --quiet || git commit -m "bump stack version ${VERSION}" +git --no-pager log -1 + +echo "You can now push and create a Pull Request" diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-aarch64.rpm b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-aarch64.rpm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-amd64.deb b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-amd64.deb new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-arm64.deb b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-arm64.deb new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-amd64.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-amd64.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-arm64.docker.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-arm64.docker.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-x86_64.rpm b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-BEATS_VERSION-x86_64.rpm new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-ubi8-BEATS_VERSION-linux-arm64.docker.tar.gz b/internal/_testresources/beats/x-pack/elastic-agent/build/distributions/elastic-agent-ubi8-BEATS_VERSION-linux-arm64.docker.tar.gz new file mode 100644 index 0000000000..e69de29bb2 diff --git a/internal/_testresources/gcp/commits.json b/internal/_testresources/gcp/commits.json index 76f73e74d5..a31405a589 100644 --- a/internal/_testresources/gcp/commits.json +++ b/internal/_testresources/gcp/commits.json @@ -3,17 +3,28 @@ "items": [ { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm/1613069958597866", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069958597866&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm/1613069958597866", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm?generation=1613069958597866&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069958597866", "metageneration": "1", "storageClass": "STANDARD", "size": "22449687", "md5Hash": "1ZT4w4JHSVSr6B3jU+m9Vg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "IU7IiQ==", "etag": "COqZhe/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:18.600Z", @@ -22,17 +33,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069958663839", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069958663839&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm.sha512/1613069958663839", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069958663839&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069958663839", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "C6pOt6Qd+9kNhmCTNp06Sw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+y+K3g==", "etag": "CJ+die/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:18.665Z", @@ -41,17 +63,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb/1613069960033951", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1613069960033951&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-amd64.deb/1613069960033951", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb?generation=1613069960033951&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069960033951", "metageneration": "1", "storageClass": "STANDARD", "size": "27107640", "md5Hash": "nCzA1oH5X9YyjDX7dLYgxQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "UsUouQ==", "etag": "CJ/t3O/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:20.035Z", @@ -60,17 +93,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069960075328", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069960075328&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-amd64.deb.sha512/1613069960075328", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb.sha512?generation=1613069960075328&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069960075328", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "ha57y57CYOkD2Cy2QFqIZA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "y85kdA==", "etag": "CMCw3+/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:20.076Z", @@ -79,17 +123,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb/1613069961266512", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1613069961266512&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-arm64.deb/1613069961266512", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb?generation=1613069961266512&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069961266512", "metageneration": "1", "storageClass": "STANDARD", "size": "22655140", "md5Hash": "JvvK38ytFoYXXQ7psFfiXg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pROQAQ==", "etag": "CNCKqPDB4u4CEAE=", "timeCreated": "2021-02-11T18:59:21.268Z", @@ -98,17 +153,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069961330045", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069961330045&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-arm64.deb.sha512/1613069961330045", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb.sha512?generation=1613069961330045&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069961330045", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "Pu+WE2nA216ePgkI6LbYOQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Kdib7Q==", "etag": "CP36q/DB4u4CEAE=", "timeCreated": "2021-02-11T18:59:21.331Z", @@ -117,17 +183,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb/1613069962510372", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1613069962510372&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhf.deb/1613069962510372", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb?generation=1613069962510372&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069962510372", "metageneration": "1", "storageClass": "STANDARD", "size": "22638506", "md5Hash": "s9T/IxktT+ttkbvL1BfpoA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hh7oSg==", "etag": "CKSA9PDB4u4CEAE=", "timeCreated": "2021-02-11T18:59:22.512Z", @@ -136,17 +213,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1613069962561125", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613069962561125&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhf.deb.sha512/1613069962561125", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb.sha512?generation=1613069962561125&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069962561125", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "DtD3cJ6aj6t9pNtEBB2jHQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "SdISug==", "etag": "COWM9/DB4u4CEAE=", "timeCreated": "2021-02-11T18:59:22.563Z", @@ -155,17 +243,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm/1613069963729595", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613069963729595&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm/1613069963729595", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm?generation=1613069963729595&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069963729595", "metageneration": "1", "storageClass": "STANDARD", "size": "22475981", "md5Hash": "c+j/W8AbwNbMAjfwsedazA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Wwa9ng==", "etag": "CLu1vvHB4u4CEAE=", "timeCreated": "2021-02-11T18:59:23.732Z", @@ -174,17 +273,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613069963789695", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613069963789695&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm.sha512/1613069963789695", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1613069963789695&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069963789695", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "aj0nWSvz07U8NbdHg2SpRg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "j521zA==", "etag": "CP+KwvHB4u4CEAE=", "timeCreated": "2021-02-11T18:59:23.791Z", @@ -193,10 +303,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613069965094596", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613069965094596&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1613069965094596", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613069965094596&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069965094596", "metageneration": "1", @@ -204,7 +321,11 @@ "storageClass": "STANDARD", "size": "24787689", "md5Hash": "Y4/MBA7ic5dJ7eDwLn6HGw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Nj2RdA==", "etag": "CMTdkfLB4u4CEAE=", "timeCreated": "2021-02-11T18:59:25.096Z", @@ -213,17 +334,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613069965144320", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613069965144320&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613069965144320", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613069965144320&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069965144320", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "HbazpWt058nP5ylRqA0rjw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vhY9nQ==", "etag": "CIDilPLB4u4CEAE=", "timeCreated": "2021-02-11T18:59:25.145Z", @@ -232,17 +364,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb/1613069966505445", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb?generation=1613069966505445&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i386.deb/1613069966505445", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb?generation=1613069966505445&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069966505445", "metageneration": "1", "storageClass": "STANDARD", "size": "25722590", "md5Hash": "TC9D3vImqh+1C5xo/imA6w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gA5t1g==", "etag": "COXr5/LB4u4CEAE=", "timeCreated": "2021-02-11T18:59:26.507Z", @@ -251,17 +394,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1613069966548394", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613069966548394&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i386.deb.sha512/1613069966548394", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb.sha512?generation=1613069966548394&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069966548394", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "X6hUGt59wp9CnDbrxw6xOw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "UftFCQ==", "etag": "CKq76vLB4u4CEAE=", "timeCreated": "2021-02-11T18:59:26.549Z", @@ -270,17 +424,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm/1613069967905080", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1613069967905080&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i686.rpm/1613069967905080", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm?generation=1613069967905080&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069967905080", "metageneration": "1", "storageClass": "STANDARD", "size": "25489558", "md5Hash": "OpEChq2RayYxn1BUSVKP4g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bToYWg==", "etag": "CLiivfPB4u4CEAE=", "timeCreated": "2021-02-11T18:59:27.908Z", @@ -289,17 +454,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1613069967960416", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613069967960416&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i686.rpm.sha512/1613069967960416", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm.sha512?generation=1613069967960416&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069967960416", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "nFLnTcrXj/xRC6l7Q0MGlg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "0y22TQ==", "etag": "CODSwPPB4u4CEAE=", "timeCreated": "2021-02-11T18:59:27.961Z", @@ -308,10 +484,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613069974965941", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613069974965941&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1613069974965941", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613069974965941&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069974965941", "metageneration": "1", @@ -319,7 +502,11 @@ "storageClass": "STANDARD", "size": "148612279", "md5Hash": "ZpCrEreK0cDzlQtzXlSnDg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "YSvS6A==", "etag": "CLWd7PbB4u4CEAE=", "timeCreated": "2021-02-11T18:59:34.968Z", @@ -328,17 +515,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613069975038936", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613069975038936&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613069975038936", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613069975038936&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069975038936", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "9HIL6au+JE7WuTN9A033tg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "87LzcQ==", "etag": "CNjX8PbB4u4CEAE=", "timeCreated": "2021-02-11T18:59:35.040Z", @@ -347,10 +545,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613069976301173", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613069976301173&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz/1613069976301173", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613069976301173&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069976301173", "metageneration": "1", @@ -358,7 +563,11 @@ "storageClass": "STANDARD", "size": "22656862", "md5Hash": "241Hrs3tIZMhyA0hNOfJIQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9YBjjA==", "etag": "CPXcvffB4u4CEAE=", "timeCreated": "2021-02-11T18:59:36.302Z", @@ -367,17 +576,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613069976404915", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613069976404915&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613069976404915", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613069976404915&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069976404915", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "MxuIIjXULyge2yqzyPYBkw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "/j2ljQ==", "etag": "CLOHxPfB4u4CEAE=", "timeCreated": "2021-02-11T18:59:36.406Z", @@ -386,10 +606,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613069977572484", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613069977572484&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz/1613069977572484", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613069977572484&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069977572484", "metageneration": "1", @@ -397,7 +624,11 @@ "storageClass": "STANDARD", "size": "23021087", "md5Hash": "Ws2wxzdv0sN7GEuciR0VLQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FIP3Zw==", "etag": "CISpi/jB4u4CEAE=", "timeCreated": "2021-02-11T18:59:37.574Z", @@ -406,17 +637,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613069977623628", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613069977623628&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613069977623628", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613069977623628&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069977623628", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "sp4qc3L/m4aybyf32TA1lg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CCmzMg==", "etag": "CMy4jvjB4u4CEAE=", "timeCreated": "2021-02-11T18:59:37.625Z", @@ -425,10 +667,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613069978894754", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613069978894754&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz/1613069978894754", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613069978894754&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069978894754", "metageneration": "1", @@ -436,7 +685,11 @@ "storageClass": "STANDARD", "size": "25943012", "md5Hash": "ebyJ7+soKVgvtySK8+y0hQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "n0vaJQ==", "etag": "CKKD3PjB4u4CEAE=", "timeCreated": "2021-02-11T18:59:38.896Z", @@ -445,17 +698,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613069978943432", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613069978943432&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613069978943432", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613069978943432&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069978943432", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "/saMjSYyrgB/LzufZVjBAw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "cHSF9A==", "etag": "CMj/3vjB4u4CEAE=", "timeCreated": "2021-02-11T18:59:38.944Z", @@ -464,10 +728,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613069980288530", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613069980288530&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz/1613069980288530", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613069980288530&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069980288530", "metageneration": "1", @@ -475,7 +746,11 @@ "storageClass": "STANDARD", "size": "26945711", "md5Hash": "DHr8FRTN4w5LjeO5KYZW/A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OZg8aw==", "etag": "CJKMsfnB4u4CEAE=", "timeCreated": "2021-02-11T18:59:40.290Z", @@ -484,17 +759,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613069980349135", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613069980349135&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613069980349135", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613069980349135&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069980349135", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "3v/IFtkfUJmRIpYZcIY83w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eFDT+w==", "etag": "CM/ltPnB4u4CEAE=", "timeCreated": "2021-02-11T18:59:40.350Z", @@ -503,10 +789,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip/1613069981492014", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613069981492014&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip/1613069981492014", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip?generation=1613069981492014&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069981492014", "metageneration": "1", @@ -514,7 +807,11 @@ "storageClass": "STANDARD", "size": "21115768", "md5Hash": "hqUyKoPQDQifoxfksr/OhA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9qH/Vg==", "etag": "CK7G+vnB4u4CEAE=", "timeCreated": "2021-02-11T18:59:41.493Z", @@ -523,17 +820,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613069981543598", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613069981543598&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip.sha512/1613069981543598", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613069981543598&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069981543598", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "Ud653z0nFmR/wqAkS6Ws4g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "E3Ja4A==", "etag": "CK7Z/fnB4u4CEAE=", "timeCreated": "2021-02-11T18:59:41.545Z", @@ -542,10 +850,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613069982701778", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613069982701778&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip/1613069982701778", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip?generation=1613069982701778&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069982701778", "metageneration": "1", @@ -553,7 +868,11 @@ "storageClass": "STANDARD", "size": "21293697", "md5Hash": "WUNagwrblslk7+NDjz19ow==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "PZksAg==", "etag": "CNKxxPrB4u4CEAE=", "timeCreated": "2021-02-11T18:59:42.703Z", @@ -562,17 +881,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613069982775664", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613069982775664&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613069982775664", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613069982775664&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069982775664", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "3zrc41qduex2V4z5jBibog==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "uJGWqw==", "etag": "CPDyyPrB4u4CEAE=", "timeCreated": "2021-02-11T18:59:42.777Z", @@ -581,17 +911,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm/1613069984097376", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613069984097376&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm/1613069984097376", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm?generation=1613069984097376&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069984097376", "metageneration": "1", "storageClass": "STANDARD", "size": "26735816", "md5Hash": "RMLCzM7MSzQ6shAZ09TH6A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nquEVg==", "etag": "CODImfvB4u4CEAE=", "timeCreated": "2021-02-11T18:59:44.098Z", @@ -600,17 +941,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613069984167516", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613069984167516&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm.sha512/1613069984167516", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1613069984167516&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069984167516", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "HMQyR1V6+hpYzyxMF7Z9zQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vzSk1A==", "etag": "CNzsnfvB4u4CEAE=", "timeCreated": "2021-02-11T18:59:44.168Z", @@ -619,17 +971,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1613069911537688", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069911537688&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm/1613069911537688", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1613069911537688&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069911537688", "metageneration": "1", "storageClass": "STANDARD", "size": "17177141", "md5Hash": "LGtPjLhidnjRKyjnF8L6kw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "MY6FwA==", "etag": "CJjwzNjB4u4CEAE=", "timeCreated": "2021-02-11T18:58:31.539Z", @@ -638,17 +1001,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069911591528", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069911591528&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1613069911591528", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069911591528&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069911591528", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "bPs+WLt1bw0wY4yuGA7Y3w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CPEVQQ==", "etag": "COiU0NjB4u4CEAE=", "timeCreated": "2021-02-11T18:58:31.593Z", @@ -657,17 +1031,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1613069912767304", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1613069912767304&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb/1613069912767304", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb?generation=1613069912767304&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069912767304", "metageneration": "1", "storageClass": "STANDARD", "size": "19882798", "md5Hash": "ZS76/wsXWUWxbx3+VSYW9Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "e6TT8Q==", "etag": "CMj2l9nB4u4CEAE=", "timeCreated": "2021-02-11T18:58:32.768Z", @@ -676,17 +1061,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069912828139", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069912828139&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb.sha512/1613069912828139", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1613069912828139&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069912828139", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "2lDl1vh9mwfVzyydWs0wXw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "haxn8A==", "etag": "COvRm9nB4u4CEAE=", "timeCreated": "2021-02-11T18:58:32.829Z", @@ -695,17 +1091,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1613069913775993", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1613069913775993&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb/1613069913775993", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb?generation=1613069913775993&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069913775993", "metageneration": "1", "storageClass": "STANDARD", "size": "17346062", "md5Hash": "gYgc3yQEAZFwgcaqQ+ozwQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Z3tCZQ==", "etag": "CPm+1dnB4u4CEAE=", "timeCreated": "2021-02-11T18:58:33.777Z", @@ -714,17 +1121,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069913841521", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069913841521&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb.sha512/1613069913841521", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1613069913841521&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069913841521", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "+8aUKf+/JjpN8osbk32p4g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "unjNIw==", "etag": "CPG+2dnB4u4CEAE=", "timeCreated": "2021-02-11T18:58:33.842Z", @@ -733,17 +1151,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1613069914808181", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1613069914808181&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb/1613069914808181", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb?generation=1613069914808181&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069914808181", "metageneration": "1", "storageClass": "STANDARD", "size": "17428592", "md5Hash": "ubnol2tHEbM6J/7G0qGP2w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hIHHCw==", "etag": "CPW+lNrB4u4CEAE=", "timeCreated": "2021-02-11T18:58:34.810Z", @@ -752,17 +1181,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1613069914858887", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613069914858887&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb.sha512/1613069914858887", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1613069914858887&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069914858887", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "BpNOetdboZKXuy0g7gn+uA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "T2CMOg==", "etag": "CIfLl9rB4u4CEAE=", "timeCreated": "2021-02-11T18:58:34.860Z", @@ -771,17 +1211,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1613069915872878", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613069915872878&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm/1613069915872878", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1613069915872878&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069915872878", "metageneration": "1", "storageClass": "STANDARD", "size": "17278950", "md5Hash": "CArsqHn4miysmeFdXc4Mcg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "JsiLPA==", "etag": "CO681drB4u4CEAE=", "timeCreated": "2021-02-11T18:58:35.874Z", @@ -790,17 +1241,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613069915926781", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613069915926781&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1613069915926781", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1613069915926781&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069915926781", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "42D0/SBX06S12L4CpuMT+w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XIIX7g==", "etag": "CP3h2NrB4u4CEAE=", "timeCreated": "2021-02-11T18:58:35.928Z", @@ -809,10 +1271,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613069917100388", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613069917100388&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1613069917100388", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613069917100388&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069917100388", "metageneration": "1", @@ -820,7 +1289,11 @@ "storageClass": "STANDARD", "size": "19027111", "md5Hash": "blHrRb91SHRUcVnK12T3OQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bGlkHQ==", "etag": "COSyoNvB4u4CEAE=", "timeCreated": "2021-02-11T18:58:37.102Z", @@ -829,17 +1302,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613069917146659", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613069917146659&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613069917146659", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613069917146659&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069917146659", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "xRQtqVXIQlFAMPn2DMnYPQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9MVdDQ==", "etag": "CKOco9vB4u4CEAE=", "timeCreated": "2021-02-11T18:58:37.148Z", @@ -848,17 +1332,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb/1613069918276901", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1613069918276901&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb/1613069918276901", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb?generation=1613069918276901&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069918276901", "metageneration": "1", "storageClass": "STANDARD", "size": "18879394", "md5Hash": "vy4Zyuo/cLyIZil8KpeSyA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Qg6y7Q==", "etag": "CKWa6NvB4u4CEAE=", "timeCreated": "2021-02-11T18:58:38.278Z", @@ -867,17 +1362,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1613069918334850", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613069918334850&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb.sha512/1613069918334850", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1613069918334850&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069918334850", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "SpQYSxgB9jP8C08bfmbgOg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5QN2hA==", "etag": "CILf69vB4u4CEAE=", "timeCreated": "2021-02-11T18:58:38.336Z", @@ -886,17 +1392,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1613069919486073", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1613069919486073&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm/1613069919486073", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm?generation=1613069919486073&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069919486073", "metageneration": "1", "storageClass": "STANDARD", "size": "18708886", "md5Hash": "Rhh5fQW/YSrInJIr1KaKqg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NYpf0g==", "etag": "CPmAstzB4u4CEAE=", "timeCreated": "2021-02-11T18:58:39.488Z", @@ -905,17 +1422,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1613069919531136", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613069919531136&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm.sha512/1613069919531136", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1613069919531136&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069919531136", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "QGX51BjC9CVctEk3QN4xwQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "r1Qysg==", "etag": "CIDhtNzB4u4CEAE=", "timeCreated": "2021-02-11T18:58:39.532Z", @@ -924,10 +1452,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613069927641260", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613069927641260&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1613069927641260", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613069927641260&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069927641260", "metageneration": "1", @@ -935,7 +1470,11 @@ "storageClass": "STANDARD", "size": "141343559", "md5Hash": "Ovx4qakeN5kGx90Z/ebygg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "M4tIiA==", "etag": "CKzho+DB4u4CEAE=", "timeCreated": "2021-02-11T18:58:47.643Z", @@ -944,17 +1483,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613069927696009", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613069927696009&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613069927696009", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613069927696009&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069927696009", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "nmL/PWPMzx1bJzfAa09ajA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "y0hOBg==", "etag": "CImNp+DB4u4CEAE=", "timeCreated": "2021-02-11T18:58:47.697Z", @@ -963,10 +1513,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613069928840253", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613069928840253&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1613069928840253", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1613069928840253&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069928840253", "metageneration": "1", @@ -974,7 +1531,11 @@ "storageClass": "STANDARD", "size": "17263698", "md5Hash": "vIRgOOdRxaA+Q5OiM5+35Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ICknPw==", "etag": "CL347ODB4u4CEAE=", "timeCreated": "2021-02-11T18:58:48.841Z", @@ -983,17 +1544,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613069928895662", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613069928895662&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613069928895662", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613069928895662&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069928895662", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "5ZklZ1bMVa65ePaMnMU1Dw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Y7WuAw==", "etag": "CK6p8ODB4u4CEAE=", "timeCreated": "2021-02-11T18:58:48.897Z", @@ -1002,10 +1574,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613069929866801", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613069929866801&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1613069929866801", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1613069929866801&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069929866801", "metageneration": "1", @@ -1013,7 +1592,11 @@ "storageClass": "STANDARD", "size": "17600932", "md5Hash": "W7m1MhpCI8TZc6qFaG/SPw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pev8YQ==", "etag": "CLHMq+HB4u4CEAE=", "timeCreated": "2021-02-11T18:58:49.868Z", @@ -1022,17 +1605,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613069929917313", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613069929917313&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613069929917313", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613069929917313&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069929917313", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "MagHbcFQ+Wh19NtbptyJXg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4RfGIA==", "etag": "CIHXruHB4u4CEAE=", "timeCreated": "2021-02-11T18:58:49.918Z", @@ -1041,10 +1635,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613069930984599", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613069930984599&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1613069930984599", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1613069930984599&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069930984599", "metageneration": "1", @@ -1052,7 +1653,11 @@ "storageClass": "STANDARD", "size": "18959055", "md5Hash": "5oj05GsCCMIgtmyXKc3VaQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6QN71Q==", "etag": "CJfp7+HB4u4CEAE=", "timeCreated": "2021-02-11T18:58:50.986Z", @@ -1061,17 +1666,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613069931042314", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613069931042314&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1613069931042314", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613069931042314&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069931042314", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "mcA/QqnEYczhi66kq/X/sQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4hrEqw==", "etag": "CIqs8+HB4u4CEAE=", "timeCreated": "2021-02-11T18:58:51.044Z", @@ -1080,10 +1696,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613069932094643", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613069932094643&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1613069932094643", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613069932094643&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069932094643", "metageneration": "1", @@ -1091,7 +1714,11 @@ "storageClass": "STANDARD", "size": "19686181", "md5Hash": "PB0uM0F+VJ8K20JhY+1TZw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "KiXddg==", "etag": "CLPJs+LB4u4CEAE=", "timeCreated": "2021-02-11T18:58:52.096Z", @@ -1100,17 +1727,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613069932145124", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613069932145124&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613069932145124", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613069932145124&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069932145124", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "AwhnWLvPkLojj4y/yiJrAA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fbNm3g==", "etag": "COTTtuLB4u4CEAE=", "timeCreated": "2021-02-11T18:58:52.146Z", @@ -1119,10 +1757,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1613069932981472", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613069932981472&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip/1613069932981472", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1613069932981472&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069932981472", "metageneration": "1", @@ -1130,7 +1775,11 @@ "storageClass": "STANDARD", "size": "15398903", "md5Hash": "0R8VD6i+CRRhjZFc3Ng7Yg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "S9zUeg==", "etag": "CODZ6eLB4u4CEAE=", "timeCreated": "2021-02-11T18:58:52.983Z", @@ -1139,17 +1788,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613069933031444", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613069933031444&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1613069933031444", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1613069933031444&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069933031444", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "3E0S22EBb6ZY3Vo+zNnHpw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "K5ZaIg==", "etag": "CJTg7OLB4u4CEAE=", "timeCreated": "2021-02-11T18:58:53.032Z", @@ -1158,10 +1818,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1613069933913495", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613069933913495&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip/1613069933913495", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1613069933913495&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069933913495", "metageneration": "1", @@ -1169,7 +1836,11 @@ "storageClass": "STANDARD", "size": "15596950", "md5Hash": "OIOZ7elGoFg3aVNjla0uHw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CTDXRA==", "etag": "CJfLouPB4u4CEAE=", "timeCreated": "2021-02-11T18:58:53.915Z", @@ -1178,17 +1849,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613069933985057", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613069933985057&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1613069933985057", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613069933985057&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069933985057", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "9Xa0Tk2FmI89nomINyrDbQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jta8ZQ==", "etag": "CKH6puPB4u4CEAE=", "timeCreated": "2021-02-11T18:58:53.987Z", @@ -1197,17 +1879,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1613069935044174", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613069935044174&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm/1613069935044174", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1613069935044174&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069935044174", "metageneration": "1", "storageClass": "STANDARD", "size": "19603845", "md5Hash": "a0h5+GU/ut+acTgE00J4+A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "UWeDSA==", "etag": "CM7M5+PB4u4CEAE=", "timeCreated": "2021-02-11T18:58:55.046Z", @@ -1216,17 +1909,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613069935106607", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613069935106607&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1613069935106607", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1613069935106607&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069935106607", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "W5i+VVN4rB5pUcwjmw+h7w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "m6GQcg==", "etag": "CK+06+PB4u4CEAE=", "timeCreated": "2021-02-11T18:58:55.108Z", @@ -1235,10 +1939,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613069987439200", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613069987439200&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613069987439200", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613069987439200&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069987439200", "metageneration": "1", @@ -1246,7 +1957,11 @@ "storageClass": "STANDARD", "size": "70174270", "md5Hash": "4jmvH5I2BtUt/BkS6LTamA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QByE7g==", "etag": "CODE5fzB4u4CEAE=", "timeCreated": "2021-02-11T18:59:47.441Z", @@ -1255,17 +1970,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613069987480793", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613069987480793&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613069987480793", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613069987480793&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069987480793", "metageneration": "1", "storageClass": "STANDARD", "size": "185", "md5Hash": "5zYg09hDUGNCfDdoycqG6w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "IPqqug==", "etag": "CNmJ6PzB4u4CEAE=", "timeCreated": "2021-02-11T18:59:47.482Z", @@ -1274,10 +2000,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/dockerlogbeat/elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz/1613069430127286", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fdockerlogbeat%2Felastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fdockerlogbeat%2Felastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz?generation=1613069430127286&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/dockerlogbeat/elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/dockerlogbeat/elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz/1613069430127286", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fdockerlogbeat%2Felastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fdockerlogbeat%2Felastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz?generation=1613069430127286&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/dockerlogbeat/elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069430127286", "metageneration": "1", @@ -1285,7 +2018,11 @@ "storageClass": "STANDARD", "size": "10880369", "md5Hash": "ztjQM0XCvZ8qTNB7Ge3Rkg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz\"; filename*=UTF-8''elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz\"; filename*=UTF-8''elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ZqggFA==", "etag": "CLb1hfO/4u4CEAE=", "timeCreated": "2021-02-11T18:50:30.128Z", @@ -1294,17 +2031,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm/1613071842885951", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613071842885951&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm/1613071842885951", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm?generation=1613071842885951&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071842885951", "metageneration": "1", "storageClass": "STANDARD", "size": "95145478", "md5Hash": "+kZ2z1Mm2/305mYf0Gm+5Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "p7ARSw==", "etag": "CL+CxfHI4u4CEAE=", "timeCreated": "2021-02-11T19:30:42.887Z", @@ -1313,17 +2061,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613071842935287", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613071842935287&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm.sha512/1613071842935287", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm.sha512?generation=1613071842935287&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071842935287", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "fkVkIDNGC0xdK2uNN73OqQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gM51Mw==", "etag": "CPeDyPHI4u4CEAE=", "timeCreated": "2021-02-11T19:30:42.936Z", @@ -1332,17 +2091,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb/1613071848606029", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb?generation=1613071848606029&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb/1613071848606029", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb?generation=1613071848606029&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071848606029", "metageneration": "1", "storageClass": "STANDARD", "size": "108644572", "md5Hash": "pCw0qQs38XjeE4NI1wdxDQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+5Vvkw==", "etag": "CM2SovTI4u4CEAE=", "timeCreated": "2021-02-11T19:30:48.608Z", @@ -1351,17 +2121,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512/1613071848648660", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613071848648660&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb.sha512/1613071848648660", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb.sha512?generation=1613071848648660&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071848648660", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "iEAtKOJaxxfAg6jD1xZi9g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "o2nO+w==", "etag": "CNTfpPTI4u4CEAE=", "timeCreated": "2021-02-11T19:30:48.650Z", @@ -1370,17 +2151,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb/1613071853606208", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb?generation=1613071853606208&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb/1613071853606208", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb?generation=1613071853606208&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071853606208", "metageneration": "1", "storageClass": "STANDARD", "size": "95208510", "md5Hash": "yJzvkyvnysBwOuW+dWxjiw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "BEc8hQ==", "etag": "CMCq0/bI4u4CEAE=", "timeCreated": "2021-02-11T19:30:53.608Z", @@ -1389,17 +2181,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512/1613071853652968", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613071853652968&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb.sha512/1613071853652968", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb.sha512?generation=1613071853652968&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071853652968", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "AJDBngxVHNXFw1xaodEPVA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XIQYFw==", "etag": "COiX1vbI4u4CEAE=", "timeCreated": "2021-02-11T19:30:53.654Z", @@ -1408,17 +2211,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb/1613071858702400", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb?generation=1613071858702400&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb/1613071858702400", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb?generation=1613071858702400&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071858702400", "metageneration": "1", "storageClass": "STANDARD", "size": "96614668", "md5Hash": "1Z3s7KJSO/3OLQweDAnXPQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3UREEg==", "etag": "CMCwivnI4u4CEAE=", "timeCreated": "2021-02-11T19:30:58.704Z", @@ -1427,17 +2241,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512/1613071858753219", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613071858753219&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb.sha512/1613071858753219", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb.sha512?generation=1613071858753219&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071858753219", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "2bFcjZ8Lmb5CW6BV7kxtUw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Bliscw==", "etag": "CMO9jfnI4u4CEAE=", "timeCreated": "2021-02-11T19:30:58.754Z", @@ -1446,17 +2271,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm/1613071863894151", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613071863894151&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm/1613071863894151", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm?generation=1613071863894151&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071863894151", "metageneration": "1", "storageClass": "STANDARD", "size": "96553572", "md5Hash": "yrBKdbtPbNTUHQ3Xuo16Eg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8uAMWA==", "etag": "CIehx/vI4u4CEAE=", "timeCreated": "2021-02-11T19:31:03.895Z", @@ -1465,17 +2301,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613071863950644", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613071863950644&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm.sha512/1613071863950644", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm.sha512?generation=1613071863950644&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071863950644", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "3+oagpGJX/laYTDAycOrSQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hWRwUQ==", "etag": "CLTayvvI4u4CEAE=", "timeCreated": "2021-02-11T19:31:03.952Z", @@ -1484,10 +2331,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613071869544641", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613071869544641&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz/1613071869544641", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613071869544641&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071869544641", "metageneration": "1", @@ -1495,7 +2349,11 @@ "storageClass": "STANDARD", "size": "105587719", "md5Hash": "OyDqM8hwE6yll63ME3TIpQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "SO5igw==", "etag": "CMGRoP7I4u4CEAE=", "timeCreated": "2021-02-11T19:31:09.546Z", @@ -1504,17 +2362,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613071869588092", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613071869588092&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613071869588092", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613071869588092&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071869588092", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "eQmW0xAmMxOaYH+C+0/o/w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iBRudA==", "etag": "CPzkov7I4u4CEAE=", "timeCreated": "2021-02-11T19:31:09.589Z", @@ -1523,17 +2392,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb/1613071875023553", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb?generation=1613071875023553&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb/1613071875023553", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb?generation=1613071875023553&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071875023553", "metageneration": "1", "storageClass": "STANDARD", "size": "104402152", "md5Hash": "206UaieZVq5BZooj1uTvPQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i386.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "PVQ9LQ==", "etag": "CMHF7oDJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:15.025Z", @@ -1542,17 +2422,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512/1613071875071883", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613071875071883&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb.sha512/1613071875071883", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb.sha512?generation=1613071875071883&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071875071883", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "HJIlROigKAo1w7IYwiRN+A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mxB1TQ==", "etag": "CIu/8YDJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:15.073Z", @@ -1561,17 +2452,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm/1613071880922322", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm?generation=1613071880922322&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm/1613071880922322", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm?generation=1613071880922322&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071880922322", "metageneration": "1", "storageClass": "STANDARD", "size": "104321638", "md5Hash": "LF9xGoeRQxed9HZgzc8KVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bTitRg==", "etag": "CNLJ1oPJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:20.924Z", @@ -1580,17 +2482,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512/1613071880966809", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613071880966809&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm.sha512/1613071880966809", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm.sha512?generation=1613071880966809&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071880966809", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "1Lo5j1O33Xy9lTDRcze3HA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "YxtgJg==", "etag": "CJml2YPJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:20.968Z", @@ -1599,10 +2512,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613071893588023", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613071893588023&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz/1613071893588023", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613071893588023&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071893588023", "metageneration": "1", @@ -1610,7 +2530,11 @@ "storageClass": "STANDARD", "size": "237144637", "md5Hash": "gYgXtrwPrXuatYVOsyyJEA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pXxHyg==", "etag": "CLfQ24nJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:33.590Z", @@ -1619,17 +2543,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613071893632018", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613071893632018&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613071893632018", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613071893632018&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071893632018", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "T+Vh/XyXsryu7/KBuFYzBA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "R8hYpg==", "etag": "CJKo3onJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:33.633Z", @@ -1638,10 +2573,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613071898905740", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613071898905740&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz/1613071898905740", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz?generation=1613071898905740&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071898905740", "metageneration": "1", @@ -1649,7 +2591,11 @@ "storageClass": "STANDARD", "size": "95094996", "md5Hash": "S15CsN6Nerisx8QGWIlAEQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "GMletw==", "etag": "CIyZoIzJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:38.907Z", @@ -1658,17 +2604,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613071898955075", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613071898955075&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613071898955075", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613071898955075&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071898955075", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "W5w8jM9ZQAmqLDs4Whfj7g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "uw9aDg==", "etag": "CMOao4zJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:38.956Z", @@ -1677,10 +2634,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613071904395161", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613071904395161&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz/1613071904395161", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz?generation=1613071904395161&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071904395161", "metageneration": "1", @@ -1688,7 +2652,11 @@ "storageClass": "STANDARD", "size": "96711386", "md5Hash": "wGa0EncyilNQz/wv4a5dsw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DjJcSA==", "etag": "CJmf747J4u4CEAE=", "timeCreated": "2021-02-11T19:31:44.397Z", @@ -1697,17 +2665,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613071904441032", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613071904441032&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613071904441032", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613071904441032&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071904441032", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "KN0lluAsFPORPCy4fCebCw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Gb/xhA==", "etag": "CMiF8o7J4u4CEAE=", "timeCreated": "2021-02-11T19:31:44.442Z", @@ -1716,10 +2695,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613071910295349", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613071910295349&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz/1613071910295349", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz?generation=1613071910295349&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071910295349", "metageneration": "1", @@ -1727,7 +2713,11 @@ "storageClass": "STANDARD", "size": "104442658", "md5Hash": "hll9SUTqi5bUjbyMDoWi5w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "aLcGfw==", "etag": "CLWu15HJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:50.297Z", @@ -1736,17 +2726,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613071910348651", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613071910348651&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512/1613071910348651", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613071910348651&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071910348651", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "cNlCQe8OYJAtcEg9vtZGPg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+hRYLw==", "etag": "COvO2pHJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:50.349Z", @@ -1755,10 +2756,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613071916578803", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613071916578803&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz/1613071916578803", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613071916578803&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071916578803", "metageneration": "1", @@ -1766,7 +2774,11 @@ "storageClass": "STANDARD", "size": "108484343", "md5Hash": "4FwhaGmq8TgXvz9Z7J9kqw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DPM7Zg==", "etag": "CPPv1pTJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:56.580Z", @@ -1775,17 +2787,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613071916640882", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613071916640882&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613071916640882", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613071916640882&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071916640882", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "4Jx7rXd+xwTo/MvnFfrJBQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lGfUZw==", "etag": "CPLU2pTJ4u4CEAE=", "timeCreated": "2021-02-11T19:31:56.642Z", @@ -1794,10 +2817,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip/1613071923037047", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613071923037047&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip/1613071923037047", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip?generation=1613071923037047&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071923037047", "metageneration": "1", @@ -1805,7 +2835,11 @@ "storageClass": "STANDARD", "size": "102896140", "md5Hash": "9iam99HnBCdPFlNDjbO5AQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NRNZAQ==", "etag": "CPeG4ZfJ4u4CEAE=", "timeCreated": "2021-02-11T19:32:03.038Z", @@ -1814,17 +2848,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613071923098140", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613071923098140&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip.sha512/1613071923098140", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip.sha512?generation=1613071923098140&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071923098140", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "GyYKH6q+mSYvCtVBwGHRPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "kxXm9g==", "etag": "CJzk5JfJ4u4CEAE=", "timeCreated": "2021-02-11T19:32:03.099Z", @@ -1833,10 +2878,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip/1613071928790354", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613071928790354&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip/1613071928790354", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip?generation=1613071928790354&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071928790354", "metageneration": "1", @@ -1844,7 +2896,11 @@ "storageClass": "STANDARD", "size": "103915539", "md5Hash": "+gs+nb1GltuICec9+ryZ+A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VVqEEg==", "etag": "CNKawJrJ4u4CEAE=", "timeCreated": "2021-02-11T19:32:08.792Z", @@ -1853,17 +2909,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613071928867800", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613071928867800&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512/1613071928867800", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613071928867800&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071928867800", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "HOqcIe6CQ2UgsdsoXIaS8w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "noZiqQ==", "etag": "CNj3xJrJ4u4CEAE=", "timeCreated": "2021-02-11T19:32:08.869Z", @@ -1872,17 +2939,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm/1613071934770465", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613071934770465&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm/1613071934770465", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm?generation=1613071934770465&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071934770465", "metageneration": "1", "storageClass": "STANDARD", "size": "108518499", "md5Hash": "TCCQHY7DetZ7I75jUOIp8g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EQzrtQ==", "etag": "CKGarZ3J4u4CEAE=", "timeCreated": "2021-02-11T19:32:14.772Z", @@ -1891,17 +2969,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613071934816142", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613071934816142&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm.sha512/1613071934816142", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm.sha512?generation=1613071934816142&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071934816142", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "VG5Oyc4Jr1lRtB06pgYwDQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "HlmQ8A==", "etag": "CI7/r53J4u4CEAE=", "timeCreated": "2021-02-11T19:32:14.817Z", @@ -1910,10 +2999,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613071943312806", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613071943312806&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613071943312806", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613071943312806&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071943312806", "metageneration": "1", @@ -1921,7 +3017,11 @@ "storageClass": "STANDARD", "size": "152177756", "md5Hash": "iK8xpaLZvFzQd/0hfTpmJw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FRYRlw==", "etag": "CKbLtqHJ4u4CEAE=", "timeCreated": "2021-02-11T19:32:23.314Z", @@ -1930,17 +3030,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613071943590239", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613071943590239&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613071943590239", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613071943590239&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613071943590239", "metageneration": "1", "storageClass": "STANDARD", "size": "189", "md5Hash": "BIP1d1tbVqpnzNDwN9uBFg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8Vwt6w==", "etag": "CN/Cx6HJ4u4CEAE=", "timeCreated": "2021-02-11T19:32:23.591Z", @@ -1949,17 +3060,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm/1613070014241398", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613070014241398&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-aarch64.rpm/1613070014241398", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm?generation=1613070014241398&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070014241398", "metageneration": "1", "storageClass": "STANDARD", "size": "28644629", "md5Hash": "2VyZaM7LnayPlP+emJfQXQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OWTwvw==", "etag": "CPa0yYnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:14.243Z", @@ -1968,17 +3090,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613070014286407", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613070014286407&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-aarch64.rpm.sha512/1613070014286407", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1613070014286407&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070014286407", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "CipQGq0QuqDk8Va+GBLstg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "MlkM7w==", "etag": "CMeUzInC4u4CEAE=", "timeCreated": "2021-02-11T19:00:14.288Z", @@ -1987,17 +3120,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb/1613070016119683", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb?generation=1613070016119683&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-amd64.deb/1613070016119683", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb?generation=1613070016119683&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070016119683", "metageneration": "1", "storageClass": "STANDARD", "size": "32981098", "md5Hash": "CHRP8rALNAYaaJ6wAUejsQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "b6sX1g==", "etag": "CIOHvIrC4u4CEAE=", "timeCreated": "2021-02-11T19:00:16.121Z", @@ -2006,17 +3150,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1613070016178020", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613070016178020&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-amd64.deb.sha512/1613070016178020", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb.sha512?generation=1613070016178020&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070016178020", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "YT3tNC7sFCndB273zERGDg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wN2MWg==", "etag": "COTOv4rC4u4CEAE=", "timeCreated": "2021-02-11T19:00:16.179Z", @@ -2025,17 +3180,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb/1613070017905380", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb?generation=1613070017905380&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-arm64.deb/1613070017905380", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb?generation=1613070017905380&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070017905380", "metageneration": "1", "storageClass": "STANDARD", "size": "28895604", "md5Hash": "/e2Lc3EvEWM1eL9BU2gTWA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Mns7sA==", "etag": "COSFqYvC4u4CEAE=", "timeCreated": "2021-02-11T19:00:17.906Z", @@ -2044,17 +3210,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1613070017977163", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613070017977163&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-arm64.deb.sha512/1613070017977163", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb.sha512?generation=1613070017977163&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070017977163", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "muvNaUQwpcs6Pkdvu62ytQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jPj3VQ==", "etag": "CMu2rYvC4u4CEAE=", "timeCreated": "2021-02-11T19:00:17.978Z", @@ -2063,17 +3240,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb/1613070019592373", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb?generation=1613070019592373&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhf.deb/1613070019592373", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb?generation=1613070019592373&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070019592373", "metageneration": "1", "storageClass": "STANDARD", "size": "28819748", "md5Hash": "ZbOSCsfPICtLodvRQ7+a8Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "p1WtTg==", "etag": "CLWBkIzC4u4CEAE=", "timeCreated": "2021-02-11T19:00:19.593Z", @@ -2082,17 +3270,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1613070019639750", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613070019639750&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhf.deb.sha512/1613070019639750", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb.sha512?generation=1613070019639750&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070019639750", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "9HNr83sLffsX2LXrdKll0A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mlVhIw==", "etag": "CMbzkozC4u4CEAE=", "timeCreated": "2021-02-11T19:00:19.641Z", @@ -2101,17 +3300,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm/1613070021336709", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613070021336709&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhfp.rpm/1613070021336709", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm?generation=1613070021336709&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070021336709", "metageneration": "1", "storageClass": "STANDARD", "size": "28628542", "md5Hash": "AWik0tMzgy3uEv6uJl1Hpg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+jaqYQ==", "etag": "CIW9+ozC4u4CEAE=", "timeCreated": "2021-02-11T19:00:21.338Z", @@ -2120,17 +3330,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613070021397264", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613070021397264&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhfp.rpm.sha512/1613070021397264", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1613070021397264&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070021397264", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "tBOXtrONv8JLfAVBn0eyOg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hSo0UQ==", "etag": "CJCW/ozC4u4CEAE=", "timeCreated": "2021-02-11T19:00:21.398Z", @@ -2139,10 +3360,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613070023293341", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613070023293341&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz/1613070023293341", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613070023293341&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070023293341", "metageneration": "1", @@ -2150,7 +3378,11 @@ "storageClass": "STANDARD", "size": "31834157", "md5Hash": "xqHkM4UssRTVWNgIMiEexw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "C8IRqw==", "etag": "CJ3z8Y3C4u4CEAE=", "timeCreated": "2021-02-11T19:00:23.294Z", @@ -2159,17 +3391,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613070023346125", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613070023346125&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613070023346125", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613070023346125&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070023346125", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "JBywMg4jYpOn1fwgcqSTww==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7gMHzQ==", "etag": "CM2P9Y3C4u4CEAE=", "timeCreated": "2021-02-11T19:00:23.347Z", @@ -2178,17 +3421,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb/1613070025153197", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb?generation=1613070025153197&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i386.deb/1613070025153197", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb?generation=1613070025153197&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070025153197", "metageneration": "1", "storageClass": "STANDARD", "size": "31341616", "md5Hash": "9oVoERoIYb8GPY/+0zhGcg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "plnk8g==", "etag": "CK21447C4u4CEAE=", "timeCreated": "2021-02-11T19:00:25.154Z", @@ -2197,17 +3451,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb.sha512/1613070025238078", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070025238078&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i386.deb.sha512/1613070025238078", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb.sha512?generation=1613070025238078&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070025238078", "metageneration": "1", "storageClass": "STANDARD", "size": "162", "md5Hash": "an51R2OTZQuA5erikKwqqg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "B8Jmew==", "etag": "CL7M6I7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:25.239Z", @@ -2216,17 +3481,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm/1613070026983590", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm?generation=1613070026983590&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i686.rpm/1613070026983590", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm?generation=1613070026983590&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070026983590", "metageneration": "1", "storageClass": "STANDARD", "size": "31066592", "md5Hash": "UyhwkV2BQ4ZwFj4j0hzScw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NGjDjg==", "etag": "CKaR04/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:26.985Z", @@ -2235,17 +3511,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070027037585", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070027037585&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i686.rpm.sha512/1613070027037585", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm.sha512?generation=1613070027037585&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070027037585", "metageneration": "1", "storageClass": "STANDARD", "size": "162", "md5Hash": "5MgcMfHwyeWhaVwTp7V2fw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Aw7W9Q==", "etag": "CJG31o/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:27.039Z", @@ -2254,10 +3541,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070035408660", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070035408660&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070035408660", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070035408660&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070035408660", "metageneration": "1", @@ -2265,7 +3559,11 @@ "storageClass": "STANDARD", "size": "154447721", "md5Hash": "0jNrn1lNY/VvBjDzykDKoQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "AFC9fw==", "etag": "CJSu1ZPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:35.411Z", @@ -2274,17 +3572,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070035459762", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070035459762&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070035459762", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070035459762&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070035459762", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "PC2JxHtGb6GLGssRp4F4mw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Kfwy6A==", "etag": "CLK92JPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:35.461Z", @@ -2293,10 +3602,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070037158510", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070037158510&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz/1613070037158510", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070037158510&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070037158510", "metageneration": "1", @@ -2304,7 +3620,11 @@ "storageClass": "STANDARD", "size": "28916586", "md5Hash": "qfoQVzxFoRwOmMxtg/n8dg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "MY398w==", "etag": "CO6UwJTC4u4CEAE=", "timeCreated": "2021-02-11T19:00:37.160Z", @@ -2313,17 +3633,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070037206097", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070037206097&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070037206097", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070037206097&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070037206097", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "R0PX8kqdeRf/jMFIB9Ypfw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "suaTGQ==", "etag": "CNGIw5TC4u4CEAE=", "timeCreated": "2021-02-11T19:00:37.207Z", @@ -2332,10 +3663,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070038967765", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070038967765&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz/1613070038967765", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070038967765&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070038967765", "metageneration": "1", @@ -2343,7 +3681,11 @@ "storageClass": "STANDARD", "size": "29299388", "md5Hash": "Kc2QHa0IDageBpAW3cctEQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "rozxvA==", "etag": "CNXLrpXC4u4CEAE=", "timeCreated": "2021-02-11T19:00:38.976Z", @@ -2352,17 +3694,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070039062420", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070039062420&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070039062420", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070039062420&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070039062420", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "I3TuBtWIHVk9oHKVkoRZRQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "G2hpVQ==", "etag": "CJSvtJXC4u4CEAE=", "timeCreated": "2021-02-11T19:00:39.063Z", @@ -2371,10 +3724,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070040885397", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070040885397&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz/1613070040885397", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613070040885397&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070040885397", "metageneration": "1", @@ -2382,7 +3742,11 @@ "storageClass": "STANDARD", "size": "31592434", "md5Hash": "5JZxH5IbV7ZU2xkKUyWNHQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vh9eDg==", "etag": "CJXRo5bC4u4CEAE=", "timeCreated": "2021-02-11T19:00:40.887Z", @@ -2391,17 +3755,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070040935908", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070040935908&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070040935908", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070040935908&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070040935908", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "pikIw9HB0btwlCGUxVfTDw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "J+mihA==", "etag": "COTbppbC4u4CEAE=", "timeCreated": "2021-02-11T19:00:40.937Z", @@ -2410,10 +3785,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070042854183", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070042854183&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz/1613070042854183", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070042854183&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070042854183", "metageneration": "1", @@ -2421,7 +3803,11 @@ "storageClass": "STANDARD", "size": "32788532", "md5Hash": "soJ4ztn4nKKq4yFAWSNwYg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9BbK3Q==", "etag": "CKfmm5fC4u4CEAE=", "timeCreated": "2021-02-11T19:00:42.855Z", @@ -2430,17 +3816,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070042929561", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070042929561&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070042929561", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070042929561&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070042929561", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "UWlQx9y1xreFQ4pr+wuWkQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pbGFyQ==", "etag": "CJmzoJfC4u4CEAE=", "timeCreated": "2021-02-11T19:00:42.931Z", @@ -2449,10 +3846,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip/1613070044497364", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070044497364&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86.zip/1613070044497364", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip?generation=1613070044497364&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070044497364", "metageneration": "1", @@ -2460,7 +3864,11 @@ "storageClass": "STANDARD", "size": "28058490", "md5Hash": "Jvm3trFs0pFmVjoTzGsyQQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wniX4w==", "etag": "CNSLgJjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:44.499Z", @@ -2469,17 +3877,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070044560681", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070044560681&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86.zip.sha512/1613070044560681", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070044560681&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070044560681", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "/KE/oYnB/vNz06PLMv44Aw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "sFxRNw==", "etag": "CKn6g5jC4u4CEAE=", "timeCreated": "2021-02-11T19:00:44.562Z", @@ -2488,10 +3907,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070046364725", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070046364725&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip/1613070046364725", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip?generation=1613070046364725&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070046364725", "metageneration": "1", @@ -2499,7 +3925,11 @@ "storageClass": "STANDARD", "size": "28359713", "md5Hash": "g2ldJhlDkn58Soj3X/d4oQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9vZZiQ==", "etag": "CLWI8pjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:46.366Z", @@ -2508,17 +3938,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070046445284", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070046445284&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613070046445284", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070046445284&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070046445284", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "1haFUS+NNzkKFdlQGMZdDw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WwtP6g==", "etag": "COT99pjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:46.446Z", @@ -2527,17 +3968,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm/1613070048237122", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070048237122&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-x86_64.rpm/1613070048237122", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm?generation=1613070048237122&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070048237122", "metageneration": "1", "storageClass": "STANDARD", "size": "32551632", "md5Hash": "ZHhRihn4WeFtKB/rrUlFBg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "61kZYw==", "etag": "CMKs5JnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:48.238Z", @@ -2546,17 +3998,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070048288653", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070048288653&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-x86_64.rpm.sha512/1613070048288653", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070048288653&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070048288653", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "CxGu+t3RVS0vcgAhsZw5EQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3NYFiw==", "etag": "CI2/55nC4u4CEAE=", "timeCreated": "2021-02-11T19:00:48.290Z", @@ -2565,17 +4028,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1613069890094614", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069890094614&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-aarch64.rpm/1613069890094614", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-aarch64.rpm?generation=1613069890094614&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069890094614", "metageneration": "1", "storageClass": "STANDARD", "size": "18294101", "md5Hash": "iyHJP5ybD9p+6EsIfHFLbA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DcvVgw==", "etag": "CJaMsM7B4u4CEAE=", "timeCreated": "2021-02-11T18:58:10.096Z", @@ -2584,17 +4058,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069890160911", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069890160911&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1613069890160911", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069890160911&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069890160911", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "4n0lHXAphOOgZ9/u7APVYQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CLeeyA==", "etag": "CI+StM7B4u4CEAE=", "timeCreated": "2021-02-11T18:58:10.162Z", @@ -2603,17 +4088,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-amd64.deb/1613069891305038", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1613069891305038&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-amd64.deb/1613069891305038", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-amd64.deb?generation=1613069891305038&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069891305038", "metageneration": "1", "storageClass": "STANDARD", "size": "21045658", "md5Hash": "J2ZC4F2G5F5LNmSGq9UttQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3fCU4w==", "etag": "CM78+c7B4u4CEAE=", "timeCreated": "2021-02-11T18:58:11.307Z", @@ -2622,17 +4118,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069891351385", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069891351385&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-amd64.deb.sha512/1613069891351385", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1613069891351385&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069891351385", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "k0Oh9H03bcQB+knQUs1zWA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vzWNyQ==", "etag": "CNnm/M7B4u4CEAE=", "timeCreated": "2021-02-11T18:58:11.352Z", @@ -2641,17 +4148,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-arm64.deb/1613069892380076", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1613069892380076&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-arm64.deb/1613069892380076", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-arm64.deb?generation=1613069892380076&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069892380076", "metageneration": "1", "storageClass": "STANDARD", "size": "18442158", "md5Hash": "Lrhr4g1h7nAl6PSP3HT63A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6OgynA==", "etag": "CKzLu8/B4u4CEAE=", "timeCreated": "2021-02-11T18:58:12.381Z", @@ -2660,17 +4178,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069892426932", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069892426932&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-arm64.deb.sha512/1613069892426932", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1613069892426932&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069892426932", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "Omtt2GNBdsKepXqQCTTpqg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+MqbqQ==", "etag": "CLS5vs/B4u4CEAE=", "timeCreated": "2021-02-11T18:58:12.428Z", @@ -2679,17 +4208,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhf.deb/1613069893467313", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1613069893467313&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhf.deb/1613069893467313", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhf.deb?generation=1613069893467313&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069893467313", "metageneration": "1", "storageClass": "STANDARD", "size": "18502904", "md5Hash": "rUAabL52Svz3XS3RA4sxWg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "r2+81w==", "etag": "CLH5/c/B4u4CEAE=", "timeCreated": "2021-02-11T18:58:13.469Z", @@ -2698,17 +4238,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1613069893529098", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613069893529098&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhf.deb.sha512/1613069893529098", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1613069893529098&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069893529098", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "DePh6tkaqRvkAvtocjomgw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iKYVsA==", "etag": "CIrcgdDB4u4CEAE=", "timeCreated": "2021-02-11T18:58:13.530Z", @@ -2717,17 +4268,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1613069894584413", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613069894584413&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhfp.rpm/1613069894584413", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhfp.rpm?generation=1613069894584413&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069894584413", "metageneration": "1", "storageClass": "STANDARD", "size": "18372648", "md5Hash": "PtOo8NzYmCnuTNrWOal/hQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jqCQzg==", "etag": "CN2QwtDB4u4CEAE=", "timeCreated": "2021-02-11T18:58:14.585Z", @@ -2736,17 +4298,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613069894651649", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613069894651649&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1613069894651649", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1613069894651649&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069894651649", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "pY6I/J8YlP8ZPWEcDG2wVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "beWMJQ==", "etag": "CIGextDB4u4CEAE=", "timeCreated": "2021-02-11T18:58:14.653Z", @@ -2755,10 +4328,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613069895742621", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613069895742621&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1613069895742621", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613069895742621&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069895742621", "metageneration": "1", @@ -2766,7 +4346,11 @@ "storageClass": "STANDARD", "size": "20364557", "md5Hash": "WC4qPrET8FJJ4NQoMrHQAA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "UzLztg==", "etag": "CJ3piNHB4u4CEAE=", "timeCreated": "2021-02-11T18:58:15.744Z", @@ -2775,17 +4359,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613069895801018", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613069895801018&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613069895801018", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613069895801018&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069895801018", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "2SNkuSB291824IUvc7M/yw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "l6BlNA==", "etag": "CLqxjNHB4u4CEAE=", "timeCreated": "2021-02-11T18:58:15.802Z", @@ -2794,17 +4389,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i386.deb/1613069896905080", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1613069896905080&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i386.deb/1613069896905080", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i386.deb?generation=1613069896905080&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069896905080", "metageneration": "1", "storageClass": "STANDARD", "size": "19991734", "md5Hash": "rdhsCwCvLFVXT265mOMIgA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eWiNtg==", "etag": "CPjiz9HB4u4CEAE=", "timeCreated": "2021-02-11T18:58:16.906Z", @@ -2813,17 +4419,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1613069896952607", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613069896952607&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i386.deb.sha512/1613069896952607", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1613069896952607&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069896952607", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "dnYi8OSDzsD7qNzZ0CFqPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "JEWVQw==", "etag": "CJ/W0tHB4u4CEAE=", "timeCreated": "2021-02-11T18:58:16.954Z", @@ -2832,17 +4449,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i686.rpm/1613069898068450", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1613069898068450&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i686.rpm/1613069898068450", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i686.rpm?generation=1613069898068450&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069898068450", "metageneration": "1", "storageClass": "STANDARD", "size": "19823386", "md5Hash": "e1LCktSkL5aczHQr+k1HZw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RKpBWA==", "etag": "COLjltLB4u4CEAE=", "timeCreated": "2021-02-11T18:58:18.070Z", @@ -2851,17 +4479,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1613069898119426", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613069898119426&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i686.rpm.sha512/1613069898119426", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1613069898119426&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069898119426", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "AECyUlj4EmOBY+ogKjM3Jw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jCoEgQ==", "etag": "CILymdLB4u4CEAE=", "timeCreated": "2021-02-11T18:58:18.121Z", @@ -2870,10 +4509,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613069905220393", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613069905220393&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1613069905220393", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613069905220393&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069905220393", "metageneration": "1", @@ -2881,7 +4527,11 @@ "storageClass": "STANDARD", "size": "142513613", "md5Hash": "ABDK4AxjWbHFiaSMNtX9HQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "phZVig==", "etag": "CKmmy9XB4u4CEAE=", "timeCreated": "2021-02-11T18:58:25.222Z", @@ -2890,17 +4540,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613069905266982", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613069905266982&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613069905266982", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613069905266982&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069905266982", "metageneration": "1", "storageClass": "STANDARD", "size": "183", "md5Hash": "02M9SsZi1uiITpREfsZIKQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "F6sMpA==", "etag": "CKaSztXB4u4CEAE=", "timeCreated": "2021-02-11T18:58:25.268Z", @@ -2909,10 +4570,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613069906314756", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613069906314756&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1613069906314756", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1613069906314756&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069906314756", "metageneration": "1", @@ -2920,7 +4588,11 @@ "storageClass": "STANDARD", "size": "18378495", "md5Hash": "3mH8NC73IHv6nHfYbjmHGg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "W25Xog==", "etag": "CISMjtbB4u4CEAE=", "timeCreated": "2021-02-11T18:58:26.316Z", @@ -2929,17 +4601,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613069906368582", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613069906368582&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613069906368582", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613069906368582&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069906368582", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "ufAL8+XYmCJBVRwBAe7sEQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RVoNEw==", "etag": "CMawkdbB4u4CEAE=", "timeCreated": "2021-02-11T18:58:26.370Z", @@ -2948,10 +4631,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613069907405475", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613069907405475&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1613069907405475", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1613069907405475&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069907405475", "metageneration": "1", @@ -2959,7 +4649,11 @@ "storageClass": "STANDARD", "size": "18720611", "md5Hash": "SnOWv+Xk2CqCtjTqAoOGFw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7ENE9Q==", "etag": "CKPV0NbB4u4CEAE=", "timeCreated": "2021-02-11T18:58:27.407Z", @@ -2968,17 +4662,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613069907460995", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613069907460995&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613069907460995", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613069907460995&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069907460995", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "7WT+C3KkhR3S4XMhdvX2aQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "c5DGhw==", "etag": "CIOH1NbB4u4CEAE=", "timeCreated": "2021-02-11T18:58:27.462Z", @@ -2987,10 +4692,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613069908522911", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613069908522911&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86.tar.gz/1613069908522911", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1613069908522911&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069908522911", "metageneration": "1", @@ -2998,7 +4710,11 @@ "storageClass": "STANDARD", "size": "20079361", "md5Hash": "rf8tluDenDeki4VcVFRZuw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "g9KAAA==", "etag": "CJ/vlNfB4u4CEAE=", "timeCreated": "2021-02-11T18:58:28.524Z", @@ -3007,17 +4723,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613069908583735", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613069908583735&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1613069908583735", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613069908583735&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069908583735", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "k9WuGW1cdOVXrQhG4ke3lA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ElXSAA==", "etag": "CLfKmNfB4u4CEAE=", "timeCreated": "2021-02-11T18:58:28.585Z", @@ -3026,10 +4753,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613069909732103", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613069909732103&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1613069909732103", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613069909732103&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069909732103", "metageneration": "1", @@ -3037,7 +4771,11 @@ "storageClass": "STANDARD", "size": "20851449", "md5Hash": "3UZU9R/VFgL0C57aWFbhvw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WMMB0A==", "etag": "CIfW3tfB4u4CEAE=", "timeCreated": "2021-02-11T18:58:29.733Z", @@ -3046,17 +4784,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613069909798040", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613069909798040&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613069909798040", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613069909798040&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069909798040", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "9lMTvdFKp8CYRZ6rJ1VkPg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XLqjGg==", "etag": "CJjZ4tfB4u4CEAE=", "timeCreated": "2021-02-11T18:58:29.800Z", @@ -3065,10 +4814,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1613069910809016", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613069910809016&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86.zip/1613069910809016", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86.zip?generation=1613069910809016&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069910809016", "metageneration": "1", @@ -3076,7 +4832,11 @@ "storageClass": "STANDARD", "size": "16788606", "md5Hash": "TVlis6LMRkFJn1dElpIuzA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RSo8sQ==", "etag": "CLizoNjB4u4CEAE=", "timeCreated": "2021-02-11T18:58:30.810Z", @@ -3085,17 +4845,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613069910860339", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613069910860339&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1613069910860339", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1613069910860339&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069910860339", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "uLAVXohbDRO3FEz1gES8Aw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bq++YQ==", "etag": "CLPEo9jB4u4CEAE=", "timeCreated": "2021-02-11T18:58:30.862Z", @@ -3104,10 +4875,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1613069911835134", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613069911835134&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86_64.zip/1613069911835134", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1613069911835134&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069911835134", "metageneration": "1", @@ -3115,7 +4893,11 @@ "storageClass": "STANDARD", "size": "17032521", "md5Hash": "7byeylk8ynDjFZo79ImfOw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "HKu1Tw==", "etag": "CP6D39jB4u4CEAE=", "timeCreated": "2021-02-11T18:58:31.836Z", @@ -3124,17 +4906,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613069911882223", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613069911882223&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1613069911882223", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613069911882223&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069911882223", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "EK/jyElCVeASGA9KjqCQFQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "GBUvMg==", "etag": "CO/z4djB4u4CEAE=", "timeCreated": "2021-02-11T18:58:31.883Z", @@ -3143,17 +4936,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1613069913001153", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613069913001153&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-x86_64.rpm/1613069913001153", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-x86_64.rpm?generation=1613069913001153&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069913001153", "metageneration": "1", "storageClass": "STANDARD", "size": "20774508", "md5Hash": "7aKfXs81HLAsPnQnZvOydg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "0hzjsA==", "etag": "CMGZptnB4u4CEAE=", "timeCreated": "2021-02-11T18:58:33.003Z", @@ -3162,17 +4966,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613069913055437", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613069913055437&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1613069913055437", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1613069913055437&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069913055437", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "W4rdpfD1YvsgS3rpcDQjsg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''filebeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''filebeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gLbMJA==", "etag": "CM3BqdnB4u4CEAE=", "timeCreated": "2021-02-11T18:58:33.057Z", @@ -3181,10 +4996,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070052551992", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070052551992&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070052551992", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070052551992&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070052551992", "metageneration": "1", @@ -3192,7 +5014,11 @@ "storageClass": "STANDARD", "size": "76022807", "md5Hash": "/cedanaGaKbpxVJwmG6Mbg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "oXrtqQ==", "etag": "CLja65vC4u4CEAE=", "timeCreated": "2021-02-11T19:00:52.554Z", @@ -3201,17 +5027,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070052599061", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070052599061&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070052599061", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffilebeat%2Ffilebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070052599061&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/filebeat/filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070052599061", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "SCMfFrRvWorKfxylwkpV3w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7EHrow==", "etag": "CJXK7pvC4u4CEAE=", "timeCreated": "2021-02-11T19:00:52.600Z", @@ -3220,10 +5057,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613070189400418", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613070189400418&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1613070189400418", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613070189400418&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070189400418", "metageneration": "1", @@ -3231,7 +5075,11 @@ "storageClass": "STANDARD", "size": "155934205", "md5Hash": "crvPXtAeQnyUkMsjPoeFow==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NU+LKQ==", "etag": "COKijN3C4u4CEAE=", "timeCreated": "2021-02-11T19:03:09.402Z", @@ -3240,17 +5088,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613070189498568", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613070189498568&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613070189498568", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613070189498568&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070189498568", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "MzttWFN2YqOsQAaNItjW1g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CD1xTA==", "etag": "CMihkt3C4u4CEAE=", "timeCreated": "2021-02-11T19:03:09.500Z", @@ -3259,10 +5118,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070198452636", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070198452636&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-arm64.tar.gz/1613070198452636", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070198452636&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070198452636", "metageneration": "1", @@ -3270,7 +5136,11 @@ "storageClass": "STANDARD", "size": "153545422", "md5Hash": "kj8uO5DexDG6yXDD71YmVg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DcI9MA==", "etag": "CJzjtOHC4u4CEAE=", "timeCreated": "2021-02-11T19:03:18.454Z", @@ -3279,17 +5149,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070198516646", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070198516646&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070198516646", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070198516646&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070198516646", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "Zz+yv+TLivGiYXX7/Z5Qdw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wkQ2/w==", "etag": "CKbXuOHC4u4CEAE=", "timeCreated": "2021-02-11T19:03:18.517Z", @@ -3298,10 +5179,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070209236956", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070209236956&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-armv7.tar.gz/1613070209236956", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070209236956&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070209236956", "metageneration": "1", @@ -3309,7 +5197,11 @@ "storageClass": "STANDARD", "size": "153820703", "md5Hash": "sSKLh4199rTQkheLox+EFg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bYgguQ==", "etag": "CNz/xubC4u4CEAE=", "timeCreated": "2021-02-11T19:03:29.238Z", @@ -3318,17 +5210,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070209324315", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070209324315&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070209324315", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070209324315&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070209324315", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "Sv9comVXUpj8M1xQ3wwK+A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "AjRqRg==", "etag": "CJuqzObC4u4CEAE=", "timeCreated": "2021-02-11T19:03:29.325Z", @@ -3337,10 +5240,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070217758340", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070217758340&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86.tar.gz/1613070217758340", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613070217758340&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070217758340", "metageneration": "1", @@ -3348,7 +5258,11 @@ "storageClass": "STANDARD", "size": "155593821", "md5Hash": "0fho6JAmiP8CYl/zjqzNIQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dxPUPg==", "etag": "CISNz+rC4u4CEAE=", "timeCreated": "2021-02-11T19:03:37.760Z", @@ -3357,17 +5271,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070217813969", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070217813969&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070217813969", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070217813969&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070217813969", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "KoqQN9Z0F9Lvj2rqX6A/cg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VKpNiQ==", "etag": "CNG/0urC4u4CEAE=", "timeCreated": "2021-02-11T19:03:37.815Z", @@ -3376,10 +5301,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070226407879", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070226407879&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86_64.tar.gz/1613070226407879", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070226407879&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070226407879", "metageneration": "1", @@ -3387,7 +5319,11 @@ "storageClass": "STANDARD", "size": "156633470", "md5Hash": "FrO1rEBqC0R5UcDDBibh5w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dgCJNg==", "etag": "CMeD3+7C4u4CEAE=", "timeCreated": "2021-02-11T19:03:46.409Z", @@ -3396,17 +5332,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070226471416", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070226471416&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070226471416", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070226471416&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070226471416", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "agHhBO20B5CgmjCDO90ntg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "u1jQIA==", "etag": "CPjz4u7C4u4CEAE=", "timeCreated": "2021-02-11T19:03:46.473Z", @@ -3415,10 +5362,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86.zip/1613070235215679", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070235215679&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86.zip/1613070235215679", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86.zip?generation=1613070235215679&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070235215679", "metageneration": "1", @@ -3426,7 +5380,11 @@ "storageClass": "STANDARD", "size": "162702000", "md5Hash": "SPruwDpt9y9EDwEJshN0Rg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''functionbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+F+zjQ==", "etag": "CL/O+PLC4u4CEAE=", "timeCreated": "2021-02-11T19:03:55.219Z", @@ -3435,17 +5393,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070235280375", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070235280375&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86.zip.sha512/1613070235280375", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070235280375&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070235280375", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "O8oUonrCnyuW13jSl5pu5g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Ib809A==", "etag": "CPfH/PLC4u4CEAE=", "timeCreated": "2021-02-11T19:03:55.282Z", @@ -3454,10 +5423,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070244026874", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070244026874&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86_64.zip/1613070244026874", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86_64.zip?generation=1613070244026874&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070244026874", "metageneration": "1", @@ -3465,7 +5441,11 @@ "storageClass": "STANDARD", "size": "163187171", "md5Hash": "phTp+HW0amy5RsM6BGMIVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''functionbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "emk/4g==", "etag": "CPqzkvfC4u4CEAE=", "timeCreated": "2021-02-11T19:04:04.030Z", @@ -3474,17 +5454,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070244157565", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070244157565&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613070244157565", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Ffunctionbeat%2Ffunctionbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070244157565&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/functionbeat/functionbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070244157565", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "3E36/TFg3MSvN/cKd9RH4Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''functionbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"functionbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''functionbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "TAs2Gg==", "etag": "CP2wmvfC4u4CEAE=", "timeCreated": "2021-02-11T19:04:04.159Z", @@ -3493,17 +5484,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-aarch64.rpm/1613070271370982", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613070271370982&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-aarch64.rpm/1613070271370982", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-aarch64.rpm?generation=1613070271370982&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070271370982", "metageneration": "1", "storageClass": "STANDARD", "size": "21995445", "md5Hash": "AZc55laxiDSWoUNl5eTWNA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''heartbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2b/wzA==", "etag": "COatl4TD4u4CEAE=", "timeCreated": "2021-02-11T19:04:31.372Z", @@ -3512,17 +5514,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613070271441635", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613070271441635&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-aarch64.rpm.sha512/1613070271441635", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1613070271441635&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070271441635", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "O0wV9UIXiYwuKmLCy3bTxw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9T8baw==", "etag": "COPVm4TD4u4CEAE=", "timeCreated": "2021-02-11T19:04:31.443Z", @@ -3531,17 +5544,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-amd64.deb/1613070272858587", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1613070272858587&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-amd64.deb/1613070272858587", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-amd64.deb?generation=1613070272858587&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070272858587", "metageneration": "1", "storageClass": "STANDARD", "size": "25581610", "md5Hash": "HXNUkQgTDtdYlKsmxc4GYQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''heartbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "0PcY3A==", "etag": "CNuT8oTD4u4CEAE=", "timeCreated": "2021-02-11T19:04:32.860Z", @@ -3550,17 +5574,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1613070272915269", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613070272915269&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-amd64.deb.sha512/1613070272915269", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-amd64.deb.sha512?generation=1613070272915269&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070272915269", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "B/IOhsEYfhvPLiPfPjbeQw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Xrvjwg==", "etag": "CMXO9YTD4u4CEAE=", "timeCreated": "2021-02-11T19:04:32.916Z", @@ -3569,17 +5604,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-arm64.deb/1613070274176097", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1613070274176097&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-arm64.deb/1613070274176097", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-arm64.deb?generation=1613070274176097&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070274176097", "metageneration": "1", "storageClass": "STANDARD", "size": "22196526", "md5Hash": "KQBKUJ2hvisubIR2Ap5gDQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''heartbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XKSZKA==", "etag": "COHIwoXD4u4CEAE=", "timeCreated": "2021-02-11T19:04:34.177Z", @@ -3588,17 +5634,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1613070274226867", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613070274226867&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-arm64.deb.sha512/1613070274226867", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-arm64.deb.sha512?generation=1613070274226867&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070274226867", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "CAa2u6UuzHbCkEQD6DG2Wg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "f9hW3w==", "etag": "CLPVxYXD4u4CEAE=", "timeCreated": "2021-02-11T19:04:34.228Z", @@ -3607,17 +5664,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhf.deb/1613070275469981", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1613070275469981&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhf.deb/1613070275469981", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhf.deb?generation=1613070275469981&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070275469981", "metageneration": "1", "storageClass": "STANDARD", "size": "22168592", "md5Hash": "ZbHH2av+9fSskWXMbN1Ksg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''heartbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "1c0y1g==", "etag": "CJ3FkYbD4u4CEAE=", "timeCreated": "2021-02-11T19:04:35.471Z", @@ -3626,17 +5694,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1613070275527396", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613070275527396&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhf.deb.sha512/1613070275527396", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhf.deb.sha512?generation=1613070275527396&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070275527396", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "y91ig3YhufqV5YGhsgP7Tg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5Amy6g==", "etag": "COSFlYbD4u4CEAE=", "timeCreated": "2021-02-11T19:04:35.528Z", @@ -3645,17 +5724,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhfp.rpm/1613070276795034", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613070276795034&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhfp.rpm/1613070276795034", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhfp.rpm?generation=1613070276795034&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070276795034", "metageneration": "1", "storageClass": "STANDARD", "size": "22009012", "md5Hash": "NQC+INCICACPWMcHvy919w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''heartbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pJXOSw==", "etag": "CJq14obD4u4CEAE=", "timeCreated": "2021-02-11T19:04:36.796Z", @@ -3664,17 +5754,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613070276846254", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613070276846254&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhfp.rpm.sha512/1613070276846254", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1613070276846254&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070276846254", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "Df1ZTLFTK1zTvHd7bGfNWg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "rJd6dw==", "etag": "CK7F5YbD4u4CEAE=", "timeCreated": "2021-02-11T19:04:36.847Z", @@ -3683,10 +5784,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613070278287087", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613070278287087&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1613070278287087", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613070278287087&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070278287087", "metageneration": "1", @@ -3694,7 +5802,11 @@ "storageClass": "STANDARD", "size": "24678383", "md5Hash": "9rU71H7sdAQ2h8eOKARkkA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eX1XvQ==", "etag": "CO+9vYfD4u4CEAE=", "timeCreated": "2021-02-11T19:04:38.288Z", @@ -3703,17 +5815,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613070278340117", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613070278340117&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613070278340117", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613070278340117&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070278340117", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "a4FzdlWEToY6dHS4kp3nmA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eu3nIA==", "etag": "CJXcwIfD4u4CEAE=", "timeCreated": "2021-02-11T19:04:38.341Z", @@ -3722,17 +5845,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i386.deb/1613070279702600", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i386.deb?generation=1613070279702600&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i386.deb/1613070279702600", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i386.deb?generation=1613070279702600&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070279702600", "metageneration": "1", "storageClass": "STANDARD", "size": "24267188", "md5Hash": "MaTm3pNdICNZmh+dVESJjA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''heartbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "/uMcng==", "etag": "CMjwk4jD4u4CEAE=", "timeCreated": "2021-02-11T19:04:39.704Z", @@ -3741,17 +5875,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1613070279759196", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070279759196&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i386.deb.sha512/1613070279759196", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i386.deb.sha512?generation=1613070279759196&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070279759196", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "rlKgI0RySinjeSePAZG7OQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RC9Sxg==", "etag": "CNyql4jD4u4CEAE=", "timeCreated": "2021-02-11T19:04:39.760Z", @@ -3760,17 +5905,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i686.rpm/1613070281112360", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1613070281112360&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i686.rpm/1613070281112360", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i686.rpm?generation=1613070281112360&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070281112360", "metageneration": "1", "storageClass": "STANDARD", "size": "24042817", "md5Hash": "CHvxHSq8kJDjG5Bhxv1eNw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''heartbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "osVRow==", "etag": "CKj26YjD4u4CEAE=", "timeCreated": "2021-02-11T19:04:41.114Z", @@ -3779,17 +5935,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070281266360", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070281266360&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i686.rpm.sha512/1613070281266360", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-i686.rpm.sha512?generation=1613070281266360&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070281266360", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "wIwwNrVzg/Llf+NC1b4uZw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "oJExgg==", "etag": "CLip84jD4u4CEAE=", "timeCreated": "2021-02-11T19:04:41.267Z", @@ -3798,10 +5965,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070302763527", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070302763527&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070302763527", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070302763527&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070302763527", "metageneration": "1", @@ -3809,7 +5983,11 @@ "storageClass": "STANDARD", "size": "424282027", "md5Hash": "zPeVvRTAhTRXxVa6fgTJYA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xJjbFQ==", "etag": "CIe0k5PD4u4CEAE=", "timeCreated": "2021-02-11T19:05:02.766Z", @@ -3818,17 +5996,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070302817574", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070302817574&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070302817574", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070302817574&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070302817574", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "HWIStDCUA7+fIr5FSrzkbw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FPHRUA==", "etag": "CKbalpPD4u4CEAE=", "timeCreated": "2021-02-11T19:05:02.819Z", @@ -3837,10 +6026,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070304039477", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070304039477&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-arm64.tar.gz/1613070304039477", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070304039477&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070304039477", "metageneration": "1", @@ -3848,7 +6044,11 @@ "storageClass": "STANDARD", "size": "22193445", "md5Hash": "G1Jm0iz8PG3kw4lI5zRBzA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "y+4JeQ==", "etag": "CLWk4ZPD4u4CEAE=", "timeCreated": "2021-02-11T19:05:04.041Z", @@ -3857,17 +6057,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070304104233", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070304104233&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070304104233", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070304104233&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070304104233", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "hshcH8tKyq+fGGwK3rH+/Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NU1F0A==", "etag": "CKme5ZPD4u4CEAE=", "timeCreated": "2021-02-11T19:05:04.105Z", @@ -3876,10 +6087,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070305366045", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070305366045&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-armv7.tar.gz/1613070305366045", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070305366045&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070305366045", "metageneration": "1", @@ -3887,7 +6105,11 @@ "storageClass": "STANDARD", "size": "22538880", "md5Hash": "o9H2hEckYmfzNi9LwJ/RZQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FHn9SA==", "etag": "CJ2gspTD4u4CEAE=", "timeCreated": "2021-02-11T19:05:05.367Z", @@ -3896,17 +6118,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070305438286", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070305438286&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070305438286", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070305438286&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070305438286", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "vYkBiUm/AwkVzUlGH6DHUA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VNdRYQ==", "etag": "CM7UtpTD4u4CEAE=", "timeCreated": "2021-02-11T19:05:05.440Z", @@ -3915,10 +6148,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070306754487", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070306754487&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86.tar.gz/1613070306754487", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613070306754487&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070306754487", "metageneration": "1", @@ -3926,7 +6166,11 @@ "storageClass": "STANDARD", "size": "24461285", "md5Hash": "Ia1eZpFFrv7xDyD14LPYjA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Ky1LaA==", "etag": "CLf/hpXD4u4CEAE=", "timeCreated": "2021-02-11T19:05:06.756Z", @@ -3935,17 +6179,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070306809935", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070306809935&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070306809935", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070306809935&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070306809935", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "EV3EUTW1+kKJyUpQoKCW6Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EwzJOw==", "etag": "CM+wipXD4u4CEAE=", "timeCreated": "2021-02-11T19:05:06.811Z", @@ -3954,10 +6209,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070308172507", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070308172507&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86_64.tar.gz/1613070308172507", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070308172507&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070308172507", "metageneration": "1", @@ -3965,7 +6227,11 @@ "storageClass": "STANDARD", "size": "25403116", "md5Hash": "9Cmq2uW6kj8okqZuwX6aFg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3Nr+aA==", "etag": "CNvF3ZXD4u4CEAE=", "timeCreated": "2021-02-11T19:05:08.174Z", @@ -3974,17 +6240,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070308233138", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070308233138&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070308233138", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070308233138&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070308233138", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "PCESdlkNqQ9KBiA2Jnt7fA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "D50UFQ==", "etag": "CLKf4ZXD4u4CEAE=", "timeCreated": "2021-02-11T19:05:08.234Z", @@ -3993,10 +6270,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86.zip/1613070309406197", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070309406197&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86.zip/1613070309406197", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86.zip?generation=1613070309406197&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070309406197", "metageneration": "1", @@ -4004,7 +6288,11 @@ "storageClass": "STANDARD", "size": "21023365", "md5Hash": "LCVBds9lBQkHvmauC1uyww==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''heartbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "uCxa/Q==", "etag": "CPXrqJbD4u4CEAE=", "timeCreated": "2021-02-11T19:05:09.407Z", @@ -4013,17 +6301,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070309462503", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070309462503&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86.zip.sha512/1613070309462503", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070309462503&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070309462503", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "W+lU+jr5IeXj4Awuem6fDw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FD04Qg==", "etag": "COejrJbD4u4CEAE=", "timeCreated": "2021-02-11T19:05:09.464Z", @@ -4032,10 +6331,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070310718524", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070310718524&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86_64.zip/1613070310718524", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86_64.zip?generation=1613070310718524&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070310718524", "metageneration": "1", @@ -4043,7 +6349,11 @@ "storageClass": "STANDARD", "size": "21204597", "md5Hash": "sdGEEKYdhs+UkJY7ToqxnA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''heartbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wmV8xw==", "etag": "CLz4+JbD4u4CEAE=", "timeCreated": "2021-02-11T19:05:10.720Z", @@ -4052,17 +6362,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070310766002", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070310766002&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613070310766002", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070310766002&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070310766002", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "ocV8NqElgSMMeqx3ihalKg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iB2v8g==", "etag": "CLLr+5bD4u4CEAE=", "timeCreated": "2021-02-11T19:05:10.767Z", @@ -4071,17 +6392,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-x86_64.rpm/1613070312124803", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070312124803&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-x86_64.rpm/1613070312124803", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-x86_64.rpm?generation=1613070312124803&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070312124803", "metageneration": "1", "storageClass": "STANDARD", "size": "25230788", "md5Hash": "ED6KdZrAiDpRZU4wAe71pQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''heartbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zTjbYQ==", "etag": "CIPjzpfD4u4CEAE=", "timeCreated": "2021-02-11T19:05:12.126Z", @@ -4090,17 +6422,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070312180196", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070312180196&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-x86_64.rpm.sha512/1613070312180196", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070312180196&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070312180196", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "jFXeTifURKBzp++UhM7XkA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''heartbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''heartbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NB1ttQ==", "etag": "COST0pfD4u4CEAE=", "timeCreated": "2021-02-11T19:05:12.181Z", @@ -4109,17 +6452,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1613069990650981", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069990650981&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-aarch64.rpm/1613069990650981", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1613069990650981&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069990650981", "metageneration": "1", "storageClass": "STANDARD", "size": "16960921", "md5Hash": "nZPPNYucxCW/i+Lsk+mx/w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QSRmPw==", "etag": "COXIqf7B4u4CEAE=", "timeCreated": "2021-02-11T18:59:50.653Z", @@ -4128,17 +6482,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069990706163", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069990706163&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1613069990706163", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069990706163&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069990706163", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "7cQ0YZxkbbEztLCkVcFDeg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lWwUaA==", "etag": "CPP3rP7B4u4CEAE=", "timeCreated": "2021-02-11T18:59:50.707Z", @@ -4147,17 +6512,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1613069992772552", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1613069992772552&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-amd64.deb/1613069992772552", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-amd64.deb?generation=1613069992772552&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069992772552", "metageneration": "1", "storageClass": "STANDARD", "size": "19631462", "md5Hash": "Jtkz8/+Q48MtjyBfYBdN+Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zW6lPQ==", "etag": "CMiHq//B4u4CEAE=", "timeCreated": "2021-02-11T18:59:52.774Z", @@ -4166,17 +6542,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069992821763", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069992821763&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-amd64.deb.sha512/1613069992821763", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1613069992821763&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069992821763", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "wO0EY9kmV5T2wuYtY6+a6Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "HMC+3w==", "etag": "CIOIrv/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:52.823Z", @@ -4185,17 +6572,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1613069993721479", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1613069993721479&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-arm64.deb/1613069993721479", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-arm64.deb?generation=1613069993721479&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069993721479", "metageneration": "1", "storageClass": "STANDARD", "size": "17126058", "md5Hash": "46OXNiKeKHM25vEE4tB6Xg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Li8STg==", "etag": "CIf95P/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:53.722Z", @@ -4204,17 +6602,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069993771398", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069993771398&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-arm64.deb.sha512/1613069993771398", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1613069993771398&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069993771398", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "z3ocRxAFoAWs3z1lY8VTVg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gFn4xg==", "etag": "CIaD6P/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:53.772Z", @@ -4223,17 +6632,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1613069994727603", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1613069994727603&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhf.deb/1613069994727603", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhf.deb?generation=1613069994727603&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069994727603", "metageneration": "1", "storageClass": "STANDARD", "size": "17188824", "md5Hash": "nypv/ZtNasCHs6lBwJ+PmA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "J+DodQ==", "etag": "CLOxooDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:54.729Z", @@ -4242,17 +6662,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1613069994781246", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613069994781246&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhf.deb.sha512/1613069994781246", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1613069994781246&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069994781246", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "ehEdQta6aC4f8qCxyqv/rQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "/bqeCQ==", "etag": "CL7UpYDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:54.782Z", @@ -4261,17 +6692,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1613069995751978", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613069995751978&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhfp.rpm/1613069995751978", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1613069995751978&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069995751978", "metageneration": "1", "storageClass": "STANDARD", "size": "17054395", "md5Hash": "xuRFFDDl4vZ0NnnC9NoSsw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zUvP0Q==", "etag": "CKr04IDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:55.753Z", @@ -4280,17 +6722,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613069995817807", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613069995817807&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1613069995817807", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1613069995817807&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069995817807", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "gJ3XLPaEaEXG5aWjZTLEeg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iMYJEA==", "etag": "CM/25IDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:55.819Z", @@ -4299,10 +6752,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613069996856398", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613069996856398&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1613069996856398", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613069996856398&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069996856398", "metageneration": "1", @@ -4310,7 +6770,11 @@ "storageClass": "STANDARD", "size": "18972065", "md5Hash": "H7RMPRaipm1/XxfTrCl6dA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OgUpug==", "etag": "CM6opIHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:56.857Z", @@ -4319,17 +6783,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613069996902217", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613069996902217&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613069996902217", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613069996902217&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069996902217", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "CLycNlkDaxPn69SNt9rMbw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5OL03A==", "etag": "CMmOp4HC4u4CEAE=", "timeCreated": "2021-02-11T18:59:56.903Z", @@ -4338,17 +6813,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i386.deb/1613069997976064", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1613069997976064&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i386.deb/1613069997976064", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i386.deb?generation=1613069997976064&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997976064", "metageneration": "1", "storageClass": "STANDARD", "size": "18635700", "md5Hash": "8mz7d+KVxtxOkMHVz/11Bw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "g0kOqQ==", "etag": "CIDU6IHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.977Z", @@ -4357,17 +6843,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1613069998037824", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613069998037824&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i386.deb.sha512/1613069998037824", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1613069998037824&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998037824", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "WfgznfAns9jbNEMnCL6kSQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "d+ZrlQ==", "etag": "CMC27IHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.040Z", @@ -4376,17 +6873,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1613069999042699", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1613069999042699&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i686.rpm/1613069999042699", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i686.rpm?generation=1613069999042699&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069999042699", "metageneration": "1", "storageClass": "STANDARD", "size": "18464669", "md5Hash": "oQR5ohqh2q4h93n/TUG5ww==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "AHhMLg==", "etag": "CIvhqYLC4u4CEAE=", "timeCreated": "2021-02-11T18:59:59.044Z", @@ -4395,17 +6903,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1613069999088085", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613069999088085&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i686.rpm.sha512/1613069999088085", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1613069999088085&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069999088085", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "PkhadY2c8NBWBrCYksSQpg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NkxkFA==", "etag": "CNXDrILC4u4CEAE=", "timeCreated": "2021-02-11T18:59:59.089Z", @@ -4414,10 +6933,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070019711823", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070019711823&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070019711823", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070019711823&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070019711823", "metageneration": "1", @@ -4425,7 +6951,11 @@ "storageClass": "STANDARD", "size": "418317750", "md5Hash": "NqZ5tFvYWsVK5dhfomEwBQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "A/Oxvw==", "etag": "CM+ml4zC4u4CEAE=", "timeCreated": "2021-02-11T19:00:19.714Z", @@ -4434,17 +6964,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070019773928", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070019773928&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070019773928", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070019773928&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070019773928", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "HEusC6Y54Er8VfVnzv/+wA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OQ0Ylg==", "etag": "COiLm4zC4u4CEAE=", "timeCreated": "2021-02-11T19:00:19.775Z", @@ -4453,10 +6994,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070020808378", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070020808378&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1613070020808378", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070020808378&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070020808378", "metageneration": "1", @@ -4464,7 +7012,11 @@ "storageClass": "STANDARD", "size": "17037504", "md5Hash": "Oybbz2pIFzpCHEqJhd9ISw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ERtEqw==", "etag": "CLqd2ozC4u4CEAE=", "timeCreated": "2021-02-11T19:00:20.810Z", @@ -4473,17 +7025,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070020856252", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070020856252&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070020856252", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070020856252&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070020856252", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "j58QvGYb3dJozo879ZD9ug==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fKNJVQ==", "etag": "CLyT3YzC4u4CEAE=", "timeCreated": "2021-02-11T19:00:20.857Z", @@ -4492,10 +7055,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070021999696", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070021999696&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1613070021999696", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070021999696&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070021999696", "metageneration": "1", @@ -4503,7 +7073,11 @@ "storageClass": "STANDARD", "size": "17370824", "md5Hash": "pqTOKrLRdvN2nnxF42seYw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QsVC5A==", "etag": "CND4oo3C4u4CEAE=", "timeCreated": "2021-02-11T19:00:22.001Z", @@ -4512,17 +7086,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070022047926", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070022047926&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070022047926", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070022047926&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070022047926", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "DZH1qj0e4/ZoGFjUq5iC+w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6lJ9vg==", "etag": "CLbxpY3C4u4CEAE=", "timeCreated": "2021-02-11T19:00:22.049Z", @@ -4531,10 +7116,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070023121937", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070023121937&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1613070023121937", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1613070023121937&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070023121937", "metageneration": "1", @@ -4542,7 +7134,11 @@ "storageClass": "STANDARD", "size": "18708984", "md5Hash": "akfnSwaCU6uq8Rn2z80VEA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "R89FBQ==", "etag": "CJG4543C4u4CEAE=", "timeCreated": "2021-02-11T19:00:23.123Z", @@ -4551,17 +7147,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070023168360", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070023168360&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070023168360", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070023168360&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070023168360", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "aD+gLvwAsgPoz1mtiFondg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VvyrRw==", "etag": "COii6o3C4u4CEAE=", "timeCreated": "2021-02-11T19:00:23.170Z", @@ -4570,10 +7177,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070024253339", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070024253339&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1613070024253339", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070024253339&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070024253339", "metageneration": "1", @@ -4581,7 +7195,11 @@ "storageClass": "STANDARD", "size": "19431365", "md5Hash": "U994U4FZV+20P+HIr7lMWA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4vxbUQ==", "etag": "CJu/rI7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:24.254Z", @@ -4590,17 +7208,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070024301119", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070024301119&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070024301119", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070024301119&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070024301119", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "HYXC73LKc9dQjH9YMzzjKQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FScGjw==", "etag": "CL+0r47C4u4CEAE=", "timeCreated": "2021-02-11T19:00:24.302Z", @@ -4609,10 +7238,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1613070025122135", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070025122135&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86.zip/1613070025122135", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1613070025122135&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070025122135", "metageneration": "1", @@ -4620,7 +7256,11 @@ "storageClass": "STANDARD", "size": "15357628", "md5Hash": "nVG7pEhWSZROnYuf/k90IA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "E/pgfA==", "etag": "CNfC4Y7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:25.123Z", @@ -4629,17 +7269,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070025169620", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070025169620&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1613070025169620", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070025169620&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070025169620", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "5ew8tIK+s78V0lafNmvNOw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "X3Mq7g==", "etag": "CNS15I7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:25.171Z", @@ -4648,10 +7299,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070026087802", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070026087802&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86_64.zip/1613070026087802", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1613070026087802&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070026087802", "metageneration": "1", @@ -4659,7 +7317,11 @@ "storageClass": "STANDARD", "size": "15553728", "md5Hash": "UPZ3MtEVB0uf/U/lV2S1kg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5/SMLw==", "etag": "CPq6nI/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:26.089Z", @@ -4668,17 +7330,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070026145260", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070026145260&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1613070026145260", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070026145260&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070026145260", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "/3aYKpLAPY87S0Rw+ChmlA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+GffJQ==", "etag": "COz7n4/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:26.146Z", @@ -4687,17 +7360,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1613070027181397", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070027181397&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-x86_64.rpm/1613070027181397", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1613070027181397&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070027181397", "metageneration": "1", "storageClass": "STANDARD", "size": "19360301", "md5Hash": "wf17ActDNUhluCe0n0UnxA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "n2YM+g==", "etag": "CNWa34/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:27.182Z", @@ -4706,17 +7390,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070027245749", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070027245749&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1613070027245749", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070027245749&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070027245749", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "SdHau0/WPpyisDk6ff5Hcw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''heartbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "0wAOrA==", "etag": "CLWR44/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:27.247Z", @@ -4725,10 +7420,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070316024516", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070316024516&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070316024516", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070316024516&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070316024516", "metageneration": "1", @@ -4736,7 +7438,11 @@ "storageClass": "STANDARD", "size": "68652961", "md5Hash": "uFtLvlNq4EAsWhmsbwfGZQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3bhWNA==", "etag": "CMTlvJnD4u4CEAE=", "timeCreated": "2021-02-11T19:05:16.026Z", @@ -4745,17 +7451,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070316188814", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070316188814&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070316188814", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fheartbeat%2Fheartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070316188814&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/heartbeat/heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070316188814", "metageneration": "1", "storageClass": "STANDARD", "size": "185", "md5Hash": "0sZJdHdZB7SZ2FU8NEFj7A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''heartbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''heartbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EDsv5Q==", "etag": "CI7pxpnD4u4CEAE=", "timeCreated": "2021-02-11T19:05:16.190Z", @@ -4764,17 +7481,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-aarch64.rpm/1613070042690215", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613070042690215&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-aarch64.rpm/1613070042690215", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-aarch64.rpm?generation=1613070042690215&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070042690215", "metageneration": "1", "storageClass": "STANDARD", "size": "22082060", "md5Hash": "EtDi09zWhx9Xg181AA5Lsw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''journalbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XVRoNA==", "etag": "CKflkZfC4u4CEAE=", "timeCreated": "2021-02-11T19:00:42.691Z", @@ -4783,17 +7511,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613070042742438", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613070042742438&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-aarch64.rpm.sha512/1613070042742438", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1613070042742438&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070042742438", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "jjyV0Ks681amGyVU8x3HVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "a95KPg==", "etag": "CKb9lJfC4u4CEAE=", "timeCreated": "2021-02-11T19:00:42.743Z", @@ -4802,17 +7541,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-amd64.deb/1613070044076229", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1613070044076229&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-amd64.deb/1613070044076229", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-amd64.deb?generation=1613070044076229&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070044076229", "metageneration": "1", "storageClass": "STANDARD", "size": "24984090", "md5Hash": "502ObRLwBRGu8r8SjAVXLQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''journalbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VWtjuQ==", "etag": "CMWx5pfC4u4CEAE=", "timeCreated": "2021-02-11T19:00:44.078Z", @@ -4821,17 +7571,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1613070044128035", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613070044128035&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-amd64.deb.sha512/1613070044128035", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-amd64.deb.sha512?generation=1613070044128035&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070044128035", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "Gga52DY0WPfYRLn3/BzjMw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NIC3kg==", "etag": "CKPG6ZfC4u4CEAE=", "timeCreated": "2021-02-11T19:00:44.129Z", @@ -4840,17 +7601,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-arm64.deb/1613070045327492", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1613070045327492&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-arm64.deb/1613070045327492", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-arm64.deb?generation=1613070045327492&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070045327492", "metageneration": "1", "storageClass": "STANDARD", "size": "22275280", "md5Hash": "9T864ugWQcTXRmszI1IPqg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''journalbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NKTYIw==", "etag": "CIThspjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:45.329Z", @@ -4859,17 +7631,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1613070045375571", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613070045375571&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-arm64.deb.sha512/1613070045375571", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-arm64.deb.sha512?generation=1613070045375571&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070045375571", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "nVlQj5RY3harBSbcgHF6Sw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2wV2+Q==", "etag": "CNPYtZjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:45.376Z", @@ -4878,17 +7661,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhf.deb/1613070046629050", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1613070046629050&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhf.deb/1613070046629050", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhf.deb?generation=1613070046629050&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070046629050", "metageneration": "1", "storageClass": "STANDARD", "size": "22241084", "md5Hash": "npMAm5xDwv4pvza76UiNnQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''journalbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8dKfEA==", "etag": "CLqZgpnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:46.630Z", @@ -4897,17 +7691,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1613070046671799", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613070046671799&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhf.deb.sha512/1613070046671799", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhf.deb.sha512?generation=1613070046671799&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070046671799", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "AX0GqjfSd0HMO4PpRjdW1w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RXEh5g==", "etag": "CLfnhJnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:46.673Z", @@ -4916,17 +7721,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhfp.rpm/1613070047864923", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613070047864923&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhfp.rpm/1613070047864923", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhfp.rpm?generation=1613070047864923&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070047864923", "metageneration": "1", "storageClass": "STANDARD", "size": "22092845", "md5Hash": "eXfI6whWZAT+JXXuw9toSg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''journalbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+7ZRcQ==", "etag": "CNvQzZnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:47.866Z", @@ -4935,17 +7751,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613070047921255", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613070047921255&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhfp.rpm.sha512/1613070047921255", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1613070047921255&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070047921255", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "hkPqVH66uxK5rUwMfgGh6A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "c0HYcQ==", "etag": "COeI0ZnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:47.922Z", @@ -4954,17 +7781,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i386.deb/1613070049169987", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i386.deb?generation=1613070049169987&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i386.deb/1613070049169987", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i386.deb?generation=1613070049169987&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070049169987", "metageneration": "1", "storageClass": "STANDARD", "size": "23681136", "md5Hash": "Xe+nCT80O585Hp4oY3NUUg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''journalbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "naigNg==", "etag": "CMOknZrC4u4CEAE=", "timeCreated": "2021-02-11T19:00:49.171Z", @@ -4973,17 +7811,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1613070049219212", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070049219212&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i386.deb.sha512/1613070049219212", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i386.deb.sha512?generation=1613070049219212&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070049219212", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "qgmojiUyMT58eZsBVFU1mA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "qyEUHA==", "etag": "CIyloJrC4u4CEAE=", "timeCreated": "2021-02-11T19:00:49.220Z", @@ -4992,17 +7841,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i686.rpm/1613070050495859", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1613070050495859&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i686.rpm/1613070050495859", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i686.rpm?generation=1613070050495859&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070050495859", "metageneration": "1", "storageClass": "STANDARD", "size": "23468789", "md5Hash": "LnDc7F/ftPBRGbmSbrjlSA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''journalbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5v/+qQ==", "etag": "CPOa7prC4u4CEAE=", "timeCreated": "2021-02-11T19:00:50.497Z", @@ -5011,17 +7871,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070050565976", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070050565976&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i686.rpm.sha512/1613070050565976", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-i686.rpm.sha512?generation=1613070050565976&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070050565976", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "HoVpfNioNwvGJBPMWWYxYg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gEEPiw==", "etag": "CNi+8prC4u4CEAE=", "timeCreated": "2021-02-11T19:00:50.567Z", @@ -5030,10 +7901,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070058375114", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070058375114&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070058375114", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070058375114&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070058375114", "metageneration": "1", @@ -5041,7 +7919,11 @@ "storageClass": "STANDARD", "size": "146463925", "md5Hash": "ez8osbrSmm7TIVqb2dUJkg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "SVFKoA==", "etag": "CMqPz57C4u4CEAE=", "timeCreated": "2021-02-11T19:00:58.377Z", @@ -5050,17 +7932,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070058434047", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070058434047&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070058434047", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070058434047&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070058434047", "metageneration": "1", "storageClass": "STANDARD", "size": "182", "md5Hash": "PsqY0eb6BtAXL85aCJD45A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "k8fJxw==", "etag": "CP/b0p7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:58.435Z", @@ -5069,10 +7962,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070059781302", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070059781302&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-arm64.tar.gz/1613070059781302", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070059781302&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070059781302", "metageneration": "1", @@ -5080,7 +7980,11 @@ "storageClass": "STANDARD", "size": "22281196", "md5Hash": "BHgBHcukyHwhq/YFBJMYWg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yWd1CQ==", "etag": "CLb5pJ/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:59.783Z", @@ -5089,17 +7993,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070059841801", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070059841801&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070059841801", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070059841801&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070059841801", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "By2BaokPsqBt8IJ2mFK21Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eh7oKQ==", "etag": "CInSqJ/C4u4CEAE=", "timeCreated": "2021-02-11T19:00:59.843Z", @@ -5108,10 +8023,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070061083988", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070061083988&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-armv7.tar.gz/1613070061083988", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070061083988&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070061083988", "metageneration": "1", @@ -5119,7 +8041,11 @@ "storageClass": "STANDARD", "size": "22626560", "md5Hash": "z5JSO6rIi+stCbyFQ4INuw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "YfdKzg==", "etag": "CNS69J/C4u4CEAE=", "timeCreated": "2021-02-11T19:01:01.085Z", @@ -5128,17 +8054,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070061143740", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070061143740&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070061143740", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070061143740&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070061143740", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "54xdQZn3QXvYbG1dH8Ydmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5Ylw/A==", "etag": "CLyN+J/C4u4CEAE=", "timeCreated": "2021-02-11T19:01:01.145Z", @@ -5147,10 +8084,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070062509843", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070062509843&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86.tar.gz/1613070062509843", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613070062509843&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070062509843", "metageneration": "1", @@ -5158,7 +8102,11 @@ "storageClass": "STANDARD", "size": "23854755", "md5Hash": "zhzxGJ+/k6x15EPp3vHSqQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "JK5RUA==", "etag": "CJO+y6DC4u4CEAE=", "timeCreated": "2021-02-11T19:01:02.511Z", @@ -5167,17 +8115,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070062563886", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070062563886&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070062563886", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070062563886&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070062563886", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "FkSM7q4p68gtMuBRfqtKmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "doGVag==", "etag": "CK7kzqDC4u4CEAE=", "timeCreated": "2021-02-11T19:01:02.565Z", @@ -5186,10 +8145,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070063954898", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070063954898&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86_64.tar.gz/1613070063954898", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070063954898&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070063954898", "metageneration": "1", @@ -5197,7 +8163,11 @@ "storageClass": "STANDARD", "size": "24808291", "md5Hash": "7jLhwAwOmoph+HXNKap1Yw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "p6L8XQ==", "etag": "CNLXo6HC4u4CEAE=", "timeCreated": "2021-02-11T19:01:03.957Z", @@ -5206,17 +8176,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070064010279", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070064010279&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070064010279", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070064010279&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070064010279", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "69aoQaQVB1rj3czhOt19Kg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wmjUsw==", "etag": "CKeIp6HC4u4CEAE=", "timeCreated": "2021-02-11T19:01:04.012Z", @@ -5225,17 +8206,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-x86_64.rpm/1613070065354395", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070065354395&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-x86_64.rpm/1613070065354395", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-x86_64.rpm?generation=1613070065354395&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070065354395", "metageneration": "1", "storageClass": "STANDARD", "size": "24648052", "md5Hash": "rjR51PqrfOsnwOY97exQ3g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''journalbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "F7FZCg==", "etag": "CJuN+aHC4u4CEAE=", "timeCreated": "2021-02-11T19:01:05.356Z", @@ -5244,17 +8236,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070065419960", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070065419960&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-x86_64.rpm.sha512/1613070065419960", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070065419960&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070065419960", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "U/SQUY4a0dtE6z2G1N2LNQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''journalbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''journalbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "aj1StA==", "etag": "CLiN/aHC4u4CEAE=", "timeCreated": "2021-02-11T19:01:05.421Z", @@ -5263,17 +8266,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1613070066403665", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613070066403665&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-aarch64.rpm/1613070066403665", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1613070066403665&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070066403665", "metageneration": "1", "storageClass": "STANDARD", "size": "17060110", "md5Hash": "jJJqyP6RiQcjg+sHwVgTcA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bKpomA==", "etag": "CNGSuaLC4u4CEAE=", "timeCreated": "2021-02-11T19:01:06.405Z", @@ -5282,17 +8296,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613070066456729", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613070066456729&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1613070066456729", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1613070066456729&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070066456729", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "bZrxEH3ZiMdMvzeXqLXckw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "74q69g==", "etag": "CJmxvKLC4u4CEAE=", "timeCreated": "2021-02-11T19:01:06.458Z", @@ -5301,17 +8326,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1613070067657952", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1613070067657952&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-amd64.deb/1613070067657952", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-amd64.deb?generation=1613070067657952&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070067657952", "metageneration": "1", "storageClass": "STANDARD", "size": "19263492", "md5Hash": "K7FgstYRm0X76Fi2pgd7Hw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Et7mkg==", "etag": "CODZhaPC4u4CEAE=", "timeCreated": "2021-02-11T19:01:07.659Z", @@ -5320,17 +8356,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1613070067752790", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613070067752790&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-amd64.deb.sha512/1613070067752790", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1613070067752790&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070067752790", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "p9pLbryogPAjL237ZG9HwQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "IdHD6A==", "etag": "CNa+i6PC4u4CEAE=", "timeCreated": "2021-02-11T19:01:07.754Z", @@ -5339,17 +8386,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1613070068745436", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1613070068745436&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-arm64.deb/1613070068745436", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-arm64.deb?generation=1613070068745436&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070068745436", "metageneration": "1", "storageClass": "STANDARD", "size": "17210732", "md5Hash": "2496Hh1CDeWMhWEZ4p9hAA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6uBB4w==", "etag": "CNyJyKPC4u4CEAE=", "timeCreated": "2021-02-11T19:01:08.746Z", @@ -5358,17 +8416,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1613070068793634", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613070068793634&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-arm64.deb.sha512/1613070068793634", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1613070068793634&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070068793634", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "EzTn7tRSZ2SfijeAXRAoEw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dgfgMw==", "etag": "CKKCy6PC4u4CEAE=", "timeCreated": "2021-02-11T19:01:08.795Z", @@ -5377,17 +8446,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1613070069830251", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1613070069830251&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhf.deb/1613070069830251", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhf.deb?generation=1613070069830251&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070069830251", "metageneration": "1", "storageClass": "STANDARD", "size": "17270382", "md5Hash": "/PJVnblneLddRiyLCJGwMw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ZfCp0w==", "etag": "COukiqTC4u4CEAE=", "timeCreated": "2021-02-11T19:01:09.832Z", @@ -5396,17 +8476,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1613070069949773", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613070069949773&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhf.deb.sha512/1613070069949773", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1613070069949773&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070069949773", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "GS2m7QeR2V3AGGfYCSWA/Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "m9biTw==", "etag": "CM3KkaTC4u4CEAE=", "timeCreated": "2021-02-11T19:01:09.951Z", @@ -5415,17 +8506,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1613070071087629", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613070071087629&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhfp.rpm/1613070071087629", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1613070071087629&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070071087629", "metageneration": "1", "storageClass": "STANDARD", "size": "17152394", "md5Hash": "L/KdWQ+H6x2ksMD8Dj221g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "y6HXNg==", "etag": "CI2E16TC4u4CEAE=", "timeCreated": "2021-02-11T19:01:11.089Z", @@ -5434,17 +8536,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613070071168508", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613070071168508&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1613070071168508", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1613070071168508&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070071168508", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "AN0UsrMmdlj39uZlNetrVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Usuu8A==", "etag": "CPz726TC4u4CEAE=", "timeCreated": "2021-02-11T19:01:11.169Z", @@ -5453,17 +8566,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i386.deb/1613070072147572", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1613070072147572&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i386.deb/1613070072147572", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i386.deb?generation=1613070072147572&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070072147572", "metageneration": "1", "storageClass": "STANDARD", "size": "18287222", "md5Hash": "T5Gtkt6eUE4Gj4eZjrqfZg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+42LJg==", "etag": "CPTcl6XC4u4CEAE=", "timeCreated": "2021-02-11T19:01:12.149Z", @@ -5472,17 +8596,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1613070072199564", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070072199564&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i386.deb.sha512/1613070072199564", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1613070072199564&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070072199564", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "b7fvaFxHFEFww8vYalEFIg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "aAGj0Q==", "etag": "CIzzmqXC4u4CEAE=", "timeCreated": "2021-02-11T19:01:12.200Z", @@ -5491,17 +8626,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1613070073194333", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1613070073194333&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i686.rpm/1613070073194333", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i686.rpm?generation=1613070073194333&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070073194333", "metageneration": "1", "storageClass": "STANDARD", "size": "18133721", "md5Hash": "nQ6FL7IaXOmHcKNymJ6bgw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lCGR/w==", "etag": "CN3O16XC4u4CEAE=", "timeCreated": "2021-02-11T19:01:13.196Z", @@ -5510,17 +8656,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070073288267", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070073288267&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i686.rpm.sha512/1613070073288267", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1613070073288267&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070073288267", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "F0m1abtSEOBQG+LF9UEgnw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9dKcjw==", "etag": "CMus3aXC4u4CEAE=", "timeCreated": "2021-02-11T19:01:13.289Z", @@ -5529,10 +8686,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070080586660", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070080586660&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070080586660", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070080586660&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070080586660", "metageneration": "1", @@ -5540,7 +8704,11 @@ "storageClass": "STANDARD", "size": "140705126", "md5Hash": "fU5pCUJZvyKaKFmtOE51/Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OKJowA==", "etag": "CKTnmqnC4u4CEAE=", "timeCreated": "2021-02-11T19:01:20.588Z", @@ -5549,17 +8717,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070080638324", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070080638324&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070080638324", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070080638324&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070080638324", "metageneration": "1", "storageClass": "STANDARD", "size": "186", "md5Hash": "oi4zYFftrG5QLfIxZjl3Hw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "GiqnWw==", "etag": "CPT6nanC4u4CEAE=", "timeCreated": "2021-02-11T19:01:20.640Z", @@ -5568,10 +8747,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070081563156", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070081563156&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1613070081563156", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070081563156&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070081563156", "metageneration": "1", @@ -5579,7 +8765,11 @@ "storageClass": "STANDARD", "size": "17134915", "md5Hash": "/T8LWgw9JS2oHG6h5/zTdA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8z2VRA==", "etag": "CJS01qnC4u4CEAE=", "timeCreated": "2021-02-11T19:01:21.564Z", @@ -5588,17 +8778,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070081612367", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070081612367&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070081612367", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070081612367&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070081612367", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "ypbNxzS/v6ZV82F2qzICjQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Ha+p+A==", "etag": "CM+02anC4u4CEAE=", "timeCreated": "2021-02-11T19:01:21.613Z", @@ -5607,10 +8808,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070082507547", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070082507547&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1613070082507547", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070082507547&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070082507547", "metageneration": "1", @@ -5618,7 +8826,11 @@ "storageClass": "STANDARD", "size": "17463078", "md5Hash": "qYdh7OejOnQWRu/37zhNIw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2rehuA==", "etag": "CJuGkKrC4u4CEAE=", "timeCreated": "2021-02-11T19:01:22.508Z", @@ -5627,17 +8839,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070082607930", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070082607930&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070082607930", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070082607930&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070082607930", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "4xQ2vU1h0zQKijTYabrc3g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "idLVuA==", "etag": "CLqWlqrC4u4CEAE=", "timeCreated": "2021-02-11T19:01:22.609Z", @@ -5646,10 +8869,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070083618197", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070083618197&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1613070083618197", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1613070083618197&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070083618197", "metageneration": "1", @@ -5657,7 +8887,11 @@ "storageClass": "STANDARD", "size": "18342248", "md5Hash": "CT2HOD7Zixj0vHJVSynSRQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XrEgOw==", "etag": "CJXr06rC4u4CEAE=", "timeCreated": "2021-02-11T19:01:23.619Z", @@ -5666,17 +8900,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070083706046", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070083706046&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070083706046", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070083706046&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070083706046", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "rW9JQE5pUcfWJbYpRAGYYQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "LVvwvg==", "etag": "CL6Z2arC4u4CEAE=", "timeCreated": "2021-02-11T19:01:23.711Z", @@ -5685,10 +8930,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070084800199", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070084800199&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1613070084800199", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070084800199&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070084800199", "metageneration": "1", @@ -5696,7 +8948,11 @@ "storageClass": "STANDARD", "size": "19058611", "md5Hash": "4RQM5noiPdIVhPKkV8/Vmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Mh+T3w==", "etag": "CMf9m6vC4u4CEAE=", "timeCreated": "2021-02-11T19:01:24.802Z", @@ -5705,17 +8961,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070084845208", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070084845208&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070084845208", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070084845208&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070084845208", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "g27sWIn76ZD0VeJo+4Ir9g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fUMQpg==", "etag": "CJjdnqvC4u4CEAE=", "timeCreated": "2021-02-11T19:01:24.846Z", @@ -5724,17 +8991,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1613070086111343", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070086111343&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-x86_64.rpm/1613070086111343", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1613070086111343&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070086111343", "metageneration": "1", "storageClass": "STANDARD", "size": "19006401", "md5Hash": "cMii7imfqrIiL92N7VNs6A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "X6tZdw==", "etag": "CO+A7KvC4u4CEAE=", "timeCreated": "2021-02-11T19:01:26.113Z", @@ -5743,17 +9021,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070086175455", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070086175455&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1613070086175455", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070086175455&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070086175455", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "qINfJXq3pGz7hC+UmUSLjQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''journalbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zrHWdA==", "etag": "CN/176vC4u4CEAE=", "timeCreated": "2021-02-11T19:01:26.178Z", @@ -5762,10 +9051,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070089561778", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070089561778&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070089561778", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070089561778&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070089561778", "metageneration": "1", @@ -5773,7 +9069,11 @@ "storageClass": "STANDARD", "size": "68051484", "md5Hash": "yqyqV/4CGuv4yIaGBUYxkg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "udqBUQ==", "etag": "CLLNvq3C4u4CEAE=", "timeCreated": "2021-02-11T19:01:29.563Z", @@ -5782,17 +9082,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070089604227", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070089604227&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070089604227", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fjournalbeat%2Fjournalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070089604227&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/journalbeat/journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070089604227", "metageneration": "1", "storageClass": "STANDARD", "size": "187", "md5Hash": "0sSx+XGm/NmeAe4jPcGtKg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''journalbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''journalbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "KfiJ+g==", "etag": "CIOZwa3C4u4CEAE=", "timeCreated": "2021-02-11T19:01:29.605Z", @@ -5801,17 +9112,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-aarch64.rpm/1613070241841210", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613070241841210&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-aarch64.rpm/1613070241841210", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-aarch64.rpm?generation=1613070241841210&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070241841210", "metageneration": "1", "storageClass": "STANDARD", "size": "33488898", "md5Hash": "9F4CsaWfiTOy9fawkNArSQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''metricbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6x6+5Q==", "etag": "CLqAjfbC4u4CEAE=", "timeCreated": "2021-02-11T19:04:01.843Z", @@ -5820,17 +9142,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613070241936452", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613070241936452&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-aarch64.rpm.sha512/1613070241936452", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1613070241936452&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070241936452", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "JBOfK7g/AICLlEexV+HzfA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iaPi9g==", "etag": "CMTokvbC4u4CEAE=", "timeCreated": "2021-02-11T19:04:01.938Z", @@ -5839,17 +9172,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-amd64.deb/1613070244084132", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1613070244084132&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-amd64.deb/1613070244084132", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-amd64.deb?generation=1613070244084132&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070244084132", "metageneration": "1", "storageClass": "STANDARD", "size": "39179502", "md5Hash": "cxfGhEauyMgibcX75EF9JQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''metricbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "cASRGw==", "etag": "CKTzlffC4u4CEAE=", "timeCreated": "2021-02-11T19:04:04.086Z", @@ -5858,17 +9202,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1613070244149127", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613070244149127&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-amd64.deb.sha512/1613070244149127", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-amd64.deb.sha512?generation=1613070244149127&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070244149127", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "wo6jD1ERykypQOYiDp+4aw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5y/Itw==", "etag": "CIfvmffC4u4CEAE=", "timeCreated": "2021-02-11T19:04:04.150Z", @@ -5877,17 +9232,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-arm64.deb/1613070246033630", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1613070246033630&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-arm64.deb/1613070246033630", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-arm64.deb?generation=1613070246033630&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070246033630", "metageneration": "1", "storageClass": "STANDARD", "size": "33817290", "md5Hash": "c44p3GkuTP0sCfZjCoWmsw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''metricbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "b3CGKA==", "etag": "CN7xjPjC4u4CEAE=", "timeCreated": "2021-02-11T19:04:06.035Z", @@ -5896,17 +9262,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1613070246107965", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613070246107965&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-arm64.deb.sha512/1613070246107965", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-arm64.deb.sha512?generation=1613070246107965&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070246107965", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "jJY5nls5oE5ddul8PiVijg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fdk8tg==", "etag": "CL22kfjC4u4CEAE=", "timeCreated": "2021-02-11T19:04:06.109Z", @@ -5915,17 +9292,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhf.deb/1613070247904396", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1613070247904396&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhf.deb/1613070247904396", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhf.deb?generation=1613070247904396&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070247904396", "metageneration": "1", "storageClass": "STANDARD", "size": "33516674", "md5Hash": "P7tmAr2LeFg3qEZSWaL7kw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''metricbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FDDTxA==", "etag": "CIyJ//jC4u4CEAE=", "timeCreated": "2021-02-11T19:04:07.906Z", @@ -5934,17 +9322,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1613070247962872", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613070247962872&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhf.deb.sha512/1613070247962872", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhf.deb.sha512?generation=1613070247962872&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070247962872", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "wHBzyT0/MqTiPI4/fgWzig==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fnuzLw==", "etag": "CPjRgvnC4u4CEAE=", "timeCreated": "2021-02-11T19:04:07.964Z", @@ -5953,17 +9352,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhfp.rpm/1613070249798789", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613070249798789&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhfp.rpm/1613070249798789", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhfp.rpm?generation=1613070249798789&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070249798789", "metageneration": "1", "storageClass": "STANDARD", "size": "33264911", "md5Hash": "VnZW3YvhSQw4rAN+lCkbIA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''metricbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EIws0g==", "etag": "CIXZ8vnC4u4CEAE=", "timeCreated": "2021-02-11T19:04:09.800Z", @@ -5972,17 +9382,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613070249868117", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613070249868117&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhfp.rpm.sha512/1613070249868117", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1613070249868117&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070249868117", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "cfa2F58joggBelK4kJ8vVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "m6p1zw==", "etag": "CNX29vnC4u4CEAE=", "timeCreated": "2021-02-11T19:04:09.869Z", @@ -5991,10 +9412,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613070251994617", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613070251994617&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1613070251994617", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613070251994617&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070251994617", "metageneration": "1", @@ -6002,7 +9430,11 @@ "storageClass": "STANDARD", "size": "37746011", "md5Hash": "ttyGICoBKyYqlSEMwx+XjQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Lc7AOw==", "etag": "CPnb+PrC4u4CEAE=", "timeCreated": "2021-02-11T19:04:11.996Z", @@ -6011,17 +9443,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613070252059514", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613070252059514&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613070252059514", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613070252059514&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070252059514", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "j/WXdW9Y/+PiDX4O7aipGg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9QNvpQ==", "etag": "CPrW/PrC4u4CEAE=", "timeCreated": "2021-02-11T19:04:12.060Z", @@ -6030,17 +9473,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i386.deb/1613070254002413", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i386.deb?generation=1613070254002413&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i386.deb/1613070254002413", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i386.deb?generation=1613070254002413&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070254002413", "metageneration": "1", "storageClass": "STANDARD", "size": "36889618", "md5Hash": "SMn/CI+nv/xDdeHILfVa6w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''metricbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xGULTw==", "etag": "CO2h8/vC4u4CEAE=", "timeCreated": "2021-02-11T19:04:14.003Z", @@ -6049,17 +9503,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1613070254046555", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070254046555&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i386.deb.sha512/1613070254046555", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i386.deb.sha512?generation=1613070254046555&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070254046555", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "idSInx8AkN5cFmIfWcsQQw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RPoqOg==", "etag": "CNv69fvC4u4CEAE=", "timeCreated": "2021-02-11T19:04:14.048Z", @@ -6068,17 +9533,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i686.rpm/1613070255921630", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1613070255921630&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i686.rpm/1613070255921630", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i686.rpm?generation=1613070255921630&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070255921630", "metageneration": "1", "storageClass": "STANDARD", "size": "36512820", "md5Hash": "81ShGELT43l6GUEB+OJDWg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''metricbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "qbOVTQ==", "etag": "CN6z6PzC4u4CEAE=", "timeCreated": "2021-02-11T19:04:15.922Z", @@ -6087,17 +9563,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070255970119", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070255970119&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i686.rpm.sha512/1613070255970119", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-i686.rpm.sha512?generation=1613070255970119&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070255970119", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "1cB3XcYglblon7JnCXUDnw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FV5q0A==", "etag": "CMeu6/zC4u4CEAE=", "timeCreated": "2021-02-11T19:04:15.971Z", @@ -6106,10 +9593,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070264208241", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070264208241&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070264208241", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070264208241&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070264208241", "metageneration": "1", @@ -6117,7 +9611,11 @@ "storageClass": "STANDARD", "size": "160721317", "md5Hash": "TWBheJ33fjt9dUdEjSUx8Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mDkSFg==", "etag": "CPGW4oDD4u4CEAE=", "timeCreated": "2021-02-11T19:04:24.210Z", @@ -6126,17 +9624,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070264258089", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070264258089&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070264258089", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070264258089&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070264258089", "metageneration": "1", "storageClass": "STANDARD", "size": "181", "md5Hash": "fKYy5pMg35QGghW6PInw5w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zdf/GA==", "etag": "CKmc5YDD4u4CEAE=", "timeCreated": "2021-02-11T19:04:24.259Z", @@ -6145,10 +9654,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070266147833", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070266147833&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-arm64.tar.gz/1613070266147833", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070266147833&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070266147833", "metageneration": "1", @@ -6156,7 +9672,11 @@ "storageClass": "STANDARD", "size": "33999406", "md5Hash": "hbqfwEZEBneAh+tXRXG2Rg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "BgJaBQ==", "etag": "CPnH2IHD4u4CEAE=", "timeCreated": "2021-02-11T19:04:26.149Z", @@ -6165,17 +9685,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070266219844", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070266219844&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070266219844", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070266219844&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070266219844", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "UMwJsGBhwz5mQ/GkVbuMPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "X7cReA==", "etag": "CMT63IHD4u4CEAE=", "timeCreated": "2021-02-11T19:04:26.221Z", @@ -6184,10 +9715,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070268097904", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070268097904&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-armv7.tar.gz/1613070268097904", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070268097904&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070268097904", "metageneration": "1", @@ -6195,7 +9733,11 @@ "storageClass": "STANDARD", "size": "34336984", "md5Hash": "Ji9Q7u4kyvBTHE+ANr5tAA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DVXNgg==", "etag": "CPDKz4LD4u4CEAE=", "timeCreated": "2021-02-11T19:04:28.099Z", @@ -6204,17 +9746,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070268141518", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070268141518&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070268141518", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070268141518&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070268141518", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "F9/sX+qKhYd5C/tGKrQuQQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dlWwsw==", "etag": "CM6f0oLD4u4CEAE=", "timeCreated": "2021-02-11T19:04:28.142Z", @@ -6223,10 +9776,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070270088871", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070270088871&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86.tar.gz/1613070270088871", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613070270088871&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070270088871", "metageneration": "1", @@ -6234,7 +9794,11 @@ "storageClass": "STANDARD", "size": "37404936", "md5Hash": "oqJt+671EP1NIiM3vtTeqw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4FBR6A==", "etag": "CKeNyYPD4u4CEAE=", "timeCreated": "2021-02-11T19:04:30.090Z", @@ -6243,17 +9807,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070270183133", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070270183133&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070270183133", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070270183133&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070270183133", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "ESoQTrpq4YuIay597q0WrQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xYLKPg==", "etag": "CN3tzoPD4u4CEAE=", "timeCreated": "2021-02-11T19:04:30.184Z", @@ -6262,10 +9837,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070272316795", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070272316795&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86_64.tar.gz/1613070272316795", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070272316795&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070272316795", "metageneration": "1", @@ -6273,7 +9855,11 @@ "storageClass": "STANDARD", "size": "39055840", "md5Hash": "zOwlNv96dJbvFhcZWAYOSg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "N/viyw==", "etag": "CPuK0YTD4u4CEAE=", "timeCreated": "2021-02-11T19:04:32.320Z", @@ -6282,17 +9868,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070272388779", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070272388779&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070272388779", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070272388779&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070272388779", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "aNNUIZkXFrJ2idYAWRyfvg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CLY3fg==", "etag": "CKu91YTD4u4CEAE=", "timeCreated": "2021-02-11T19:04:32.389Z", @@ -6301,10 +9898,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86.zip/1613070274201024", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070274201024&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86.zip/1613070274201024", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86.zip?generation=1613070274201024&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070274201024", "metageneration": "1", @@ -6312,7 +9916,11 @@ "storageClass": "STANDARD", "size": "31419106", "md5Hash": "DVj39Fc+TMkwoXJLnCDQ+w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''metricbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "63grqw==", "etag": "CMCLxIXD4u4CEAE=", "timeCreated": "2021-02-11T19:04:34.202Z", @@ -6321,17 +9929,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070274249026", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070274249026&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86.zip.sha512/1613070274249026", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070274249026&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070274249026", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "MQnV8Di3sYMQTd7Df0PPJQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mSO+5w==", "etag": "CMKCx4XD4u4CEAE=", "timeCreated": "2021-02-11T19:04:34.250Z", @@ -6340,10 +9959,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070275979913", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070275979913&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86_64.zip/1613070275979913", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86_64.zip?generation=1613070275979913&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070275979913", "metageneration": "1", @@ -6351,7 +9977,11 @@ "storageClass": "STANDARD", "size": "31839449", "md5Hash": "csrV3/sz50rRnLlTeEr0Lw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''metricbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "TpQt1w==", "etag": "CInVsIbD4u4CEAE=", "timeCreated": "2021-02-11T19:04:35.981Z", @@ -6360,17 +9990,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070276029304", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070276029304&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613070276029304", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070276029304&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070276029304", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "sJ6WBmt3CC0V+SQQMBADDQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ZEZUDA==", "etag": "CPjWs4bD4u4CEAE=", "timeCreated": "2021-02-11T19:04:36.030Z", @@ -6379,17 +10020,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-x86_64.rpm/1613070278050311", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070278050311&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-x86_64.rpm/1613070278050311", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-x86_64.rpm?generation=1613070278050311&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070278050311", "metageneration": "1", "storageClass": "STANDARD", "size": "38617948", "md5Hash": "k0LrqN8iT67sJMRppIwa0w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''metricbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vs/1jw==", "etag": "CIeEr4fD4u4CEAE=", "timeCreated": "2021-02-11T19:04:38.051Z", @@ -6398,17 +10050,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070278106472", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070278106472&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-x86_64.rpm.sha512/1613070278106472", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070278106472&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070278106472", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "921ECcGZunMyE2h6RK81MA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''metricbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''metricbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "x4sijA==", "etag": "COi6sofD4u4CEAE=", "timeCreated": "2021-02-11T19:04:38.107Z", @@ -6417,17 +10080,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1613069995418241", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069995418241&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-aarch64.rpm/1613069995418241", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1613069995418241&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069995418241", "metageneration": "1", "storageClass": "STANDARD", "size": "23492408", "md5Hash": "HczSCvxtS5moPdtpx8NT3w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yr5M9w==", "etag": "CIHFzIDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:55.420Z", @@ -6436,17 +10110,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069995466608", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069995466608&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1613069995466608", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069995466608&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069995466608", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "iMs9NTQ5Jvz/z/CwcJ5Oag==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ks2eog==", "etag": "CPC+z4DC4u4CEAE=", "timeCreated": "2021-02-11T18:59:55.468Z", @@ -6455,17 +10140,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1613069997112047", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1613069997112047&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-amd64.deb/1613069997112047", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-amd64.deb?generation=1613069997112047&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997112047", "metageneration": "1", "storageClass": "STANDARD", "size": "27363212", "md5Hash": "xEJdJ+hDW/IyW1VJBmA0mA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "S0AMFg==", "etag": "CO/1s4HC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.113Z", @@ -6474,17 +10170,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069997154430", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069997154430&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-amd64.deb.sha512/1613069997154430", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1613069997154430&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997154430", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "cEhavWwIHPG5HGMxTQDwkw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pFBkhA==", "etag": "CP7AtoHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.155Z", @@ -6493,17 +10200,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1613069998571638", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1613069998571638&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-arm64.deb/1613069998571638", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-arm64.deb?generation=1613069998571638&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998571638", "metageneration": "1", "storageClass": "STANDARD", "size": "23725734", "md5Hash": "wqhNMGLE/AMASY5rwJs40Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hMt7dQ==", "etag": "CPaAjYLC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.573Z", @@ -6512,17 +10230,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069998620818", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069998620818&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-arm64.deb.sha512/1613069998620818", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1613069998620818&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998620818", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "+M/isGEa1P+G2r72Ue7vZg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ax4qyw==", "etag": "CJKBkILC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.622Z", @@ -6531,17 +10260,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1613070000029984", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1613070000029984&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhf.deb/1613070000029984", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhf.deb?generation=1613070000029984&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070000029984", "metageneration": "1", "storageClass": "STANDARD", "size": "23689844", "md5Hash": "jvedR2r/hRQmZlczYUck+Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RoPAjA==", "etag": "CKCC5oLC4u4CEAE=", "timeCreated": "2021-02-11T19:00:00.031Z", @@ -6550,17 +10290,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1613070000081717", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613070000081717&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhf.deb.sha512/1613070000081717", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1613070000081717&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070000081717", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "LH6PYBexOByB9x6cjJsmIQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OC8epg==", "etag": "CLWW6YLC4u4CEAE=", "timeCreated": "2021-02-11T19:00:00.083Z", @@ -6569,17 +10320,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1613070001392464", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613070001392464&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhfp.rpm/1613070001392464", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1613070001392464&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070001392464", "metageneration": "1", "storageClass": "STANDARD", "size": "23503007", "md5Hash": "Fuhos7eSIQSGQle+kYDnuA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fV6ZCg==", "etag": "CNCWuYPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:01.394Z", @@ -6588,17 +10350,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613070001451780", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613070001451780&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1613070001451780", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1613070001451780&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070001451780", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "yjuzoGL4RR+fSq3m1AbWUA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CeJYOA==", "etag": "CITmvIPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:01.454Z", @@ -6607,10 +10380,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613070003001281", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613070003001281&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1613070003001281", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613070003001281&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070003001281", "metageneration": "1", @@ -6618,7 +10398,11 @@ "storageClass": "STANDARD", "size": "26476803", "md5Hash": "08A0WrDqfqsv8Xf8e0Q37Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "w2qPZw==", "etag": "CMGvm4TC4u4CEAE=", "timeCreated": "2021-02-11T19:00:03.002Z", @@ -6627,17 +10411,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613070003066471", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613070003066471&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613070003066471", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613070003066471&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070003066471", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "VaxXys+Gf1tu8VfHM37jRg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Pch/Fg==", "etag": "COesn4TC4u4CEAE=", "timeCreated": "2021-02-11T19:00:03.067Z", @@ -6646,17 +10441,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i386.deb/1613070004539284", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1613070004539284&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i386.deb/1613070004539284", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i386.deb?generation=1613070004539284&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070004539284", "metageneration": "1", "storageClass": "STANDARD", "size": "25876792", "md5Hash": "dfCJhFBg8u7dd8ZC4YDeYA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "1VuYGw==", "etag": "CJSf+YTC4u4CEAE=", "timeCreated": "2021-02-11T19:00:04.541Z", @@ -6665,17 +10471,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1613070004593698", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070004593698&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i386.deb.sha512/1613070004593698", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1613070004593698&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070004593698", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "IHLZo4HhcKbn+oaLonTYgg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "n6jv7A==", "etag": "CKLI/ITC4u4CEAE=", "timeCreated": "2021-02-11T19:00:04.595Z", @@ -6684,17 +10501,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1613070006023492", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1613070006023492&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i686.rpm/1613070006023492", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i686.rpm?generation=1613070006023492&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070006023492", "metageneration": "1", "storageClass": "STANDARD", "size": "25635374", "md5Hash": "5cG2Oqlhp4dSByI4HgDC4Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "qfu9vw==", "etag": "CMTq04XC4u4CEAE=", "timeCreated": "2021-02-11T19:00:06.025Z", @@ -6703,17 +10531,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070006078339", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070006078339&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i686.rpm.sha512/1613070006078339", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1613070006078339&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070006078339", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "O4ADYNKpqoDp8qF1NQI7Yg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DSvtlQ==", "etag": "CIOX14XC4u4CEAE=", "timeCreated": "2021-02-11T19:00:06.080Z", @@ -6722,10 +10561,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070014057102", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070014057102&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070014057102", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070014057102&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070014057102", "metageneration": "1", @@ -6733,7 +10579,11 @@ "storageClass": "STANDARD", "size": "148831611", "md5Hash": "vS2ZStwL90FzuM0e/I40Ig==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "97egfQ==", "etag": "CI6VvonC4u4CEAE=", "timeCreated": "2021-02-11T19:00:14.059Z", @@ -6742,17 +10592,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070014109958", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070014109958&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070014109958", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070014109958&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070014109958", "metageneration": "1", "storageClass": "STANDARD", "size": "185", "md5Hash": "0wKtUo/UmK6WhOc+3sXjug==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lt7PnA==", "etag": "CIaywYnC4u4CEAE=", "timeCreated": "2021-02-11T19:00:14.111Z", @@ -6761,10 +10622,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070015533558", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070015533558&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1613070015533558", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070015533558&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070015533558", "metageneration": "1", @@ -6772,7 +10640,11 @@ "storageClass": "STANDARD", "size": "23735422", "md5Hash": "5zvdX+ukBZ/tMB1SVbx03g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+amBzA==", "etag": "CPajmIrC4u4CEAE=", "timeCreated": "2021-02-11T19:00:15.535Z", @@ -6781,17 +10653,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070015594674", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070015594674&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070015594674", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070015594674&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070015594674", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "XeDjG7rOMg9BLliFfw1Gvw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "r666rw==", "etag": "CLKBnIrC4u4CEAE=", "timeCreated": "2021-02-11T19:00:15.595Z", @@ -6800,10 +10683,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070016958988", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070016958988&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1613070016958988", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070016958988&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070016958988", "metageneration": "1", @@ -6811,7 +10701,11 @@ "storageClass": "STANDARD", "size": "24087535", "md5Hash": "ikN7elmzBd/Sny9n77OYlg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "BXxwDA==", "etag": "CIyk74rC4u4CEAE=", "timeCreated": "2021-02-11T19:00:16.960Z", @@ -6820,17 +10714,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070017006938", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070017006938&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070017006938", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070017006938&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070017006938", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "+h5o17zh3Ei3wpvKfO2plA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+hdCoQ==", "etag": "CNqa8orC4u4CEAE=", "timeCreated": "2021-02-11T19:00:17.008Z", @@ -6839,10 +10744,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070018455264", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070018455264&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1613070018455264", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1613070018455264&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070018455264", "metageneration": "1", @@ -6850,7 +10762,11 @@ "storageClass": "STANDARD", "size": "26081221", "md5Hash": "QvobT6SnORehI21ENOC5/A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2LdmZQ==", "etag": "CODNyovC4u4CEAE=", "timeCreated": "2021-02-11T19:00:18.456Z", @@ -6859,17 +10775,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070018509294", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070018509294&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070018509294", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070018509294&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070018509294", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "SNSpN7vfsYHazAQPVDahPw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jLgovA==", "etag": "CO7zzYvC4u4CEAE=", "timeCreated": "2021-02-11T19:00:18.510Z", @@ -6878,10 +10805,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070020001635", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070020001635&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1613070020001635", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070020001635&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070020001635", "metageneration": "1", @@ -6889,7 +10823,11 @@ "storageClass": "STANDARD", "size": "27174557", "md5Hash": "JgTqNpg6xDeafKGCHfPf6Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6Bg92g==", "etag": "COP+qIzC4u4CEAE=", "timeCreated": "2021-02-11T19:00:20.003Z", @@ -6898,17 +10836,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070020051409", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070020051409&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070020051409", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070020051409&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070020051409", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "wHuPX1hDxScAksyUjvEXsA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "D80Tkg==", "etag": "CNGDrIzC4u4CEAE=", "timeCreated": "2021-02-11T19:00:20.052Z", @@ -6917,10 +10866,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1613070021142111", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070021142111&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86.zip/1613070021142111", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1613070021142111&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070021142111", "metageneration": "1", @@ -6928,7 +10884,11 @@ "storageClass": "STANDARD", "size": "20658382", "md5Hash": "rjh0oBufKlQxUV2X6vlbNQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "BUX1Ww==", "etag": "CN/M7ozC4u4CEAE=", "timeCreated": "2021-02-11T19:00:21.143Z", @@ -6937,17 +10897,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070021196350", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070021196350&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1613070021196350", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070021196350&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070021196350", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "SOJyW3C+b82H0ONVVypyEg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Lz/CPQ==", "etag": "CL708YzC4u4CEAE=", "timeCreated": "2021-02-11T19:00:21.198Z", @@ -6956,10 +10927,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070022400271", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070022400271&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86_64.zip/1613070022400271", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1613070022400271&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070022400271", "metageneration": "1", @@ -6967,7 +10945,11 @@ "storageClass": "STANDARD", "size": "21040331", "md5Hash": "2F/LZskGTfG7/knM8EoQ/Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "p4eJiw==", "etag": "CI+yu43C4u4CEAE=", "timeCreated": "2021-02-11T19:00:22.401Z", @@ -6976,17 +10958,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070022455186", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070022455186&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1613070022455186", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070022455186&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070022455186", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "JVvV2cNSx5TTtsvTULJISA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "k89ncQ==", "etag": "CJLfvo3C4u4CEAE=", "timeCreated": "2021-02-11T19:00:22.456Z", @@ -6995,17 +10988,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1613070024016854", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070024016854&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-x86_64.rpm/1613070024016854", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1613070024016854&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070024016854", "metageneration": "1", "storageClass": "STANDARD", "size": "26993301", "md5Hash": "CUMaJxWuh0oMU+BaVqV7bw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ODGbjw==", "etag": "CNaHno7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:24.018Z", @@ -7014,17 +11018,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070024062380", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070024062380&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1613070024062380", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070024062380&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070024062380", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "sl9vdkXupvLTiUt8t/FhTA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''metricbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ili+/A==", "etag": "CKzroI7C4u4CEAE=", "timeCreated": "2021-02-11T19:00:24.063Z", @@ -7033,10 +11048,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070282307282", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070282307282&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070282307282", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070282307282&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070282307282", "metageneration": "1", @@ -7044,7 +11066,11 @@ "storageClass": "STANDARD", "size": "82299059", "md5Hash": "z6PrLUTPhTEpa3zT3SuxHQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Sqtk/w==", "etag": "CNLtsonD4u4CEAE=", "timeCreated": "2021-02-11T19:04:42.309Z", @@ -7053,17 +11079,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070282355727", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070282355727&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070282355727", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fmetricbeat%2Fmetricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070282355727&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/metricbeat/metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070282355727", "metageneration": "1", "storageClass": "STANDARD", "size": "186", "md5Hash": "F7ilsh1JVUup+dWlNZI+IQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''metricbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''metricbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "HRA3yA==", "etag": "CI/otYnD4u4CEAE=", "timeCreated": "2021-02-11T19:04:42.357Z", @@ -7072,17 +11109,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-aarch64.rpm/1613069973134891", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069973134891&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-aarch64.rpm/1613069973134891", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-aarch64.rpm?generation=1613069973134891&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069973134891", "metageneration": "1", "storageClass": "STANDARD", "size": "23016618", "md5Hash": "Dz2D28VMy7o+CORmkispjg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''packetbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pdHtAQ==", "etag": "CKu8/PXB4u4CEAE=", "timeCreated": "2021-02-11T18:59:33.136Z", @@ -7091,17 +11139,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069973190475", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069973190475&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-aarch64.rpm.sha512/1613069973190475", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069973190475&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069973190475", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "C6gv5sq1xmmpal895JRANw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7aloqg==", "etag": "CMvu//XB4u4CEAE=", "timeCreated": "2021-02-11T18:59:33.192Z", @@ -7110,17 +11169,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-amd64.deb/1613069974626181", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1613069974626181&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-amd64.deb/1613069974626181", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-amd64.deb?generation=1613069974626181&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069974626181", "metageneration": "1", "storageClass": "STANDARD", "size": "26759484", "md5Hash": "Z8SzB40wssgAKKp5HsZ1jg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''packetbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "74YiCg==", "etag": "CIW/1/bB4u4CEAE=", "timeCreated": "2021-02-11T18:59:34.627Z", @@ -7129,17 +11199,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069974669527", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069974669527&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-amd64.deb.sha512/1613069974669527", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-amd64.deb.sha512?generation=1613069974669527&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069974669527", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "R8QLPUqbENW50EafGP6EnA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Tjb7IQ==", "etag": "CNeR2vbB4u4CEAE=", "timeCreated": "2021-02-11T18:59:34.671Z", @@ -7148,17 +11229,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-arm64.deb/1613069975941590", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1613069975941590&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-arm64.deb/1613069975941590", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-arm64.deb?generation=1613069975941590&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069975941590", "metageneration": "1", "storageClass": "STANDARD", "size": "23224244", "md5Hash": "bAB21SwfxpuvRI/GK0rnKw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''packetbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "tygmPg==", "etag": "CNbjp/fB4u4CEAE=", "timeCreated": "2021-02-11T18:59:35.943Z", @@ -7167,17 +11259,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069976048190", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069976048190&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-arm64.deb.sha512/1613069976048190", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-arm64.deb.sha512?generation=1613069976048190&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069976048190", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "9XlHxV2Ne/UEl+kYRpPJlQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "R9Bz6w==", "etag": "CL6krvfB4u4CEAE=", "timeCreated": "2021-02-11T18:59:36.049Z", @@ -7186,17 +11289,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhf.deb/1613069977253811", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1613069977253811&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhf.deb/1613069977253811", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhf.deb?generation=1613069977253811&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069977253811", "metageneration": "1", "storageClass": "STANDARD", "size": "23202556", "md5Hash": "6asBhziskmMOmlmhHjeOgg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''packetbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "1J0OjA==", "etag": "CLPv9/fB4u4CEAE=", "timeCreated": "2021-02-11T18:59:37.255Z", @@ -7205,17 +11319,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1613069977300451", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613069977300451&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhf.deb.sha512/1613069977300451", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhf.deb.sha512?generation=1613069977300451&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069977300451", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "U/uT3Azt9rRfNAipwASb+A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dMx+Aw==", "etag": "COPb+vfB4u4CEAE=", "timeCreated": "2021-02-11T18:59:37.302Z", @@ -7224,17 +11349,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhfp.rpm/1613069978804557", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613069978804557&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhfp.rpm/1613069978804557", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhfp.rpm?generation=1613069978804557&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069978804557", "metageneration": "1", "storageClass": "STANDARD", "size": "23024183", "md5Hash": "doh9WyV9yL2vDwk7tHdq3A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''packetbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FJ/zlw==", "etag": "CM3C1vjB4u4CEAE=", "timeCreated": "2021-02-11T18:59:38.806Z", @@ -7243,17 +11379,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613069978850918", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613069978850918&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhfp.rpm.sha512/1613069978850918", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1613069978850918&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069978850918", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "TynsokQZzKTnyDjTHAKKPg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fNI1Bg==", "etag": "COas2fjB4u4CEAE=", "timeCreated": "2021-02-11T18:59:38.852Z", @@ -7262,10 +11409,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613069980235894", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613069980235894&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1613069980235894", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613069980235894&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069980235894", "metageneration": "1", @@ -7273,7 +11427,11 @@ "storageClass": "STANDARD", "size": "25686981", "md5Hash": "fdXygCCXpfByWFuEJPD/kA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EFnMvg==", "etag": "CPbwrfnB4u4CEAE=", "timeCreated": "2021-02-11T18:59:40.238Z", @@ -7282,17 +11440,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613069980289985", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613069980289985&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613069980289985", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613069980289985&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069980289985", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "g4gFf2ehERiQUf3YXNI0ew==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "f3Svvg==", "etag": "CMGXsfnB4u4CEAE=", "timeCreated": "2021-02-11T18:59:40.291Z", @@ -7301,17 +11470,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i386.deb/1613069981689329", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i386.deb?generation=1613069981689329&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i386.deb/1613069981689329", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i386.deb?generation=1613069981689329&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069981689329", "metageneration": "1", "storageClass": "STANDARD", "size": "25334048", "md5Hash": "uuxD+nOHJcmuzxEznfEPAA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''packetbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "srZr+Q==", "etag": "CPHLhvrB4u4CEAE=", "timeCreated": "2021-02-11T18:59:41.690Z", @@ -7320,17 +11500,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1613069981742932", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613069981742932&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i386.deb.sha512/1613069981742932", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i386.deb.sha512?generation=1613069981742932&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069981742932", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "EeUPr5XfWRX7AI1xKEpchQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vqSfeg==", "etag": "CNTuifrB4u4CEAE=", "timeCreated": "2021-02-11T18:59:41.744Z", @@ -7339,17 +11530,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i686.rpm/1613069983014236", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1613069983014236&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i686.rpm/1613069983014236", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i686.rpm?generation=1613069983014236&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069983014236", "metageneration": "1", "storageClass": "STANDARD", "size": "25097612", "md5Hash": "HcFAgXcukGCL06nCflnyMw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''packetbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "KUaBsQ==", "etag": "CNy61/rB4u4CEAE=", "timeCreated": "2021-02-11T18:59:43.016Z", @@ -7358,17 +11560,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1613069983055948", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613069983055948&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i686.rpm.sha512/1613069983055948", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-i686.rpm.sha512?generation=1613069983055948&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069983055948", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "jZZJMEcoHbSdNG57U49YwA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WMzI4A==", "etag": "CMyA2vrB4u4CEAE=", "timeCreated": "2021-02-11T18:59:43.057Z", @@ -7377,10 +11590,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613069990444459", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613069990444459&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1613069990444459", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613069990444459&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069990444459", "metageneration": "1", @@ -7388,7 +11608,11 @@ "storageClass": "STANDARD", "size": "148249427", "md5Hash": "I77rV5NDDT8QfA79tLGLDA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "D3YlBg==", "etag": "CKv7nP7B4u4CEAE=", "timeCreated": "2021-02-11T18:59:50.446Z", @@ -7397,17 +11621,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613069990501903", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613069990501903&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613069990501903", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613069990501903&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069990501903", "metageneration": "1", "storageClass": "STANDARD", "size": "181", "md5Hash": "OO5xpIyYfRCE7w+7EWc3vA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Dx66Ag==", "etag": "CI+8oP7B4u4CEAE=", "timeCreated": "2021-02-11T18:59:50.503Z", @@ -7416,10 +11651,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613069991777538", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613069991777538&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-arm64.tar.gz/1613069991777538", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1613069991777538&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069991777538", "metageneration": "1", @@ -7427,7 +11669,11 @@ "storageClass": "STANDARD", "size": "23232009", "md5Hash": "U2n4h/4uUnbatiTWDQlJkA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CyNhjA==", "etag": "CIKq7v7B4u4CEAE=", "timeCreated": "2021-02-11T18:59:51.779Z", @@ -7436,17 +11682,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613069991855670", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613069991855670&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613069991855670", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613069991855670&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069991855670", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "QttCe0dpyE9ipE/MzHkHvg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5ktw3w==", "etag": "CLaM8/7B4u4CEAE=", "timeCreated": "2021-02-11T18:59:51.857Z", @@ -7455,10 +11712,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613069993141166", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613069993141166&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-armv7.tar.gz/1613069993141166", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1613069993141166&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069993141166", "metageneration": "1", @@ -7466,7 +11730,11 @@ "storageClass": "STANDARD", "size": "23590484", "md5Hash": "A3UjvOCAuCyekpSGXHB4Ww==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "A+T2sw==", "etag": "CK7Hwf/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:53.142Z", @@ -7475,17 +11743,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613069993177687", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613069993177687&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613069993177687", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613069993177687&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069993177687", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "3aSSBC0hXAeomzsVX6ajAQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mDHNFw==", "etag": "CNfkw//B4u4CEAE=", "timeCreated": "2021-02-11T18:59:53.179Z", @@ -7494,10 +11773,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613069994602498", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613069994602498&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86.tar.gz/1613069994602498", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1613069994602498&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069994602498", "metageneration": "1", @@ -7505,7 +11791,11 @@ "storageClass": "STANDARD", "size": "25547287", "md5Hash": "kBbfT1C8QQZqhCS34abMEg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hEVz0w==", "etag": "CILgmoDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:54.604Z", @@ -7514,17 +11804,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613069994659937", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613069994659937&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1613069994659937", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613069994659937&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069994659937", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "dnVr8W8m3kDi7mIthyFtfg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "oZ/vwA==", "etag": "COGgnoDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:54.661Z", @@ -7533,10 +11834,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613069996114461", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613069996114461&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86_64.tar.gz/1613069996114461", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613069996114461&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069996114461", "metageneration": "1", @@ -7544,7 +11852,11 @@ "storageClass": "STANDARD", "size": "26583133", "md5Hash": "rrNACZOSFTELciq0ydo8Kw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2tpyRg==", "etag": "CJ2E94DC4u4CEAE=", "timeCreated": "2021-02-11T18:59:56.115Z", @@ -7553,17 +11865,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613069996245200", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613069996245200&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613069996245200", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613069996245200&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069996245200", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "LGol5qCXktckqtZ9D1WPag==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "tWp49Q==", "etag": "CNCB/4DC4u4CEAE=", "timeCreated": "2021-02-11T18:59:56.246Z", @@ -7572,10 +11895,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86.zip/1613069997440923", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613069997440923&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86.zip/1613069997440923", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86.zip?generation=1613069997440923&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997440923", "metageneration": "1", @@ -7583,7 +11913,11 @@ "storageClass": "STANDARD", "size": "21888401", "md5Hash": "TwW1wav7mATRaB41ChXRbQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''packetbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zgLQPw==", "etag": "CJv/x4HC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.442Z", @@ -7592,17 +11926,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613069997508571", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613069997508571&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86.zip.sha512/1613069997508571", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613069997508571&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997508571", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "AAbMmyIAFv7ztN7TVZV5RA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "uzxmLQ==", "etag": "CNuPzIHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.509Z", @@ -7611,10 +11956,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613069998713284", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613069998713284&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86_64.zip/1613069998713284", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86_64.zip?generation=1613069998713284&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998713284", "metageneration": "1", @@ -7622,7 +11974,11 @@ "storageClass": "STANDARD", "size": "22123404", "md5Hash": "4pShKTrKN+nFRNExNa4abw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''packetbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2NBBfw==", "etag": "CMTTlYLC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.714Z", @@ -7631,17 +11987,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613069998812810", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613069998812810&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613069998812810", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613069998812810&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998812810", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "4y/nq8GUAtW2WnE5gvjpJA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yzSeNQ==", "etag": "CIrdm4LC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.814Z", @@ -7650,17 +12017,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-x86_64.rpm/1613070000215602", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070000215602&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-x86_64.rpm/1613070000215602", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-x86_64.rpm?generation=1613070000215602&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070000215602", "metageneration": "1", "storageClass": "STANDARD", "size": "26389012", "md5Hash": "oWznB1UUtdt1yZnkBBKjYA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''packetbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "I8w4gA==", "etag": "CLKs8YLC4u4CEAE=", "timeCreated": "2021-02-11T19:00:00.217Z", @@ -7669,17 +12047,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070000280239", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070000280239&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-x86_64.rpm.sha512/1613070000280239", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070000280239&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070000280239", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "RpKuUnJNZHpeqXy5R/yG8g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''packetbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''packetbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "SNPK6A==", "etag": "CK+l9YLC4u4CEAE=", "timeCreated": "2021-02-11T19:00:00.281Z", @@ -7688,17 +12077,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1613069993529188", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1613069993529188&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-aarch64.rpm/1613069993529188", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1613069993529188&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069993529188", "metageneration": "1", "storageClass": "STANDARD", "size": "17991095", "md5Hash": "eIdhmGlwAbfIRzMyX9eRlw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NU/fOQ==", "etag": "COSe2f/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:53.530Z", @@ -7707,17 +12107,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1613069993588956", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1613069993588956&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1613069993588956", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1613069993588956&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069993588956", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "5sndGxhEWS1CeNbUUlYlJw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "e/CpCA==", "etag": "CNzx3P/B4u4CEAE=", "timeCreated": "2021-02-11T18:59:53.590Z", @@ -7726,17 +12137,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1613069994784486", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1613069994784486&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-amd64.deb/1613069994784486", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-amd64.deb?generation=1613069994784486&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069994784486", "metageneration": "1", "storageClass": "STANDARD", "size": "20811764", "md5Hash": "remoIq54T+Bs/2p+jplSjg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xomRRw==", "etag": "CObtpYDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:54.786Z", @@ -7745,17 +12167,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1613069994854965", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1613069994854965&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-amd64.deb.sha512/1613069994854965", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1613069994854965&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069994854965", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "N7WbgQU9iKvaaeY9LGCzUQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xocLYg==", "etag": "CLWUqoDC4u4CEAE=", "timeCreated": "2021-02-11T18:59:54.856Z", @@ -7764,17 +12197,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1613069995995561", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1613069995995561&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-arm64.deb/1613069995995561", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-arm64.deb?generation=1613069995995561&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069995995561", "metageneration": "1", "storageClass": "STANDARD", "size": "18162406", "md5Hash": "I0mx4eGWpEHHqsm6YOORLA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OASLzA==", "etag": "CKnj74DC4u4CEAE=", "timeCreated": "2021-02-11T18:59:55.997Z", @@ -7783,17 +12227,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1613069996050967", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1613069996050967&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-arm64.deb.sha512/1613069996050967", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1613069996050967&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069996050967", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "UmFGis34Obf0C8P9xBJikg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yIpKpQ==", "etag": "CJeU84DC4u4CEAE=", "timeCreated": "2021-02-11T18:59:56.052Z", @@ -7802,17 +12257,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1613069997055121", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1613069997055121&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhf.deb/1613069997055121", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhf.deb?generation=1613069997055121&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997055121", "metageneration": "1", "storageClass": "STANDARD", "size": "18240052", "md5Hash": "nj88YCd0hcIKY+5oGLMbbQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "k3uVzQ==", "etag": "CJG5sIHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.056Z", @@ -7821,17 +12287,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1613069997100842", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1613069997100842&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhf.deb.sha512/1613069997100842", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1613069997100842&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069997100842", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "0D0RSSari8PA5QH6kvBqEQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nHM55w==", "etag": "CKqes4HC4u4CEAE=", "timeCreated": "2021-02-11T18:59:57.102Z", @@ -7840,17 +12317,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1613069998296261", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1613069998296261&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhfp.rpm/1613069998296261", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1613069998296261&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998296261", "metageneration": "1", "storageClass": "STANDARD", "size": "18088158", "md5Hash": "NszE8C3UKUBAs25KfKCxAQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "tDtGCg==", "etag": "CMWZ/IHC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.298Z", @@ -7859,17 +12347,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1613069998345608", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1613069998345608&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1613069998345608", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1613069998345608&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069998345608", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "o+HJMN9z0jN+0rpU5pXAAg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iGPDTQ==", "etag": "CIib/4HC4u4CEAE=", "timeCreated": "2021-02-11T18:59:58.347Z", @@ -7878,10 +12377,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1613069999441993", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1613069999441993&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1613069999441993", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1613069999441993&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069999441993", "metageneration": "1", @@ -7889,7 +12395,11 @@ "storageClass": "STANDARD", "size": "20004454", "md5Hash": "0C3Px9Y6hpoVG4xDm1DZ8Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2AgjmA==", "etag": "CMmQwoLC4u4CEAE=", "timeCreated": "2021-02-11T18:59:59.443Z", @@ -7898,17 +12408,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1613069999508716", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1613069999508716&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1613069999508716", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1613069999508716&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069999508716", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "uQD34Zb56TDiUUDOsnpTtw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5ue91Q==", "etag": "COyZxoLC4u4CEAE=", "timeCreated": "2021-02-11T18:59:59.510Z", @@ -7917,17 +12438,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i386.deb/1613070000732954", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1613070000732954&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i386.deb/1613070000732954", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i386.deb?generation=1613070000732954&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070000732954", "metageneration": "1", "storageClass": "STANDARD", "size": "19749992", "md5Hash": "EsuyGMFEB2kTyaVBZb4oPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ykUGEw==", "etag": "CJr2kIPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:00.734Z", @@ -7936,17 +12468,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1613070000790938", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1613070000790938&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i386.deb.sha512/1613070000790938", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1613070000790938&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070000790938", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "6lL6wjfKGzlKNClxEKHMHQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "1/W5fQ==", "etag": "CJq7lIPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:00.792Z", @@ -7955,17 +12498,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1613070002009709", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1613070002009709&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i686.rpm/1613070002009709", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i686.rpm?generation=1613070002009709&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070002009709", "metageneration": "1", "storageClass": "STANDARD", "size": "19563394", "md5Hash": "6y1CVqk7xKLzmpiWbIdqqw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "GXUVNw==", "etag": "CO3s3oPC4u4CEAE=", "timeCreated": "2021-02-11T19:00:02.017Z", @@ -7974,17 +12528,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1613070002089403", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1613070002089403&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i686.rpm.sha512/1613070002089403", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1613070002089403&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070002089403", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "4HJPDLW3kmzxY9tlmH55yQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "F9KQTQ==", "etag": "CLvb44PC4u4CEAE=", "timeCreated": "2021-02-11T19:00:02.090Z", @@ -7993,10 +12558,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070009403672", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070009403672&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070009403672", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070009403672&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070009403672", "metageneration": "1", @@ -8004,7 +12576,11 @@ "storageClass": "STANDARD", "size": "142271025", "md5Hash": "71SGrOoeyKehhZWmObZhTQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ikVKSw==", "etag": "CJiSoofC4u4CEAE=", "timeCreated": "2021-02-11T19:00:09.406Z", @@ -8013,17 +12589,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070009487194", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070009487194&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070009487194", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070009487194&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070009487194", "metageneration": "1", "storageClass": "STANDARD", "size": "185", "md5Hash": "hL1m/Zghgnzk60knenhaLA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xCf70A==", "etag": "CNqep4fC4u4CEAE=", "timeCreated": "2021-02-11T19:00:09.489Z", @@ -8032,10 +12619,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1613070010561304", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1613070010561304&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1613070010561304", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1613070010561304&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070010561304", "metageneration": "1", @@ -8043,7 +12637,11 @@ "storageClass": "STANDARD", "size": "18087125", "md5Hash": "yfF75NJEIqGWMeseeYGAew==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VxzyQQ==", "etag": "CJjm6IfC4u4CEAE=", "timeCreated": "2021-02-11T19:00:10.563Z", @@ -8052,17 +12650,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1613070010613355", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1613070010613355&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1613070010613355", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1613070010613355&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070010613355", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "5W2KMMrLrzzjJh2Bm9EDzA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FGRm4A==", "etag": "COv864fC4u4CEAE=", "timeCreated": "2021-02-11T19:00:10.614Z", @@ -8071,10 +12680,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1613070011680111", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1613070011680111&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1613070011680111", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1613070011680111&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070011680111", "metageneration": "1", @@ -8082,7 +12698,11 @@ "storageClass": "STANDARD", "size": "18444210", "md5Hash": "oUCQKvquYhCheZs+74oR7w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "/Ror6g==", "etag": "CO+KrYjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:11.681Z", @@ -8091,17 +12711,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1613070011734433", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1613070011734433&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1613070011734433", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1613070011734433&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070011734433", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "bS2sISBwxj/4F0JTJFLn9g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Eo7tIg==", "etag": "CKGzsIjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:11.735Z", @@ -8110,10 +12741,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1613070012905112", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1613070012905112&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1613070012905112", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1613070012905112&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070012905112", "metageneration": "1", @@ -8121,7 +12759,11 @@ "storageClass": "STANDARD", "size": "19843353", "md5Hash": "Quv/8uQO6ba6FmZOpCYpsA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bQMdAQ==", "etag": "CJjt94jC4u4CEAE=", "timeCreated": "2021-02-11T19:00:12.906Z", @@ -8130,17 +12772,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1613070012978652", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1613070012978652&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1613070012978652", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1613070012978652&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070012978652", "metageneration": "1", "storageClass": "STANDARD", "size": "176", "md5Hash": "P2Dr3kSgbMPpr3XmmeRYcQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eFSmmg==", "etag": "CNyr/IjC4u4CEAE=", "timeCreated": "2021-02-11T19:00:12.980Z", @@ -8149,10 +12802,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1613070015396531", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1613070015396531&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1613070015396531", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1613070015396531&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070015396531", "metageneration": "1", @@ -8160,7 +12820,11 @@ "storageClass": "STANDARD", "size": "20615613", "md5Hash": "KANypiHIWxQvqlGw0NkZNg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VwpaWA==", "etag": "CLP1j4rC4u4CEAE=", "timeCreated": "2021-02-11T19:00:15.398Z", @@ -8169,17 +12833,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1613070015455915", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1613070015455915&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1613070015455915", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1613070015455915&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070015455915", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "RXUsXiKF9QsKCU66zj2hYQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "KiBW4A==", "etag": "CKvFk4rC4u4CEAE=", "timeCreated": "2021-02-11T19:00:15.457Z", @@ -8188,10 +12863,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1613070016655236", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613070016655236&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86.zip/1613070016655236", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1613070016655236&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070016655236", "metageneration": "1", @@ -8199,7 +12881,11 @@ "storageClass": "STANDARD", "size": "17384748", "md5Hash": "9fZ37t+2t+VR4WC3FGyaOw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "pyzVYQ==", "etag": "CITf3IrC4u4CEAE=", "timeCreated": "2021-02-11T19:00:16.656Z", @@ -8208,17 +12894,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613070016704520", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613070016704520&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1613070016704520", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1613070016704520&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070016704520", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "RkYVB8o1IUZTXVEok3beEw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EzAxHg==", "etag": "CIjg34rC4u4CEAE=", "timeCreated": "2021-02-11T19:00:16.706Z", @@ -8227,10 +12924,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1613070017674504", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613070017674504&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86_64.zip/1613070017674504", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1613070017674504&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070017674504", "metageneration": "1", @@ -8238,7 +12942,11 @@ "storageClass": "STANDARD", "size": "17530709", "md5Hash": "0hdFqOmGUYOgKlZqhnbm6Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QrhZzg==", "etag": "CIj6movC4u4CEAE=", "timeCreated": "2021-02-11T19:00:17.676Z", @@ -8247,17 +12955,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613070017741610", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613070017741610&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1613070017741610", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613070017741610&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070017741610", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "BTIx8HgZRYCvoef/DQ7NeQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lURfjQ==", "etag": "CKqGn4vC4u4CEAE=", "timeCreated": "2021-02-11T19:00:17.743Z", @@ -8266,17 +12985,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1613070019445177", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1613070019445177&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-x86_64.rpm/1613070019445177", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1613070019445177&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070019445177", "metageneration": "1", "storageClass": "STANDARD", "size": "20526883", "md5Hash": "+BAq4EQbGIBK3c+9oGSt7Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "KQrA0g==", "etag": "CLmDh4zC4u4CEAE=", "timeCreated": "2021-02-11T19:00:19.446Z", @@ -8285,17 +13015,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1613070019505195", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1613070019505195&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1613070019505195", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1613070019505195&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070019505195", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "8A90n3lVafInYDIghDgjKQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''packetbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gCCwpg==", "etag": "CKvYiozC4u4CEAE=", "timeCreated": "2021-02-11T19:00:19.506Z", @@ -8304,10 +13045,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1613070003661803", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1613070003661803&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1613070003661803", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1613070003661803&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070003661803", "metageneration": "1", @@ -8315,7 +13063,11 @@ "storageClass": "STANDARD", "size": "69816068", "md5Hash": "DvkJ5xrZUrv49xfLyMjKBw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "0g8olw==", "etag": "COvXw4TC4u4CEAE=", "timeCreated": "2021-02-11T19:00:03.664Z", @@ -8324,17 +13076,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1613070003701946", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1613070003701946&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1613070003701946", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fpacketbeat%2Fpacketbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1613070003701946&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/packetbeat/packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613070003701946", "metageneration": "1", "storageClass": "STANDARD", "size": "186", "md5Hash": "xu7NkxyXOtVKoGgs0sgn6A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''packetbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''packetbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "zMwC0w==", "etag": "CLqRxoTC4u4CEAE=", "timeCreated": "2021-02-11T19:00:03.703Z", @@ -8343,10 +13106,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip/1613069628818389", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613069628818389&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86.zip/1613069628818389", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86.zip?generation=1613069628818389&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069628818389", "metageneration": "1", @@ -8354,7 +13124,11 @@ "storageClass": "STANDARD", "size": "21195522", "md5Hash": "1tcNhMCnbFhxYW/rmn/pKA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"winlogbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''winlogbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yQH1jA==", "etag": "CNWH5dHA4u4CEAE=", "timeCreated": "2021-02-11T18:53:48.820Z", @@ -8363,17 +13137,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613069628864393", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613069628864393&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86.zip.sha512/1613069628864393", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1613069628864393&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069628864393", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "jm2wvsXSvWtn3fTWleMABA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''winlogbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"winlogbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''winlogbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ZoObGA==", "etag": "CInv59HA4u4CEAE=", "timeCreated": "2021-02-11T18:53:48.865Z", @@ -8382,10 +13167,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1613069630184434", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613069630184434&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86_64.zip/1613069630184434", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86_64.zip?generation=1613069630184434&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069630184434", "metageneration": "1", @@ -8393,7 +13185,11 @@ "storageClass": "STANDARD", "size": "21385436", "md5Hash": "gc23Z6eXQsndeeqofCvhNA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"winlogbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''winlogbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nPtDDA==", "etag": "CPK3uNLA4u4CEAE=", "timeCreated": "2021-02-11T18:53:50.185Z", @@ -8402,17 +13198,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613069630339747", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613069630339747&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1613069630339747", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613069630339747&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069630339747", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "1wKGS5iCyr9fVpHH6sFjnw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''winlogbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"winlogbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''winlogbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xljrvQ==", "etag": "CKP1wdLA4u4CEAE=", "timeCreated": "2021-02-11T18:53:50.341Z", @@ -8421,10 +13228,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1613069572160304", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1613069572160304&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86.zip/1613069572160304", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1613069572160304&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069572160304", "metageneration": "1", @@ -8432,7 +13246,11 @@ "storageClass": "STANDARD", "size": "15461573", "md5Hash": "DT9ArCsQCRFgcUvVIHR7UA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"winlogbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''winlogbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "HnyLNA==", "etag": "CLD24rbA4u4CEAE=", "timeCreated": "2021-02-11T18:52:52.162Z", @@ -8441,17 +13259,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1613069572213054", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1613069572213054&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1613069572213054", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1613069572213054&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069572213054", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "Nr8gopXxL4mZqeNDaQVZ5A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"winlogbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''winlogbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "sqYC5Q==", "etag": "CL6S5rbA4u4CEAE=", "timeCreated": "2021-02-11T18:52:52.214Z", @@ -8460,10 +13289,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1613069573185202", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1613069573185202&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip/1613069573185202", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1613069573185202&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069573185202", "metageneration": "1", @@ -8471,7 +13307,11 @@ "storageClass": "STANDARD", "size": "15661513", "md5Hash": "9FkCp91kfNsHe4r90uwFYQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "BIv2Mw==", "etag": "CLK9obfA4u4CEAE=", "timeCreated": "2021-02-11T18:52:53.186Z", @@ -8480,17 +13320,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1613069573239039", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1613069573239039&alt=media", "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1613069573239039", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F015315065802e4c6adeb1cc5340b49ec55e7777a%2Fwinlogbeat%2Fwinlogbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1613069573239039&alt=media", + "name": "commits/015315065802e4c6adeb1cc5340b49ec55e7777a/winlogbeat/winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1613069573239039", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "0xb2cOdA5qMcjjQ6hnsfDg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''winlogbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''winlogbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hfy1og==", "etag": "CP/hpLfA4u4CEAE=", "timeCreated": "2021-02-11T18:52:53.240Z", @@ -17638,17 +22489,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm/1612982469195779", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1612982469195779&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm/1612982469195779", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm?generation=1612982469195779&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982469195779", "metageneration": "1", "storageClass": "STANDARD", "size": "22417529", "md5Hash": "ss+JccJfcvLg5dhuiN506w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "IJnOhg==", "etag": "CIPw6/j73+4CEAE=", "timeCreated": "2021-02-10T18:41:09.197Z", @@ -17657,17 +22519,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1612982469267969", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1612982469267969&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm.sha512/1612982469267969", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1612982469267969&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982469267969", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "v+ku07V3OvUBlIlnXfnUWg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Ww6QEQ==", "etag": "CIGk8Pj73+4CEAE=", "timeCreated": "2021-02-10T18:41:09.269Z", @@ -17676,17 +22549,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb/1612982470816417", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1612982470816417&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-amd64.deb/1612982470816417", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb?generation=1612982470816417&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982470816417", "metageneration": "1", "storageClass": "STANDARD", "size": "27088448", "md5Hash": "clq53BQz7G2f81Ngvh0w+Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "iS2vGg==", "etag": "CKHlzvn73+4CEAE=", "timeCreated": "2021-02-10T18:41:10.818Z", @@ -17695,17 +22579,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1612982470866446", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1612982470866446&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-amd64.deb.sha512/1612982470866446", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb.sha512?generation=1612982470866446&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982470866446", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "DfYBgYUHPvZZT+uFdbwEyg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4kizZg==", "etag": "CI7s0fn73+4CEAE=", "timeCreated": "2021-02-10T18:41:10.867Z", @@ -17714,17 +22609,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb/1612982472129232", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1612982472129232&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-arm64.deb/1612982472129232", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb?generation=1612982472129232&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982472129232", "metageneration": "1", "storageClass": "STANDARD", "size": "22629418", "md5Hash": "mMWtGZQif2MFLF9ltz2kEg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yk8pqA==", "etag": "CND1nvr73+4CEAE=", "timeCreated": "2021-02-10T18:41:12.131Z", @@ -17733,17 +22639,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1612982472199409", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1612982472199409&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-arm64.deb.sha512/1612982472199409", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb.sha512?generation=1612982472199409&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982472199409", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "nd6T4eYyNJd0deXl4uI5fA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NaOlWg==", "etag": "CPGZo/r73+4CEAE=", "timeCreated": "2021-02-10T18:41:12.201Z", @@ -17752,17 +22669,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb/1612982473517118", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1612982473517118&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhf.deb/1612982473517118", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb?generation=1612982473517118&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982473517118", "metageneration": "1", "storageClass": "STANDARD", "size": "22616916", "md5Hash": "BANDAKtJxJg1d+H+xccIMg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "H2r52w==", "etag": "CL7Q8/r73+4CEAE=", "timeCreated": "2021-02-10T18:41:13.519Z", @@ -17771,17 +22699,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1612982473573598", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1612982473573598&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhf.deb.sha512/1612982473573598", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb.sha512?generation=1612982473573598&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982473573598", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "9W66zoxvsYulmgYlWpiljQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "GUz0Qg==", "etag": "CN6J9/r73+4CEAE=", "timeCreated": "2021-02-10T18:41:13.575Z", @@ -17790,17 +22729,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm/1612982474862627", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1612982474862627&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm/1612982474862627", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm?generation=1612982474862627&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982474862627", "metageneration": "1", "storageClass": "STANDARD", "size": "22457412", "md5Hash": "8NDAiA3AvY60oc8YLH+maA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "vFTRIQ==", "etag": "CKPgxfv73+4CEAE=", "timeCreated": "2021-02-10T18:41:14.864Z", @@ -17809,17 +22759,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1612982474910229", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1612982474910229&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm.sha512/1612982474910229", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1612982474910229&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982474910229", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "KTv/655bCce8ai76ovcrbA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hwgBHQ==", "etag": "CJXUyPv73+4CEAE=", "timeCreated": "2021-02-10T18:41:14.911Z", @@ -17828,10 +22789,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1612982476467037", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1612982476467037&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1612982476467037", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1612982476467037&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982476467037", "metageneration": "1", @@ -17839,7 +22807,11 @@ "storageClass": "STANDARD", "size": "24771886", "md5Hash": "vltw3uEBxwSKV2BLoXr/Uw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "eqWqNg==", "etag": "CN3Wp/z73+4CEAE=", "timeCreated": "2021-02-10T18:41:16.468Z", @@ -17848,17 +22820,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1612982476524977", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1612982476524977&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1612982476524977", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1612982476524977&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982476524977", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "e9v3dhRM4bujR9PK73tDBg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "IlNVag==", "etag": "CLGbq/z73+4CEAE=", "timeCreated": "2021-02-10T18:41:16.526Z", @@ -17867,17 +22850,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb/1612982477941162", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb?generation=1612982477941162&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i386.deb/1612982477941162", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb?generation=1612982477941162&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982477941162", "metageneration": "1", "storageClass": "STANDARD", "size": "25700194", "md5Hash": "KliCdRw8tRtuBeX9bHGzpA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7uzuYg==", "etag": "CKrTgf373+4CEAE=", "timeCreated": "2021-02-10T18:41:17.943Z", @@ -17886,17 +22880,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1612982477992800", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1612982477992800&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i386.deb.sha512/1612982477992800", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb.sha512?generation=1612982477992800&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982477992800", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "aALXFasCn8OCtb9Wr99GcA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nVkwug==", "etag": "CODmhP373+4CEAE=", "timeCreated": "2021-02-10T18:41:17.994Z", @@ -17905,17 +22910,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm/1612982479410122", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1612982479410122&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i686.rpm/1612982479410122", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm?generation=1612982479410122&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982479410122", "metageneration": "1", "storageClass": "STANDARD", "size": "25462407", "md5Hash": "Fxh9Bp4YUWHnL6iWwj3tEg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "PHuCFA==", "etag": "CMqn2/373+4CEAE=", "timeCreated": "2021-02-10T18:41:19.412Z", @@ -17924,17 +22940,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1612982479475967", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1612982479475967&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i686.rpm.sha512/1612982479475967", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm.sha512?generation=1612982479475967&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982479475967", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "rYJxVZzbEpdQ0Vif3SsQvQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "kWSOnw==", "etag": "CP+p3/373+4CEAE=", "timeCreated": "2021-02-10T18:41:19.477Z", @@ -17943,10 +22970,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1612982486931276", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1612982486931276&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1612982486931276", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1612982486931276&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982486931276", "metageneration": "1", @@ -17954,7 +22988,11 @@ "storageClass": "STANDARD", "size": "148584340", "md5Hash": "nGG9fLJcVQfNMoIWcWjoOg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "b+RuXw==", "etag": "CMyupoH83+4CEAE=", "timeCreated": "2021-02-10T18:41:26.933Z", @@ -17963,17 +23001,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1612982487001506", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1612982487001506&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1612982487001506", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1612982487001506&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982487001506", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "uF3bpdHF0dghPSXXmsKWmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Sv9qDQ==", "etag": "CKLTqoH83+4CEAE=", "timeCreated": "2021-02-10T18:41:27.003Z", @@ -17982,10 +23031,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1612982488208676", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1612982488208676&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz/1612982488208676", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1612982488208676&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982488208676", "metageneration": "1", @@ -17993,7 +23049,11 @@ "storageClass": "STANDARD", "size": "22625691", "md5Hash": "PWsRfHmiiU41tTfNcyWoTg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bVK2pg==", "etag": "CKSq9IH83+4CEAE=", "timeCreated": "2021-02-10T18:41:28.210Z", @@ -18002,17 +23062,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1612982488258089", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1612982488258089&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1612982488258089", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1612982488258089&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982488258089", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "e4oap7Nhbne3jACTMMWkOA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+Bax6g==", "etag": "CKms94H83+4CEAE=", "timeCreated": "2021-02-10T18:41:28.260Z", @@ -18021,10 +23092,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1612982489525119", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1612982489525119&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz/1612982489525119", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1612982489525119&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982489525119", "metageneration": "1", @@ -18032,7 +23110,11 @@ "storageClass": "STANDARD", "size": "22999415", "md5Hash": "nYy4fiShFwNGLgPaY7S+0g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nqb0NQ==", "etag": "CP/WxIL83+4CEAE=", "timeCreated": "2021-02-10T18:41:29.526Z", @@ -18041,17 +23123,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1612982489577813", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1612982489577813&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1612982489577813", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1612982489577813&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982489577813", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "x542scwonSVnshF56y4NzQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NR+Lpw==", "etag": "CNXyx4L83+4CEAE=", "timeCreated": "2021-02-10T18:41:29.579Z", @@ -18060,10 +23153,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1612982490979832", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1612982490979832&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz/1612982490979832", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1612982490979832&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982490979832", "metageneration": "1", @@ -18071,7 +23171,11 @@ "storageClass": "STANDARD", "size": "25922217", "md5Hash": "1TwPfbJACOyw2cbsxrxTmQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gzS70Q==", "etag": "CPi7nYP83+4CEAE=", "timeCreated": "2021-02-10T18:41:30.981Z", @@ -18080,17 +23184,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1612982491053178", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1612982491053178&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1612982491053178", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1612982491053178&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982491053178", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "mAO/w9TN0Ttpq06F8VUPHQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "qPLdig==", "etag": "CPr4oYP83+4CEAE=", "timeCreated": "2021-02-10T18:41:31.055Z", @@ -18099,10 +23214,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1612982492490376", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1612982492490376&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz/1612982492490376", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1612982492490376&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982492490376", "metageneration": "1", @@ -18110,7 +23232,11 @@ "storageClass": "STANDARD", "size": "26921304", "md5Hash": "R4cyZf12Gmx7taxhGp3uMg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7u0aJQ==", "etag": "CIjV+YP83+4CEAE=", "timeCreated": "2021-02-10T18:41:32.492Z", @@ -18119,17 +23245,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1612982492543478", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1612982492543478&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1612982492543478", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1612982492543478&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982492543478", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "d/DfECIU0RPi5zZZ8/XdXg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6mQH2g==", "etag": "CPbz/IP83+4CEAE=", "timeCreated": "2021-02-10T18:41:32.545Z", @@ -18138,10 +23275,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip/1612982493691593", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1612982493691593&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip/1612982493691593", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip?generation=1612982493691593&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982493691593", "metageneration": "1", @@ -18149,7 +23293,11 @@ "storageClass": "STANDARD", "size": "21094531", "md5Hash": "zq3GK+tf8E6MJEjGSEkG8g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mYiw1A==", "etag": "CMn9woT83+4CEAE=", "timeCreated": "2021-02-10T18:41:33.693Z", @@ -18158,17 +23306,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1612982493746106", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1612982493746106&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip.sha512/1612982493746106", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1612982493746106&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982493746106", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "6w0A5goK1jTMpop4/zCfgA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8A1p1A==", "etag": "CLqnxoT83+4CEAE=", "timeCreated": "2021-02-10T18:41:33.747Z", @@ -18177,10 +23336,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1612982495191682", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1612982495191682&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip/1612982495191682", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip?generation=1612982495191682&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982495191682", "metageneration": "1", @@ -18188,7 +23354,11 @@ "storageClass": "STANDARD", "size": "21273852", "md5Hash": "X/DTV4hIhyPQPQhYfvWRmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "HmS/1g==", "etag": "CILFnoX83+4CEAE=", "timeCreated": "2021-02-10T18:41:35.193Z", @@ -18197,17 +23367,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1612982495253443", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1612982495253443&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1612982495253443", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1612982495253443&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982495253443", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "T9mf+XYAuzJJ74Gnp4OI0g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "VASoMg==", "etag": "CMOnooX83+4CEAE=", "timeCreated": "2021-02-10T18:41:35.254Z", @@ -18216,17 +23397,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm/1612982496690175", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1612982496690175&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm/1612982496690175", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm?generation=1612982496690175&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982496690175", "metageneration": "1", "storageClass": "STANDARD", "size": "26723759", "md5Hash": "VfmHs2ej8vTfB6jsTvCrPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yKtYLQ==", "etag": "CP//+YX83+4CEAE=", "timeCreated": "2021-02-10T18:41:36.691Z", @@ -18235,17 +23427,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1612982496802970", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1612982496802970&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm.sha512/1612982496802970", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1612982496802970&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982496802970", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "53bafYtUkgbVXgdODVu58A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "inY98Q==", "etag": "CJrxgIb83+4CEAE=", "timeCreated": "2021-02-10T18:41:36.804Z", @@ -18254,17 +23457,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1612982168758838", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1612982168758838&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm/1612982168758838", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1612982168758838&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982168758838", "metageneration": "1", "storageClass": "STANDARD", "size": "17165215", "md5Hash": "H94ULRMpkx7rUU/HkKvDHg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fP02WQ==", "etag": "CLbUyun63+4CEAE=", "timeCreated": "2021-02-10T18:36:08.760Z", @@ -18273,17 +23487,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1612982168823738", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1612982168823738&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1612982168823738", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1612982168823738&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982168823738", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "WmetQNZifag7EtOIs+4Ejw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wO30Gw==", "etag": "CLrPzun63+4CEAE=", "timeCreated": "2021-02-10T18:36:08.825Z", @@ -18292,17 +23517,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1612982169930636", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1612982169930636&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb/1612982169930636", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb?generation=1612982169930636&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982169930636", "metageneration": "1", "storageClass": "STANDARD", "size": "19870308", "md5Hash": "HQQjpAuRrlTGskoOK47OtQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "GqJw3Q==", "etag": "CIyXkur63+4CEAE=", "timeCreated": "2021-02-10T18:36:09.932Z", @@ -18311,17 +23547,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1612982169989565", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1612982169989565&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb.sha512/1612982169989565", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1612982169989565&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982169989565", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "YojlscTWRqw47w+7bLl4aQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "uhEsCA==", "etag": "CL3jler63+4CEAE=", "timeCreated": "2021-02-10T18:36:09.991Z", @@ -18330,17 +23577,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1612982170954762", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1612982170954762&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb/1612982170954762", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb?generation=1612982170954762&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982170954762", "metageneration": "1", "storageClass": "STANDARD", "size": "17326174", "md5Hash": "MM3m/xh3z8HylM5VK35xNw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RysTPg==", "etag": "CIrY0Or63+4CEAE=", "timeCreated": "2021-02-10T18:36:10.956Z", @@ -18349,17 +23607,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1612982171064780", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1612982171064780&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb.sha512/1612982171064780", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1612982171064780&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982171064780", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "atPtfOerA76+zhhsbpyemQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yDFjig==", "etag": "CMyz1+r63+4CEAE=", "timeCreated": "2021-02-10T18:36:11.067Z", @@ -18368,17 +23637,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1612982172031487", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1612982172031487&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb/1612982172031487", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb?generation=1612982172031487&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982172031487", "metageneration": "1", "storageClass": "STANDARD", "size": "17412712", "md5Hash": "zoqwZM/B1LRVXhHXJCv9qQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "5d40iA==", "etag": "CP+zkuv63+4CEAE=", "timeCreated": "2021-02-10T18:36:12.033Z", @@ -18387,17 +23667,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1612982172090358", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1612982172090358&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb.sha512/1612982172090358", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1612982172090358&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982172090358", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "Sg4GjwMcJAbFZ5QNlFDJkg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "LZApyA==", "etag": "CPb/lev63+4CEAE=", "timeCreated": "2021-02-10T18:36:12.091Z", @@ -18406,17 +23697,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1612982173055003", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1612982173055003&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm/1612982173055003", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1612982173055003&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982173055003", "metageneration": "1", "storageClass": "STANDARD", "size": "17274697", "md5Hash": "3R9WbpRFjKPQdzES0kYpBA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ixL0Ew==", "etag": "CJvw0Ov63+4CEAE=", "timeCreated": "2021-02-10T18:36:13.057Z", @@ -18425,17 +23727,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1612982173118131", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1612982173118131&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1612982173118131", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1612982173118131&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982173118131", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "uXFh8MnJZkoOGA6OmrnPLQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Tm4n1w==", "etag": "CLPd1Ov63+4CEAE=", "timeCreated": "2021-02-10T18:36:13.119Z", @@ -18444,10 +23757,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1612982174232357", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1612982174232357&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1612982174232357", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1612982174232357&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982174232357", "metageneration": "1", @@ -18455,7 +23775,11 @@ "storageClass": "STANDARD", "size": "19015339", "md5Hash": "TXTMhT5hH6pUdZt1YrQ/ew==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QS67rw==", "etag": "CKXemOz63+4CEAE=", "timeCreated": "2021-02-10T18:36:14.234Z", @@ -18464,17 +23788,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1612982174277057", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1612982174277057&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1612982174277057", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1612982174277057&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982174277057", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "jFuXO19YYBSAj+uCEC9Qzw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "enmSnQ==", "etag": "CMG7m+z63+4CEAE=", "timeCreated": "2021-02-10T18:36:14.278Z", @@ -18483,17 +23818,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb/1612982175274074", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1612982175274074&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb/1612982175274074", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb?generation=1612982175274074&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982175274074", "metageneration": "1", "storageClass": "STANDARD", "size": "18860596", "md5Hash": "k7oABEEBtKwpFpOsDIti1w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gMRmGw==", "etag": "CNqo2Oz63+4CEAE=", "timeCreated": "2021-02-10T18:36:15.275Z", @@ -18502,17 +23848,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1612982175319510", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1612982175319510&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb.sha512/1612982175319510", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1612982175319510&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982175319510", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "nsqOk/JnyPLW94fi33ME7w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Q5lE+w==", "etag": "CNaL2+z63+4CEAE=", "timeCreated": "2021-02-10T18:36:15.320Z", @@ -18521,17 +23878,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1612982176359382", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1612982176359382&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm/1612982176359382", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm?generation=1612982176359382&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982176359382", "metageneration": "1", "storageClass": "STANDARD", "size": "18687037", "md5Hash": "gp1+wMqknSaSrqFLkWdepw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "osqDtw==", "etag": "CNbHmu363+4CEAE=", "timeCreated": "2021-02-10T18:36:16.361Z", @@ -18540,17 +23908,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1612982176426217", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1612982176426217&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm.sha512/1612982176426217", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1612982176426217&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982176426217", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "gWqhRGV7GpfaZsmSNonyVw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "sqf1cA==", "etag": "COnRnu363+4CEAE=", "timeCreated": "2021-02-10T18:36:16.427Z", @@ -18559,10 +23938,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1612982183652029", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1612982183652029&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1612982183652029", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1612982183652029&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982183652029", "metageneration": "1", @@ -18570,7 +23956,11 @@ "storageClass": "STANDARD", "size": "141327443", "md5Hash": "Ki2+WkTk1NlnlEPa4ufSqw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "AWyUYw==", "etag": "CL3V1/D63+4CEAE=", "timeCreated": "2021-02-10T18:36:23.654Z", @@ -18579,17 +23969,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1612982183710589", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1612982183710589&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1612982183710589", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1612982183710589&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982183710589", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "nq407+8qqDdh97Qe5orrGg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DKnFPQ==", "etag": "CP2e2/D63+4CEAE=", "timeCreated": "2021-02-10T18:36:23.711Z", @@ -18598,10 +23999,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1612982184657401", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1612982184657401&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1612982184657401", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1612982184657401&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982184657401", "metageneration": "1", @@ -18609,7 +24017,11 @@ "storageClass": "STANDARD", "size": "17240993", "md5Hash": "BbU98UBwSYIonzw+skUSQQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9zSrIQ==", "etag": "CPmDlfH63+4CEAE=", "timeCreated": "2021-02-10T18:36:24.660Z", @@ -18618,17 +24030,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1612982184723653", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1612982184723653&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1612982184723653", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1612982184723653&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982184723653", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "itWMCte5ls5+h0FNw6sO0A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WnWwsw==", "etag": "CMWJmfH63+4CEAE=", "timeCreated": "2021-02-10T18:36:24.725Z", @@ -18637,10 +24060,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1612982185693107", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1612982185693107&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1612982185693107", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1612982185693107&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982185693107", "metageneration": "1", @@ -18648,7 +24078,11 @@ "storageClass": "STANDARD", "size": "17589507", "md5Hash": "EaUNzMa2hIzgw8ctQ3tNGw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ppPgJA==", "etag": "CLOf1PH63+4CEAE=", "timeCreated": "2021-02-10T18:36:25.694Z", @@ -18657,17 +24091,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1612982185755757", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1612982185755757&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1612982185755757", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1612982185755757&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982185755757", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "0jL0ElqSqcZdaG5/60j4bg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yf/i8Q==", "etag": "CO2I2PH63+4CEAE=", "timeCreated": "2021-02-10T18:36:25.757Z", @@ -18676,10 +24121,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1612982186818145", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1612982186818145&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1612982186818145", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1612982186818145&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982186818145", "metageneration": "1", @@ -18687,7 +24139,11 @@ "storageClass": "STANDARD", "size": "18940811", "md5Hash": "UnZ+8kwg57MM8Yi1EVvQZg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NAU2JA==", "etag": "COH0mPL63+4CEAE=", "timeCreated": "2021-02-10T18:36:26.820Z", @@ -18696,17 +24152,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1612982186885038", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1612982186885038&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1612982186885038", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1612982186885038&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982186885038", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "rKbAO5rZx96OguJgI/4Hew==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lpL7Yg==", "etag": "CK7/nPL63+4CEAE=", "timeCreated": "2021-02-10T18:36:26.886Z", @@ -18715,10 +24182,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1612982187944290", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1612982187944290&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1612982187944290", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1612982187944290&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982187944290", "metageneration": "1", @@ -18726,7 +24200,11 @@ "storageClass": "STANDARD", "size": "19674283", "md5Hash": "+NPfItV7opD3P1dee+tmEw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "M6oZTA==", "etag": "COLS3fL63+4CEAE=", "timeCreated": "2021-02-10T18:36:27.946Z", @@ -18735,17 +24213,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1612982188008962", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1612982188008962&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1612982188008962", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1612982188008962&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982188008962", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "xG+MvP1C/AEHfM/DIjAFmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "qW9V2Q==", "etag": "CILM4fL63+4CEAE=", "timeCreated": "2021-02-10T18:36:28.010Z", @@ -18754,10 +24243,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1612982188881959", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1612982188881959&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip/1612982188881959", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1612982188881959&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982188881959", "metageneration": "1", @@ -18765,7 +24261,11 @@ "storageClass": "STANDARD", "size": "15386512", "md5Hash": "PNu7qDJLsprVhDs08LkEew==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "lrwUxw==", "etag": "CKfwlvP63+4CEAE=", "timeCreated": "2021-02-10T18:36:28.883Z", @@ -18774,17 +24274,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1612982188937947", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1612982188937947&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1612982188937947", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1612982188937947&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982188937947", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "s77iMQBlJFOUR0r7OzEn4Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mhSP4A==", "etag": "CNulmvP63+4CEAE=", "timeCreated": "2021-02-10T18:36:28.939Z", @@ -18793,10 +24304,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1612982189788200", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1612982189788200&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip/1612982189788200", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1612982189788200&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982189788200", "metageneration": "1", @@ -18804,7 +24322,11 @@ "storageClass": "STANDARD", "size": "15585077", "md5Hash": "CyxxFq8/h56v8WhfSqSkmw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RMl2Uw==", "etag": "CKiYzvP63+4CEAE=", "timeCreated": "2021-02-10T18:36:29.789Z", @@ -18813,17 +24335,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1612982189846536", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1612982189846536&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1612982189846536", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1612982189846536&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982189846536", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "vEZx55IBpOL9xRn6dveNTQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RSuQiQ==", "etag": "CIjg0fP63+4CEAE=", "timeCreated": "2021-02-10T18:36:29.847Z", @@ -18832,17 +24365,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1612982190895093", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1612982190895093&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm/1612982190895093", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1612982190895093&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982190895093", "metageneration": "1", "storageClass": "STANDARD", "size": "19588787", "md5Hash": "555XRDUN0W3Ww2U9K6Dw0w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FQZGVQ==", "etag": "CPXfkfT63+4CEAE=", "timeCreated": "2021-02-10T18:36:30.896Z", @@ -18851,17 +24395,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1612982190954634", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1612982190954634&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1612982190954634", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1612982190954634&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982190954634", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "Q7NPUwg/aRAhuS9VrgZkMw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CLEQfw==", "etag": "CIqxlfT63+4CEAE=", "timeCreated": "2021-02-10T18:36:30.956Z", @@ -18870,10 +24425,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1612982500397102", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1612982500397102&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1612982500397102", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1612982500397102&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982500397102", "metageneration": "1", @@ -18881,7 +24443,11 @@ "storageClass": "STANDARD", "size": "70163223", "md5Hash": "P+Rixs/DtYppjW3JbenMRA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "cX14bw==", "etag": "CK6g3If83+4CEAE=", "timeCreated": "2021-02-10T18:41:40.399Z", @@ -18890,17 +24456,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1612982500460702", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1612982500460702&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1612982500460702", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1612982500460702&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612982500460702", "metageneration": "1", "storageClass": "STANDARD", "size": "185", "md5Hash": "gjCGzPbZfhM+ll4yZ9OV0Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dakoeA==", "etag": "CJ6R4If83+4CEAE=", "timeCreated": "2021-02-10T18:41:40.462Z", @@ -18909,10 +24486,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/dockerlogbeat/elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz/1612981938332724", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fdockerlogbeat%2Felastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fdockerlogbeat%2Felastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz?generation=1612981938332724&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/dockerlogbeat/elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/dockerlogbeat/elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz/1612981938332724", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fdockerlogbeat%2Felastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Fdockerlogbeat%2Felastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz?generation=1612981938332724&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/dockerlogbeat/elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612981938332724", "metageneration": "1", @@ -18920,7 +24504,11 @@ "storageClass": "STANDARD", "size": "10869026", "md5Hash": "jYtcPtNrx7KP1dbggbPjwg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz\"; filename*=UTF-8''elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz\"; filename*=UTF-8''elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4XsP4g==", "etag": "CLTI2vv53+4CEAE=", "timeCreated": "2021-02-10T18:32:18.334Z", @@ -18929,17 +24517,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm/1612983834954445", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm?generation=1612983834954445&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm/1612983834954445", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm?generation=1612983834954445&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983834954445", "metageneration": "1", "storageClass": "STANDARD", "size": "95088772", "md5Hash": "MHLn6sGU8JyOAPEzQF35Rw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "us05xw==", "etag": "CM2Vi4SB4O4CEAE=", "timeCreated": "2021-02-10T19:03:54.956Z", @@ -18948,17 +24547,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1612983835018513", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1612983835018513&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm.sha512/1612983835018513", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm.sha512?generation=1612983835018513&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983835018513", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "LRyz0p5Rvud0dwURlxZCDA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "kE3HgA==", "etag": "CJGKj4SB4O4CEAE=", "timeCreated": "2021-02-10T19:03:55.020Z", @@ -18967,17 +24577,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb/1612983840556998", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb?generation=1612983840556998&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb/1612983840556998", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb?generation=1612983840556998&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983840556998", "metageneration": "1", "storageClass": "STANDARD", "size": "108567036", "md5Hash": "ymYKwTLwv1P6Jjym5WSHPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "kJS9Qg==", "etag": "CMaP4YaB4O4CEAE=", "timeCreated": "2021-02-10T19:04:00.559Z", @@ -18986,17 +24607,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512/1612983840627989", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1612983840627989&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb.sha512/1612983840627989", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb.sha512?generation=1612983840627989&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983840627989", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "toEkGigQCPfhP6IVZyAvbQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7W7ULQ==", "etag": "CJW65YaB4O4CEAE=", "timeCreated": "2021-02-10T19:04:00.629Z", @@ -19005,17 +24637,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb/1612983845412799", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb?generation=1612983845412799&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb/1612983845412799", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb?generation=1612983845412799&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983845412799", "metageneration": "1", "storageClass": "STANDARD", "size": "95147452", "md5Hash": "gw0s+LkAvhUGgyz3h/1fbg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "974npg==", "etag": "CL+/iYmB4O4CEAE=", "timeCreated": "2021-02-10T19:04:05.415Z", @@ -19024,17 +24667,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512/1612983845468544", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1612983845468544&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb.sha512/1612983845468544", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb.sha512?generation=1612983845468544&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983845468544", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "UQ5PfaUENhVlKLtC9kskfw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ilyRDg==", "etag": "CIDzjImB4O4CEAE=", "timeCreated": "2021-02-10T19:04:05.470Z", @@ -19043,17 +24697,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb/1612983850117304", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb?generation=1612983850117304&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb/1612983850117304", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb?generation=1612983850117304&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983850117304", "metageneration": "1", "storageClass": "STANDARD", "size": "96544062", "md5Hash": "b6n7+jrmkKWXmoHkBZ3GjA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6qC6cw==", "etag": "CLjRqIuB4O4CEAE=", "timeCreated": "2021-02-10T19:04:10.119Z", @@ -19062,17 +24727,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512/1612983850176320", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1612983850176320&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb.sha512/1612983850176320", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb.sha512?generation=1612983850176320&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983850176320", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "UEgw6gkIlp0KuOEsgKeBVg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "DSCmxQ==", "etag": "CMCerIuB4O4CEAE=", "timeCreated": "2021-02-10T19:04:10.177Z", @@ -19081,17 +24757,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm/1612983854725209", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm?generation=1612983854725209&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm/1612983854725209", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm?generation=1612983854725209&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983854725209", "metageneration": "1", "storageClass": "STANDARD", "size": "96480440", "md5Hash": "ORSBRF7Ra1Iap0QmNkAeOQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fDEdFQ==", "etag": "CNnwwY2B4O4CEAE=", "timeCreated": "2021-02-10T19:04:14.727Z", @@ -19100,17 +24787,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1612983854784704", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1612983854784704&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm.sha512/1612983854784704", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm.sha512?generation=1612983854784704&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983854784704", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "3IwsiF3kXMeADqM2IRREPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mPA0XQ==", "etag": "CMDBxY2B4O4CEAE=", "timeCreated": "2021-02-10T19:04:14.785Z", @@ -19119,10 +24817,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1612983859986704", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1612983859986704&alt=media", "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz/1612983859986704", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1612983859986704&alt=media", + "name": "commits/024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1612983859986704", "metageneration": "1", @@ -19130,7 +24835,11 @@ "storageClass": "STANDARD", "size": "105498724", "md5Hash": "zsOXFVV9Ukmzn+/36s8vdw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8Xi2tQ==", "etag": "CJCCg5CB4O4CEAE=", "timeCreated": "2021-02-10T19:04:19.989Z", diff --git a/internal/_testresources/gcp/snapshots.json b/internal/_testresources/gcp/snapshots.json index 7819431ffd..2f34e36a92 100644 --- a/internal/_testresources/gcp/snapshots.json +++ b/internal/_testresources/gcp/snapshots.json @@ -4506,17 +4506,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm/1610708496815776", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1610708496815776&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm/1610708496815776", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm?generation=1610708496815776&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708496815776", "metageneration": "1", "storageClass": "STANDARD", "size": "24390094", "md5Hash": "JTUKXii1ShTTW+TIC36Fbg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3hTkdw==", "etag": "CKCtqN7kne4CEAE=", "timeCreated": "2021-01-15T11:01:36.815Z", @@ -4525,17 +4536,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1610708496890528", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1610708496890528&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm.sha512/1610708496890528", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1610708496890528&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708496890528", "metageneration": "1", "storageClass": "STANDARD", "size": "166", "md5Hash": "egcs1TLuHUD/Z57PQctpkQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NSJAAQ==", "etag": "CKD1rN7kne4CEAE=", "timeCreated": "2021-01-15T11:01:36.895Z", @@ -4544,17 +4566,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb/1610708498462259", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb?generation=1610708498462259&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-amd64.deb/1610708498462259", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb?generation=1610708498462259&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708498462259", "metageneration": "1", "storageClass": "STANDARD", "size": "29134264", "md5Hash": "MR1NRdYK9eKB6wdBwJVXww==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WhFgvQ==", "etag": "CLPsjN/kne4CEAE=", "timeCreated": "2021-01-15T11:01:38.462Z", @@ -4563,17 +4596,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1610708498515858", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1610708498515858&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-amd64.deb.sha512/1610708498515858", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-amd64.deb.sha512?generation=1610708498515858&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708498515858", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "EChzdNlV1cZ33YNk5FHoVQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9+IOWw==", "etag": "CJKPkN/kne4CEAE=", "timeCreated": "2021-01-15T11:01:38.520Z", @@ -4582,17 +4626,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb/1610708499945234", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb?generation=1610708499945234&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-arm64.deb/1610708499945234", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb?generation=1610708499945234&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708499945234", "metageneration": "1", "storageClass": "STANDARD", "size": "24664286", "md5Hash": "fUlGOLwDd6A+dAL+YDpJyg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "h+qSfw==", "etag": "CJKu59/kne4CEAE=", "timeCreated": "2021-01-15T11:01:39.945Z", @@ -4601,17 +4656,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1610708500024189", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1610708500024189&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-arm64.deb.sha512/1610708500024189", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-arm64.deb.sha512?generation=1610708500024189&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708500024189", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "LFdVYvAuqeAybhRNAZIvWA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "yXkxnw==", "etag": "CP2W7N/kne4CEAE=", "timeCreated": "2021-01-15T11:01:40.032Z", @@ -4620,17 +4686,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb/1610708501424137", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb?generation=1610708501424137&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-armhf.deb/1610708501424137", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb?generation=1610708501424137&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708501424137", "metageneration": "1", "storageClass": "STANDARD", "size": "24658706", "md5Hash": "NSsN77uqw+SVK9ruxiNumA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2Qpy1g==", "etag": "CInQweDkne4CEAE=", "timeCreated": "2021-01-15T11:01:41.429Z", @@ -4639,17 +4716,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1610708501493448", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1610708501493448&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-armhf.deb.sha512/1610708501493448", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhf.deb.sha512?generation=1610708501493448&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708501493448", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "CwTlbThDI5yMbGMTowvonQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "s1LOJA==", "etag": "CMjtxeDkne4CEAE=", "timeCreated": "2021-01-15T11:01:41.493Z", @@ -4658,17 +4746,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm/1610708502909951", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1610708502909951&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm/1610708502909951", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm?generation=1610708502909951&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708502909951", "metageneration": "1", "storageClass": "STANDARD", "size": "24455321", "md5Hash": "CUGSS+nYzb/zHgj6teBNFg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "oqTtKg==", "etag": "CP+nnOHkne4CEAE=", "timeCreated": "2021-01-15T11:01:42.917Z", @@ -4677,17 +4776,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1610708502979777", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1610708502979777&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm.sha512/1610708502979777", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1610708502979777&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708502979777", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "6laEwAaEfiPgS0hpFv3r7g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ebDfwg==", "etag": "CMHJoOHkne4CEAE=", "timeCreated": "2021-01-15T11:01:42.986Z", @@ -4696,10 +4806,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1610708504479848", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1610708504479848&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz/1610708504479848", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1610708504479848&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708504479848", "metageneration": "1", @@ -4707,7 +4824,11 @@ "storageClass": "STANDARD", "size": "26567653", "md5Hash": "PbAP3TrhU9QCQTfqF3xQCg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QFvdfA==", "etag": "COiQ/OHkne4CEAE=", "timeCreated": "2021-01-15T11:01:44.487Z", @@ -4716,17 +4837,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1610708504544822", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1610708504544822&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1610708504544822", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1610708504544822&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708504544822", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "V0Hc4pHQO5isrhyqe/xorA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FdavAw==", "etag": "CLaMgOLkne4CEAE=", "timeCreated": "2021-01-15T11:01:44.550Z", @@ -4735,17 +4867,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb/1610708506111869", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb?generation=1610708506111869&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-i386.deb/1610708506111869", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb?generation=1610708506111869&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708506111869", "metageneration": "1", "storageClass": "STANDARD", "size": "28040432", "md5Hash": "8R4dBxLZg4CVqjeMP447/Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XRYc+A==", "etag": "CP3e3+Lkne4CEAE=", "timeCreated": "2021-01-15T11:01:46.111Z", @@ -4754,17 +4897,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512/1610708506232680", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1610708506232680&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-i386.deb.sha512/1610708506232680", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i386.deb.sha512?generation=1610708506232680&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708506232680", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "o10Dwl+IWWIn8O5/634D3g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WaDYLw==", "etag": "COiO5+Lkne4CEAE=", "timeCreated": "2021-01-15T11:01:46.232Z", @@ -4773,17 +4927,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm/1610708507726262", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm?generation=1610708507726262&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-i686.rpm/1610708507726262", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm?generation=1610708507726262&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708507726262", "metageneration": "1", "storageClass": "STANDARD", "size": "27763136", "md5Hash": "+NpejvZMaJ8EKE2fgpxv6A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "h4G6kA==", "etag": "CLajwuPkne4CEAE=", "timeCreated": "2021-01-15T11:01:47.726Z", @@ -4792,17 +4957,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1610708507802915", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1610708507802915&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-i686.rpm.sha512/1610708507802915", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-i686.rpm.sha512?generation=1610708507802915&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708507802915", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "ulLD1z5G67JuQrDYMIPDMw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OR0IzQ==", "etag": "CKP6xuPkne4CEAE=", "timeCreated": "2021-01-15T11:01:47.802Z", @@ -4811,10 +4987,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1610708515029807", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1610708515029807&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1610708515029807", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1610708515029807&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708515029807", "metageneration": "1", @@ -4822,7 +5005,11 @@ "storageClass": "STANDARD", "size": "137200635", "md5Hash": "4oNZL/TB9qRLb/FgelosnA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bHlmpg==", "etag": "CK+GgOfkne4CEAE=", "timeCreated": "2021-01-15T11:01:55.029Z", @@ -4831,17 +5018,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1610708515095595", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1610708515095595&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1610708515095595", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1610708515095595&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708515095595", "metageneration": "1", "storageClass": "STANDARD", "size": "180", "md5Hash": "IPxlNPd1PjUIxZB/2JfhsQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ig8Dlw==", "etag": "CKuIhOfkne4CEAE=", "timeCreated": "2021-01-15T11:01:55.102Z", @@ -4850,10 +5048,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1610708516502247", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1610708516502247&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz/1610708516502247", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1610708516502247&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708516502247", "metageneration": "1", @@ -4861,7 +5066,11 @@ "storageClass": "STANDARD", "size": "24619630", "md5Hash": "P/dkIye6ghjHQBovS3jIyA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7UBY0g==", "etag": "COf12efkne4CEAE=", "timeCreated": "2021-01-15T11:01:56.502Z", @@ -4870,17 +5079,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1610708516566947", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1610708516566947&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1610708516566947", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1610708516566947&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708516566947", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "ubj/00DChpbpgY1PiXJU/g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3NwNKw==", "etag": "CKPv3efkne4CEAE=", "timeCreated": "2021-01-15T11:01:56.566Z", @@ -4889,10 +5109,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1610708518001524", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1610708518001524&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz/1610708518001524", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1610708518001524&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708518001524", "metageneration": "1", @@ -4900,7 +5127,11 @@ "storageClass": "STANDARD", "size": "24999220", "md5Hash": "d2tt6uqddKB8l5EyGAIuBQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Ffek7A==", "etag": "CPS2tejkne4CEAE=", "timeCreated": "2021-01-15T11:01:58.008Z", @@ -4909,17 +5140,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1610708518079629", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1610708518079629&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1610708518079629", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1610708518079629&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708518079629", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "a/bpX3wFxwqgLYF0HYkl1Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "z7QPDw==", "etag": "CI2Zuujkne4CEAE=", "timeCreated": "2021-01-15T11:01:58.079Z", @@ -4928,10 +5170,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1610708519684908", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1610708519684908&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz/1610708519684908", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz?generation=1610708519684908&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708519684908", "metageneration": "1", @@ -4939,7 +5188,11 @@ "storageClass": "STANDARD", "size": "28231206", "md5Hash": "rH6pd96ug8Ibv0wM7xn/mA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "g4clxg==", "etag": "CKyWnOnkne4CEAE=", "timeCreated": "2021-01-15T11:01:59.691Z", @@ -4948,17 +5201,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1610708519743396", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1610708519743396&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1610708519743396", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1610708519743396&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708519743396", "metageneration": "1", "storageClass": "STANDARD", "size": "171", "md5Hash": "ITnY5P3GMzdNTR5Ll8CvDA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "leKG8Q==", "etag": "CKTfn+nkne4CEAE=", "timeCreated": "2021-01-15T11:01:59.749Z", @@ -4967,10 +5231,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1610708521418962", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1610708521418962&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz/1610708521418962", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1610708521418962&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708521418962", "metageneration": "1", @@ -4978,7 +5249,11 @@ "storageClass": "STANDARD", "size": "28943966", "md5Hash": "aReOK8/WvElTk2RQ9wSRsw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "uzgx7g==", "etag": "CNKBhurkne4CEAE=", "timeCreated": "2021-01-15T11:02:01.418Z", @@ -4987,17 +5262,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1610708521477509", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1610708521477509&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1610708521477509", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1610708521477509&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708521477509", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "41t8TwOYu1sqzrQIAkBwCQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RpxThw==", "etag": "CIXLierkne4CEAE=", "timeCreated": "2021-01-15T11:02:01.477Z", @@ -5006,10 +5292,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip/1610708522662662", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1610708522662662&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip/1610708522662662", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip?generation=1610708522662662&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708522662662", "metageneration": "1", @@ -5017,7 +5310,11 @@ "storageClass": "STANDARD", "size": "20459178", "md5Hash": "2oljUtY1W8rTwVpk3DrrhA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "RCxDAQ==", "etag": "CIb20erkne4CEAE=", "timeCreated": "2021-01-15T11:02:02.668Z", @@ -5026,17 +5323,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1610708522732356", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1610708522732356&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip.sha512/1610708522732356", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1610708522732356&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708522732356", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "Ny4Ak3bBsfUC5KS/lNm+Ig==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "MtYn/Q==", "etag": "CMSW1urkne4CEAE=", "timeCreated": "2021-01-15T11:02:02.740Z", @@ -5045,10 +5353,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1610708523946337", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1610708523946337&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip/1610708523946337", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip?generation=1610708523946337&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708523946337", "metageneration": "1", @@ -5056,7 +5371,11 @@ "storageClass": "STANDARD", "size": "21056825", "md5Hash": "VFvNiiUKaE/3oGTEXC/shg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "avjVGA==", "etag": "COGioOvkne4CEAE=", "timeCreated": "2021-01-15T11:02:03.946Z", @@ -5065,17 +5384,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1610708524002706", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1610708524002706&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512/1610708524002706", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1610708524002706&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708524002706", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "4E2vsItgy7NI1viuKDRoRg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "h44y+g==", "etag": "CJLbo+vkne4CEAE=", "timeCreated": "2021-01-15T11:02:04.002Z", @@ -5084,17 +5414,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm/1610708525545927", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1610708525545927&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm/1610708525545927", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm?generation=1610708525545927&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708525545927", "metageneration": "1", "storageClass": "STANDARD", "size": "28721882", "md5Hash": "sKMZwzaOR8y4GvQeyJaO8Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''auditbeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nj2r+w==", "etag": "CMfzgezkne4CEAE=", "timeCreated": "2021-01-15T11:02:05.552Z", @@ -5103,17 +5444,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1610708525604980", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1610708525604980&alt=media", "name": "snapshots/auditbeat/auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm.sha512/1610708525604980", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1610708525604980&alt=media", + "name": "snapshots/auditbeat/auditbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708525604980", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "WocfnmnFGVuU9IGgtvk4gg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NsTpPQ==", "etag": "CPTAhezkne4CEAE=", "timeCreated": "2021-01-15T11:02:05.610Z", @@ -6970,17 +7322,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm/1610708218116999", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm?generation=1610708218116999&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm/1610708218116999", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm?generation=1610708218116999&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708218116999", "metageneration": "1", "storageClass": "STANDARD", "size": "18679795", "md5Hash": "vlZd4cuspl8cfx9tEHgZBw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3v4ZVg==", "etag": "CIf3tdnjne4CEAE=", "timeCreated": "2021-01-15T10:56:58.116Z", @@ -6989,17 +7352,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1610708218197359", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1610708218197359&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512/1610708218197359", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512?generation=1610708218197359&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708218197359", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "j9TCdXNkK5/OovkpswNhew==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nN57zw==", "etag": "CO/qutnjne4CEAE=", "timeCreated": "2021-01-15T10:56:58.204Z", @@ -7008,17 +7382,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb/1610708219337797", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb?generation=1610708219337797&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb/1610708219337797", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb?generation=1610708219337797&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708219337797", "metageneration": "1", "storageClass": "STANDARD", "size": "21329740", "md5Hash": "9utylAW46/jTNYryDjBEtA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "kLiZIQ==", "etag": "CMW4gNrjne4CEAE=", "timeCreated": "2021-01-15T10:56:59.337Z", @@ -7027,17 +7412,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512/1610708219405704", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1610708219405704&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb.sha512/1610708219405704", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-amd64.deb.sha512?generation=1610708219405704&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708219405704", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "vb7OW2e3DnxHuX9965dOFA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "j4pdRw==", "etag": "CIjLhNrjne4CEAE=", "timeCreated": "2021-01-15T10:56:59.414Z", @@ -7046,17 +7442,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb/1610708220465990", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb?generation=1610708220465990&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb/1610708220465990", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb?generation=1610708220465990&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708220465990", "metageneration": "1", "storageClass": "STANDARD", "size": "18881722", "md5Hash": "tAr94KTHDU93OLIghvJMAQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wyPWCQ==", "etag": "CMamxdrjne4CEAE=", "timeCreated": "2021-01-15T10:57:00.478Z", @@ -7065,17 +7472,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512/1610708220549301", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1610708220549301&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb.sha512/1610708220549301", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-arm64.deb.sha512?generation=1610708220549301&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708220549301", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "TixkeSNtV8KfqucoFBtltw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xeZVSQ==", "etag": "CLWxytrjne4CEAE=", "timeCreated": "2021-01-15T10:57:00.549Z", @@ -7084,17 +7502,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb/1610708221585354", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb?generation=1610708221585354&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb/1610708221585354", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb?generation=1610708221585354&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708221585354", "metageneration": "1", "storageClass": "STANDARD", "size": "18973818", "md5Hash": "DTCwaHKCPbhPTzZq/MiF8Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "1zWUiQ==", "etag": "CMrPidvjne4CEAE=", "timeCreated": "2021-01-15T10:57:01.585Z", @@ -7103,17 +7532,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512/1610708221694354", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1610708221694354&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb.sha512/1610708221694354", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhf.deb.sha512?generation=1610708221694354&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708221694354", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "yC6QFWWv5clgK/Ii+xeC1w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "M+U8Vg==", "etag": "CJKjkNvjne4CEAE=", "timeCreated": "2021-01-15T10:57:01.694Z", @@ -7122,17 +7562,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm/1610708222720721", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm?generation=1610708222720721&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm/1610708222720721", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm?generation=1610708222720721&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708222720721", "metageneration": "1", "storageClass": "STANDARD", "size": "18816054", "md5Hash": "eWu//q2aCq9DnebavpKBdQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ncdkmA==", "etag": "CNH1ztvjne4CEAE=", "timeCreated": "2021-01-15T10:57:02.720Z", @@ -7141,17 +7592,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1610708222784501", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1610708222784501&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512/1610708222784501", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512?generation=1610708222784501&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708222784501", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "TdsmI+sDz04lxPNFXQiRgg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "l+spYA==", "etag": "CPXn0tvjne4CEAE=", "timeCreated": "2021-01-15T10:57:02.790Z", @@ -7160,10 +7622,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1610708224006229", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1610708224006229&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz/1610708224006229", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1610708224006229&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708224006229", "metageneration": "1", @@ -7171,7 +7640,11 @@ "storageClass": "STANDARD", "size": "20385112", "md5Hash": "y9yBseyLMUpam+/fb4H+vQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "D3xSjA==", "etag": "CNWwndzjne4CEAE=", "timeCreated": "2021-01-15T10:57:04.006Z", @@ -7180,17 +7653,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1610708224086775", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1610708224086775&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1610708224086775", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1610708224086775&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708224086775", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "4njRWY35Yy+yKiw0nKL3tA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "4p5OsQ==", "etag": "CPelotzjne4CEAE=", "timeCreated": "2021-01-15T10:57:04.092Z", @@ -7199,17 +7683,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb/1610708225190150", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb?generation=1610708225190150&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb/1610708225190150", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb?generation=1610708225190150&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708225190150", "metageneration": "1", "storageClass": "STANDARD", "size": "20602968", "md5Hash": "NbeWEx0doPYm535soEklAQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i386.deb\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "B64Q1A==", "etag": "CIbS5dzjne4CEAE=", "timeCreated": "2021-01-15T10:57:05.189Z", @@ -7218,17 +7713,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512/1610708225267250", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1610708225267250&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb.sha512/1610708225267250", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i386.deb.sha512?generation=1610708225267250&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708225267250", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "N1MuS69nb7HScnvVjlDwtg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NsrUhg==", "etag": "CLKs6tzjne4CEAE=", "timeCreated": "2021-01-15T10:57:05.275Z", @@ -7237,17 +7743,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm/1610708226399406", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm?generation=1610708226399406&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm/1610708226399406", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm?generation=1610708226399406&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708226399406", "metageneration": "1", "storageClass": "STANDARD", "size": "20404821", "md5Hash": "rgo5jjrIoicf4R0btqExNw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "i7axUg==", "etag": "CK65r93jne4CEAE=", "timeCreated": "2021-01-15T10:57:06.399Z", @@ -7256,17 +7773,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512/1610708226492918", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1610708226492918&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm.sha512/1610708226492918", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-i686.rpm.sha512?generation=1610708226492918&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708226492918", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "tsDraN06FRnS1l5q922MMg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "EZQGkA==", "etag": "CPaTtd3jne4CEAE=", "timeCreated": "2021-01-15T10:57:06.502Z", @@ -7275,10 +7803,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1610708232716421", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1610708232716421&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz/1610708232716421", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1610708232716421&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708232716421", "metageneration": "1", @@ -7286,7 +7821,11 @@ "storageClass": "STANDARD", "size": "129369827", "md5Hash": "aW1kaC0LbPzmp1leey5iPA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ZliV5g==", "etag": "CIWBseDjne4CEAE=", "timeCreated": "2021-01-15T10:57:12.723Z", @@ -7295,17 +7834,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1610708232791742", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1610708232791742&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1610708232791742", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1610708232791742&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708232791742", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "82mfp8J4j+fmsINBfgPRRQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "3/mwRQ==", "etag": "CL7NteDjne4CEAE=", "timeCreated": "2021-01-15T10:57:12.799Z", @@ -7314,10 +7864,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1610708233774576", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1610708233774576&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz/1610708233774576", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz?generation=1610708233774576&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708233774576", "metageneration": "1", @@ -7325,7 +7882,11 @@ "storageClass": "STANDARD", "size": "18764221", "md5Hash": "zRUZrMGOUZAv/OBFfizmoA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "H0Ygbw==", "etag": "CPDL8eDjne4CEAE=", "timeCreated": "2021-01-15T10:57:13.774Z", @@ -7334,17 +7895,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1610708233847340", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1610708233847340&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512/1610708233847340", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1610708233847340&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708233847340", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "bhNoxxzg4GuiA1QWteAbWQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "mduyPA==", "etag": "CKyE9uDjne4CEAE=", "timeCreated": "2021-01-15T10:57:13.852Z", @@ -7353,10 +7925,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1610708234872906", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1610708234872906&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz/1610708234872906", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz?generation=1610708234872906&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708234872906", "metageneration": "1", @@ -7364,7 +7943,11 @@ "storageClass": "STANDARD", "size": "19131059", "md5Hash": "K6ySAa9MG9j5vPVVMMInGg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "nDsrTw==", "etag": "CMrQtOHjne4CEAE=", "timeCreated": "2021-01-15T10:57:14.879Z", @@ -7373,17 +7956,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1610708234947423", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1610708234947423&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512/1610708234947423", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1610708234947423&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708234947423", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "I0ZZVb5veLBROBqUeqUJwA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+Vwz5Q==", "etag": "CN+WueHjne4CEAE=", "timeCreated": "2021-01-15T10:57:14.954Z", @@ -7392,10 +7986,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz/1610708236001396", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1610708236001396&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz/1610708236001396", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz?generation=1610708236001396&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708236001396", "metageneration": "1", @@ -7403,7 +8004,11 @@ "storageClass": "STANDARD", "size": "20662740", "md5Hash": "DNkYfiiOOb1CcA8pxrgG0w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "8oHQIg==", "etag": "CPTA+eHjne4CEAE=", "timeCreated": "2021-01-15T10:57:16.001Z", @@ -7412,17 +8017,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1610708236065045", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1610708236065045&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512/1610708236065045", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1610708236065045&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708236065045", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "VfN/1tFiKujHJxbh2unrUQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WjtMdw==", "etag": "CJWy/eHjne4CEAE=", "timeCreated": "2021-01-15T10:57:16.064Z", @@ -7431,10 +8047,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1610708237181925", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1610708237181925&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz/1610708237181925", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz?generation=1610708237181925&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708237181925", "metageneration": "1", @@ -7442,7 +8065,11 @@ "storageClass": "STANDARD", "size": "21114954", "md5Hash": "nRgZnPxr7hELBkjZzkJgbA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "qo5P+w==", "etag": "COXHweLjne4CEAE=", "timeCreated": "2021-01-15T10:57:17.181Z", @@ -7451,17 +8078,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1610708237266551", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1610708237266551&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1610708237266551", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1610708237266551&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708237266551", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "DNf+i/vTY+JDD/smkF+qaQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ejUknA==", "etag": "CPfcxuLjne4CEAE=", "timeCreated": "2021-01-15T10:57:17.266Z", @@ -7470,10 +8108,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip/1610708238168460", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip?generation=1610708238168460&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip/1610708238168460", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip?generation=1610708238168460&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708238168460", "metageneration": "1", @@ -7481,7 +8126,11 @@ "storageClass": "STANDARD", "size": "16211356", "md5Hash": "MTncfzn9B2xG8yoDOeEdSw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dqOBOA==", "etag": "CIzj/eLjne4CEAE=", "timeCreated": "2021-01-15T10:57:18.175Z", @@ -7490,17 +8139,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1610708238245985", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1610708238245985&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512/1610708238245985", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512?generation=1610708238245985&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708238245985", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "m3CBYTSnH/Njsku9r5hH/g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OpUkFg==", "etag": "COHAguPjne4CEAE=", "timeCreated": "2021-01-15T10:57:18.245Z", @@ -7509,10 +8169,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip/1610708239112990", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1610708239112990&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip/1610708239112990", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip?generation=1610708239112990&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708239112990", "metageneration": "1", @@ -7520,7 +8187,11 @@ "storageClass": "STANDARD", "size": "16611902", "md5Hash": "kMHKVFND4HFyNackKv/fOg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ENNZEQ==", "etag": "CJ62t+Pjne4CEAE=", "timeCreated": "2021-01-15T10:57:19.112Z", @@ -7529,17 +8200,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1610708239171113", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1610708239171113&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512/1610708239171113", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1610708239171113&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708239171113", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "UtQZvpf1Z3cZo0fcNM7AJg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "kY4p2Q==", "etag": "CKn8uuPjne4CEAE=", "timeCreated": "2021-01-15T10:57:19.176Z", @@ -7548,17 +8230,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm/1610708240401477", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm?generation=1610708240401477&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm/1610708240401477", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm?generation=1610708240401477&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708240401477", "metageneration": "1", "storageClass": "STANDARD", "size": "21020599", "md5Hash": "4T5Y3eUqhjb27bFZDQKwow==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fkifew==", "etag": "CMWIhuTjne4CEAE=", "timeCreated": "2021-01-15T10:57:20.401Z", @@ -7567,17 +8260,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1610708240484942", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1610708240484942&alt=media", "name": "snapshots/auditbeat/auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512/1610708240484942", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512?generation=1610708240484942&alt=media", + "name": "snapshots/auditbeat/auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708240484942", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "Am379V3KFbrON0PtrhYt/g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''auditbeat-oss-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9C7xXA==", "etag": "CM6Ui+Tjne4CEAE=", "timeCreated": "2021-01-15T10:57:20.491Z", @@ -7703,10 +8407,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1610708529546726", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1610708529546726&alt=media", "name": "snapshots/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1610708529546726", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1610708529546726&alt=media", + "name": "snapshots/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708529546726", "metageneration": "1", @@ -7714,7 +8425,11 @@ "storageClass": "STANDARD", "size": "72183384", "md5Hash": "YSIzmI5WzLvIWhsXBvNCAA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "sUwOLw==", "etag": "COaL9u3kne4CEAE=", "timeCreated": "2021-01-15T11:02:09.553Z", @@ -7723,17 +8438,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1610708529617202", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1610708529617202&alt=media", "name": "snapshots/auditbeat/auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1610708529617202", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fauditbeat%2Fauditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1610708529617202&alt=media", + "name": "snapshots/auditbeat/auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708529617202", "metageneration": "1", "storageClass": "STANDARD", "size": "185", "md5Hash": "XmXgvtzZqHyD/JBmAb3xtg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''auditbeat-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "wwQdpA==", "etag": "CLKy+u3kne4CEAE=", "timeCreated": "2021-01-15T11:02:09.616Z", @@ -7802,10 +8528,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/dockerlogbeat/elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz/1610707978570369", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fdockerlogbeat%2Felastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fdockerlogbeat%2Felastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz?generation=1610707978570369&alt=media", "name": "snapshots/dockerlogbeat/elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/dockerlogbeat/elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz/1610707978570369", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fdockerlogbeat%2Felastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Fdockerlogbeat%2Felastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz?generation=1610707978570369&alt=media", + "name": "snapshots/dockerlogbeat/elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610707978570369", "metageneration": "1", @@ -7813,7 +8546,11 @@ "storageClass": "STANDARD", "size": "11628057", "md5Hash": "G37jKgzTSpUYEOCxCTXJLQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz\"; filename*=UTF-8''elastic-logging-plugin-7.13.0-SNAPSHOT-docker-plugin.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz\"; filename*=UTF-8''elastic-logging-plugin-BEATS_VERSION-docker-plugin.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "czM4cQ==", "etag": "CIGVmefine4CEAE=", "timeCreated": "2021-01-15T10:52:58.579Z", @@ -10555,17 +11292,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm/1610709373427602", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm?generation=1610709373427602&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm/1610709373427602", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm?generation=1610709373427602&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709373427602", "metageneration": "1", "storageClass": "STANDARD", "size": "79336014", "md5Hash": "dj51DUjpy3paqWmq1nU5ZQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6eYYdQ==", "etag": "CJK/qIDone4CEAE=", "timeCreated": "2021-01-15T11:16:13.438Z", @@ -10574,17 +11322,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1610709373512338", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1610709373512338&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm.sha512/1610709373512338", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-aarch64.rpm.sha512?generation=1610709373512338&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709373512338", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "Un7QWTYFQWtzCbZO3N1ziA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "W7LI0g==", "etag": "CJLVrYDone4CEAE=", "timeCreated": "2021-01-15T11:16:13.512Z", @@ -10593,17 +11352,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb/1610709377943138", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb?generation=1610709377943138&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb/1610709377943138", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb?generation=1610709377943138&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709377943138", "metageneration": "1", "storageClass": "STANDARD", "size": "89487608", "md5Hash": "Q6uYiiPMBtS0YMmaxTYBjQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "JhOJ8g==", "etag": "COKMvILone4CEAE=", "timeCreated": "2021-01-15T11:16:17.949Z", @@ -10612,17 +11382,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512/1610709378016855", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1610709378016855&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb.sha512/1610709378016855", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-amd64.deb.sha512?generation=1610709378016855&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709378016855", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "oB+kVV13KKXQxTW93aaaQQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2s+tqQ==", "etag": "CNfMwILone4CEAE=", "timeCreated": "2021-01-15T11:16:18.024Z", @@ -10631,17 +11412,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb/1610709382163908", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb?generation=1610709382163908&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb/1610709382163908", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb?generation=1610709382163908&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709382163908", "metageneration": "1", "storageClass": "STANDARD", "size": "79409606", "md5Hash": "bnivbvTLfgxxnfZrT6ELgg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "n69Pnw==", "etag": "CMTbvYTone4CEAE=", "timeCreated": "2021-01-15T11:16:22.172Z", @@ -10650,17 +11442,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512/1610709382235110", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1610709382235110&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb.sha512/1610709382235110", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-arm64.deb.sha512?generation=1610709382235110&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709382235110", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "6mzUmxn+OlhuX2V1XL9o6w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Xd/YRQ==", "etag": "COaHwoTone4CEAE=", "timeCreated": "2021-01-15T11:16:22.260Z", @@ -10669,17 +11472,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb/1610709387056680", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb?generation=1610709387056680&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb/1610709387056680", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb?generation=1610709387056680&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709387056680", "metageneration": "1", "storageClass": "STANDARD", "size": "80411378", "md5Hash": "Wty23O6Vf8nVryT23/nqbA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ud+fuA==", "etag": "CKis6Ibone4CEAE=", "timeCreated": "2021-01-15T11:16:27.064Z", @@ -10688,17 +11502,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512/1610709387125546", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1610709387125546&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb.sha512/1610709387125546", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhf.deb.sha512?generation=1610709387125546&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709387125546", "metageneration": "1", "storageClass": "STANDARD", "size": "168", "md5Hash": "SIt+2PV04qx+q6AHImIM9A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2ffaBQ==", "etag": "CKrG7Ibone4CEAE=", "timeCreated": "2021-01-15T11:16:27.131Z", @@ -10707,17 +11532,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm/1610709391133817", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm?generation=1610709391133817&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm/1610709391133817", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm?generation=1610709391133817&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709391133817", "metageneration": "1", "storageClass": "STANDARD", "size": "80338111", "md5Hash": "BbMI0+/IzUv+3pxQdqyAVQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "O5z0Gg==", "etag": "CPmY4Yjone4CEAE=", "timeCreated": "2021-01-15T11:16:31.143Z", @@ -10726,17 +11562,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1610709391193505", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1610709391193505&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm.sha512/1610709391193505", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-armhfp.rpm.sha512?generation=1610709391193505&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709391193505", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "V2xVWGbG/F42GMN0w4uUQA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "d/uZXQ==", "etag": "CKHr5Ijone4CEAE=", "timeCreated": "2021-01-15T11:16:31.200Z", @@ -10745,10 +11592,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1610709395458702", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1610709395458702&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz/1610709395458702", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1610709395458702&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709395458702", "metageneration": "1", @@ -10756,7 +11610,11 @@ "storageClass": "STANDARD", "size": "86785081", "md5Hash": "NVzCigldJQglAmgCmK3Ntw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Mjp6Fg==", "etag": "CI6V6Yrone4CEAE=", "timeCreated": "2021-01-15T11:16:35.469Z", @@ -10765,17 +11623,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1610709395518155", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1610709395518155&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1610709395518155", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1610709395518155&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709395518155", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "DJySq4QU/5zV8yJUq4Wknw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jM5NoQ==", "etag": "CMvl7Irone4CEAE=", "timeCreated": "2021-01-15T11:16:35.523Z", @@ -10784,17 +11653,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb/1610709399911678", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb?generation=1610709399911678&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb/1610709399911678", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb?generation=1610709399911678&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709399911678", "metageneration": "1", "storageClass": "STANDARD", "size": "86879804", "md5Hash": "EEsm9a0k3Y7rtvflYESbqg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i386.deb\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "rUehoQ==", "etag": "CP75+Izone4CEAE=", "timeCreated": "2021-01-15T11:16:39.911Z", @@ -10803,17 +11683,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512/1610709399985108", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1610709399985108&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb.sha512/1610709399985108", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i386.deb.sha512?generation=1610709399985108&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709399985108", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "6yvMhtpAe77OT0tmw4t/dA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "crta7Q==", "etag": "CNS3/Yzone4CEAE=", "timeCreated": "2021-01-15T11:16:39.992Z", @@ -10822,17 +11713,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm/1610709404361482", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm?generation=1610709404361482&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm/1610709404361482", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm?generation=1610709404361482&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709404361482", "metageneration": "1", "storageClass": "STANDARD", "size": "86793301", "md5Hash": "ylhovs1ywFeBYdt7Q0jMSg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hgKX2g==", "etag": "CIrGiI/one4CEAE=", "timeCreated": "2021-01-15T11:16:44.369Z", @@ -10841,17 +11743,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512/1610709404423725", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1610709404423725&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm.sha512/1610709404423725", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-i686.rpm.sha512?generation=1610709404423725&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709404423725", "metageneration": "1", "storageClass": "STANDARD", "size": "167", "md5Hash": "CngzgDJ6b8uq3Y069NCkIw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "BhgZXA==", "etag": "CK2sjI/one4CEAE=", "timeCreated": "2021-01-15T11:16:44.429Z", @@ -10860,10 +11773,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1610709414522308", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1610709414522308&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz/1610709414522308", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1610709414522308&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709414522308", "metageneration": "1", @@ -10871,7 +11791,11 @@ "storageClass": "STANDARD", "size": "204462185", "md5Hash": "jpruqrTZ9vUX4zn0Zhnv9w==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "m9dm6Q==", "etag": "CMTb9JPone4CEAE=", "timeCreated": "2021-01-15T11:16:54.522Z", @@ -10880,17 +11804,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1610709414623172", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1610709414623172&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1610709414623172", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1610709414623172&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709414623172", "metageneration": "1", "storageClass": "STANDARD", "size": "184", "md5Hash": "2L+MzOaynsv0DMJ2ziATUQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "jk7D4A==", "etag": "CMTv+pPone4CEAE=", "timeCreated": "2021-01-15T11:16:54.622Z", @@ -10899,10 +11834,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1610709418534331", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1610709418534331&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz/1610709418534331", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz?generation=1610709418534331&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709418534331", "metageneration": "1", @@ -10910,7 +11852,11 @@ "storageClass": "STANDARD", "size": "79240059", "md5Hash": "7bicmt9AhR8KH8C28nG0Tg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ORliFw==", "etag": "CLvL6ZXone4CEAE=", "timeCreated": "2021-01-15T11:16:58.540Z", @@ -10919,17 +11865,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1610709418633007", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1610709418633007&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512/1610709418633007", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1610709418633007&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709418633007", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "Ppu7sjD09gkSOwLhiHJNIw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dXC+tg==", "etag": "CK/O75Xone4CEAE=", "timeCreated": "2021-01-15T11:16:58.632Z", @@ -10938,10 +11895,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1610709422673890", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1610709422673890&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz/1610709422673890", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz?generation=1610709422673890&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709422673890", "metageneration": "1", @@ -10949,7 +11913,11 @@ "storageClass": "STANDARD", "size": "80452465", "md5Hash": "3zcND/hRordP9k30oesszQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "E0MdSg==", "etag": "COKf5pfone4CEAE=", "timeCreated": "2021-01-15T11:17:02.673Z", @@ -10958,17 +11926,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1610709422758251", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1610709422758251&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512/1610709422758251", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1610709422758251&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709422758251", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "BcGhrEAuE7nDVUNwfywUVA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "CKgh5Q==", "etag": "COuy65fone4CEAE=", "timeCreated": "2021-01-15T11:17:02.764Z", @@ -10977,10 +11956,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz/1610709427185950", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1610709427185950&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz/1610709427185950", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz?generation=1610709427185950&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709427185950", "metageneration": "1", @@ -10988,7 +11974,11 @@ "storageClass": "STANDARD", "size": "86874723", "md5Hash": "ilzwDVNreyrqB+mZetAmAw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Vk5uOw==", "etag": "CJ7S+Znone4CEAE=", "timeCreated": "2021-01-15T11:17:07.192Z", @@ -10997,17 +11987,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1610709427281461", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1610709427281461&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512/1610709427281461", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1610709427281461&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709427281461", "metageneration": "1", "storageClass": "STANDARD", "size": "175", "md5Hash": "H0WIbffQ94ieKZaMwgmRUQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ihv1rA==", "etag": "CLW8/5none4CEAE=", "timeCreated": "2021-01-15T11:17:07.288Z", @@ -11016,10 +12017,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1610709431925269", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1610709431925269&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz/1610709431925269", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz?generation=1610709431925269&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709431925269", "metageneration": "1", @@ -11027,7 +12035,11 @@ "storageClass": "STANDARD", "size": "89279564", "md5Hash": "tFrHLZDkwj8vv6iDcLsW4Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QgtscQ==", "etag": "CJX0mpzone4CEAE=", "timeCreated": "2021-01-15T11:17:11.925Z", @@ -11036,17 +12048,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1610709431988092", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1610709431988092&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1610709431988092", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1610709431988092&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709431988092", "metageneration": "1", "storageClass": "STANDARD", "size": "178", "md5Hash": "yhiSt1AWea1y1wid+znNGA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "2puQtQ==", "etag": "CPzenpzone4CEAE=", "timeCreated": "2021-01-15T11:17:11.994Z", @@ -11055,10 +12078,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip/1610709436337564", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip?generation=1610709436337564&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip/1610709436337564", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip?generation=1610709436337564&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709436337564", "metageneration": "1", @@ -11066,7 +12096,11 @@ "storageClass": "STANDARD", "size": "81068907", "md5Hash": "F0gy34RZp1rSFpvr+nxO2A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "NHSPwg==", "etag": "CJybqJ7one4CEAE=", "timeCreated": "2021-01-15T11:17:16.345Z", @@ -11075,17 +12109,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1610709436409690", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1610709436409690&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip.sha512/1610709436409690", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86.zip.sha512?generation=1610709436409690&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709436409690", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "BSvQW7Wi0Lbd12pDgkAtRA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xC3S3Q==", "etag": "CNrOrJ7one4CEAE=", "timeCreated": "2021-01-15T11:17:16.415Z", @@ -11094,10 +12139,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip/1610709441098727", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1610709441098727&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip/1610709441098727", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip?generation=1610709441098727&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709441098727", "metageneration": "1", @@ -11105,7 +12157,11 @@ "storageClass": "STANDARD", "size": "83554161", "md5Hash": "5KTI8ehMyOcJVpFaQA0L0Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XiYDBg==", "etag": "COfnyqDone4CEAE=", "timeCreated": "2021-01-15T11:17:21.107Z", @@ -11114,17 +12170,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1610709441173734", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1610709441173734&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512/1610709441173734", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1610709441173734&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709441173734", "metageneration": "1", "storageClass": "STANDARD", "size": "177", "md5Hash": "aZXKGxEzEA8FkrWca+vk0Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "TbkUHg==", "etag": "COaxz6Done4CEAE=", "timeCreated": "2021-01-15T11:17:21.179Z", @@ -11133,17 +12200,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm/1610709445585774", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm?generation=1610709445585774&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm/1610709445585774", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm?generation=1610709445585774&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709445585774", "metageneration": "1", "storageClass": "STANDARD", "size": "89366486", "md5Hash": "lkaz542jketKJt++fnOEkw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "f9P2Nw==", "etag": "CO7W3KLone4CEAE=", "timeCreated": "2021-01-15T11:17:25.591Z", @@ -11152,17 +12230,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1610709445660130", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1610709445660130&alt=media", "name": "snapshots/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm.sha512/1610709445660130", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-BEATS_VERSION-x86_64.rpm.sha512?generation=1610709445660130&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709445660130", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "P3bAuMl0DFT5gO7DW3Rjzw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''elastic-agent-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "V83PEQ==", "etag": "COKb4aLone4CEAE=", "timeCreated": "2021-01-15T11:17:25.659Z", @@ -11288,10 +12377,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1610709452405002", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1610709452405002&alt=media", "name": "snapshots/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz/1610709452405002", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1610709452405002&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709452405002", "metageneration": "1", @@ -11299,7 +12395,11 @@ "storageClass": "STANDARD", "size": "134314586", "md5Hash": "e9LyuqD2VOfkudcPzoEgLg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "sQ7oIA==", "etag": "CIry/KXone4CEAE=", "timeCreated": "2021-01-15T11:17:32.414Z", @@ -11308,17 +12408,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1610709452477922", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1610709452477922&alt=media", "name": "snapshots/elastic-agent/elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1610709452477922", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Felastic-agent%2Felastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1610709452477922&alt=media", + "name": "snapshots/elastic-agent/elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610709452477922", "metageneration": "1", "storageClass": "STANDARD", "size": "189", "md5Hash": "A5F17OHLNG8T/U8PGVF7Bw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''elastic-agent-ubi8-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "9mvUyA==", "etag": "COKrgabone4CEAE=", "timeCreated": "2021-01-15T11:17:32.484Z", @@ -18545,17 +19656,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm/1610708547628819", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm?generation=1610708547628819&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-aarch64.rpm/1610708547628819", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm?generation=1610708547628819&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708547628819", "metageneration": "1", "storageClass": "STANDARD", "size": "30795593", "md5Hash": "0OG9f/QVQWyHdlr3gfmbYQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-aarch64.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-aarch64.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-aarch64.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-aarch64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WS+bMQ==", "etag": "CJPexfbkne4CEAE=", "timeCreated": "2021-01-15T11:02:27.634Z", @@ -18564,17 +19686,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512/1610708547690848", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512?generation=1610708547690848&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-aarch64.rpm.sha512/1610708547690848", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-aarch64.rpm.sha512?generation=1610708547690848&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708547690848", "metageneration": "1", "storageClass": "STANDARD", "size": "165", "md5Hash": "wsfCNfYuaPWXMDQ2ybqosw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-aarch64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-aarch64.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-aarch64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "XtIsXA==", "etag": "CODCyfbkne4CEAE=", "timeCreated": "2021-01-15T11:02:27.690Z", @@ -18583,17 +19716,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb/1610708549700051", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb?generation=1610708549700051&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-amd64.deb/1610708549700051", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb?generation=1610708549700051&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708549700051", "metageneration": "1", "storageClass": "STANDARD", "size": "35132872", "md5Hash": "5eetqc1fk9dDMCwP5zzKeA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-amd64.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-amd64.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-amd64.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-amd64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "MhB9dA==", "etag": "CNOTxPfkne4CEAE=", "timeCreated": "2021-01-15T11:02:29.706Z", @@ -18602,17 +19746,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512/1610708549762931", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-amd64.deb.sha512?generation=1610708549762931&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-amd64.deb.sha512/1610708549762931", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-amd64.deb.sha512?generation=1610708549762931&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708549762931", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "fM4P7DsyrsvvGeQvqm3Dsg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-amd64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-amd64.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-amd64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "+Tg7Cw==", "etag": "CPP+x/fkne4CEAE=", "timeCreated": "2021-01-15T11:02:29.762Z", @@ -18621,17 +19776,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb/1610708551632492", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb?generation=1610708551632492&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-arm64.deb/1610708551632492", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb?generation=1610708551632492&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708551632492", "metageneration": "1", "storageClass": "STANDARD", "size": "31116054", "md5Hash": "BbR+7G6UGOyQIO/aCZ+rhQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-arm64.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-arm64.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-arm64.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-arm64.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "LPSDEA==", "etag": "COyMuvjkne4CEAE=", "timeCreated": "2021-01-15T11:02:31.639Z", @@ -18640,17 +19806,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512/1610708551733962", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-arm64.deb.sha512?generation=1610708551733962&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-arm64.deb.sha512/1610708551733962", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-arm64.deb.sha512?generation=1610708551733962&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708551733962", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "OCXcRtyaI+SPzMdFNmnoOg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-arm64.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-arm64.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-arm64.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "dP4SNw==", "etag": "CMqlwPjkne4CEAE=", "timeCreated": "2021-01-15T11:02:31.739Z", @@ -18659,17 +19836,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb/1610708553498582", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb?generation=1610708553498582&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-armhf.deb/1610708553498582", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb?generation=1610708553498582&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708553498582", "metageneration": "1", "storageClass": "STANDARD", "size": "31050878", "md5Hash": "GpNz+l+6DbcB+El6ElF6Eg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhf.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhf.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhf.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhf.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "xmlkKg==", "etag": "CNb/q/nkne4CEAE=", "timeCreated": "2021-01-15T11:02:33.506Z", @@ -18678,17 +19866,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512/1610708553574989", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhf.deb.sha512?generation=1610708553574989&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-armhf.deb.sha512/1610708553574989", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhf.deb.sha512?generation=1610708553574989&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708553574989", "metageneration": "1", "storageClass": "STANDARD", "size": "163", "md5Hash": "pp7CHpnrng6z+OPdN56ahw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhf.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhf.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhf.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "ZgntjQ==", "etag": "CM3UsPnkne4CEAE=", "timeCreated": "2021-01-15T11:02:33.581Z", @@ -18697,17 +19896,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm/1610708555306660", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm?generation=1610708555306660&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-armhfp.rpm/1610708555306660", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm?generation=1610708555306660&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708555306660", "metageneration": "1", "storageClass": "STANDARD", "size": "30795104", "md5Hash": "ZMi6pj/YrGjkOWKXswvT/Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhfp.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhfp.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhfp.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhfp.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hb2P/A==", "etag": "CKStmvrkne4CEAE=", "timeCreated": "2021-01-15T11:02:35.314Z", @@ -18716,17 +19926,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512/1610708555361723", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512?generation=1610708555361723&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-armhfp.rpm.sha512/1610708555361723", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-armhfp.rpm.sha512?generation=1610708555361723&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708555361723", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "2JGoKJW/kXnEFsK1tlcV4g==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-armhfp.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-armhfp.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-armhfp.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "hsqwLA==", "etag": "CLvbnfrkne4CEAE=", "timeCreated": "2021-01-15T11:02:35.361Z", @@ -18735,10 +19956,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz/1610708557306803", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz?generation=1610708557306803&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz/1610708557306803", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz?generation=1610708557306803&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708557306803", "metageneration": "1", @@ -18746,7 +19974,11 @@ "storageClass": "STANDARD", "size": "33840377", "md5Hash": "XPKI5/8gUxvwEHg63e+HMQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-darwin-x86_64.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-darwin-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "JU8Lag==", "etag": "CLO3lPvkne4CEAE=", "timeCreated": "2021-01-15T11:02:37.306Z", @@ -18755,17 +19987,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512/1610708557366840", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512?generation=1610708557366840&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512/1610708557366840", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512?generation=1610708557366840&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708557366840", "metageneration": "1", "storageClass": "STANDARD", "size": "174", "md5Hash": "1vmvPsJ8KRkza4zMsyrn0A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-darwin-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "fYyeDg==", "etag": "CLiMmPvkne4CEAE=", "timeCreated": "2021-01-15T11:02:37.372Z", @@ -18774,17 +20017,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb/1610708559272279", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb?generation=1610708559272279&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-i386.deb/1610708559272279", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb?generation=1610708559272279&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708559272279", "metageneration": "1", "storageClass": "STANDARD", "size": "33785078", "md5Hash": "EvGZz/FbCel/MXKPn6wB5A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i386.deb\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i386.deb", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i386.deb\"; filename*=UTF-8''filebeat-BEATS_VERSION-i386.deb", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "T6Z58Q==", "etag": "CNeyjPzkne4CEAE=", "timeCreated": "2021-01-15T11:02:39.279Z", @@ -18793,17 +20047,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb.sha512/1610708559330844", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i386.deb.sha512?generation=1610708559330844&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-i386.deb.sha512/1610708559330844", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i386.deb.sha512?generation=1610708559330844&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708559330844", "metageneration": "1", "storageClass": "STANDARD", "size": "162", "md5Hash": "o38BXW6OPdMPzzyt2zkW8Q==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i386.deb.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i386.deb.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i386.deb.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-i386.deb.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "Cw29uQ==", "etag": "CJz8j/zkne4CEAE=", "timeCreated": "2021-01-15T11:02:39.337Z", @@ -18812,17 +20077,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm/1610708561181122", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm?generation=1610708561181122&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-i686.rpm/1610708561181122", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm?generation=1610708561181122&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708561181122", "metageneration": "1", "storageClass": "STANDARD", "size": "33458576", "md5Hash": "Wb/IoKVi7I4WgkMDJCaztg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i686.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i686.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i686.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-i686.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "tNbSSg==", "etag": "CMLzgP3kne4CEAE=", "timeCreated": "2021-01-15T11:02:41.186Z", @@ -18831,17 +20107,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512/1610708561247706", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-i686.rpm.sha512?generation=1610708561247706&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-i686.rpm.sha512/1610708561247706", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-i686.rpm.sha512?generation=1610708561247706&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708561247706", "metageneration": "1", "storageClass": "STANDARD", "size": "162", "md5Hash": "HjflrHmdqJzkoPq7Ax6lCw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-i686.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-i686.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-i686.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "TA0s8A==", "etag": "CNr7hP3kne4CEAE=", "timeCreated": "2021-01-15T11:02:41.254Z", @@ -18850,10 +20137,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz/1610708568616329", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz?generation=1610708568616329&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz/1610708568616329", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz?generation=1610708568616329&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708568616329", "metageneration": "1", @@ -18861,7 +20155,11 @@ "storageClass": "STANDARD", "size": "143157500", "md5Hash": "0V/L20mzjlWvBjdTbvO6hQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "l500tg==", "etag": "CInbxoDlne4CEAE=", "timeCreated": "2021-01-15T11:02:48.626Z", @@ -18870,17 +20168,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512/1610708568673993", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512?generation=1610708568673993&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512/1610708568673993", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512?generation=1610708568673993&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708568673993", "metageneration": "1", "storageClass": "STANDARD", "size": "179", "md5Hash": "sHenITmo/g/5m2z0B64TGA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-amd64.docker.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "OcWVbA==", "etag": "CMmdyoDlne4CEAE=", "timeCreated": "2021-01-15T11:02:48.679Z", @@ -18889,10 +20198,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz/1610708570366175", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz?generation=1610708570366175&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz/1610708570366175", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz?generation=1610708570366175&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708570366175", "metageneration": "1", @@ -18900,7 +20216,11 @@ "storageClass": "STANDARD", "size": "31087225", "md5Hash": "YaavDPav9IF/sIlv1TZjmQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-arm64.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-arm64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "E/VLgg==", "etag": "CN/BsYHlne4CEAE=", "timeCreated": "2021-01-15T11:02:50.365Z", @@ -18909,17 +20229,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512/1610708570462288", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512?generation=1610708570462288&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512/1610708570462288", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512?generation=1610708570462288&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708570462288", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "PoqJl3iHOJDdsVvDMKyLIw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-arm64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-arm64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "7+eaGg==", "etag": "CNCwt4Hlne4CEAE=", "timeCreated": "2021-01-15T11:02:50.462Z", @@ -18928,10 +20259,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz/1610708572319315", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz?generation=1610708572319315&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz/1610708572319315", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz?generation=1610708572319315&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708572319315", "metageneration": "1", @@ -18939,7 +20277,11 @@ "storageClass": "STANDARD", "size": "31459267", "md5Hash": "GDhXo8XO5Uchl2vZez7OLg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-armv7.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-armv7.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "aXaXlA==", "etag": "CNPcqILlne4CEAE=", "timeCreated": "2021-01-15T11:02:52.326Z", @@ -18948,17 +20290,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512/1610708572391197", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512?generation=1610708572391197&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512/1610708572391197", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512?generation=1610708572391197&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708572391197", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "X67/AL88aY+NTJGHAUoL4A==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-armv7.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-armv7.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "WNqvUw==", "etag": "CJ2OrYLlne4CEAE=", "timeCreated": "2021-01-15T11:02:52.396Z", @@ -18967,10 +20320,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz/1610708574148796", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz?generation=1610708574148796&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz/1610708574148796", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz?generation=1610708574148796&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708574148796", "metageneration": "1", @@ -18978,7 +20338,11 @@ "storageClass": "STANDARD", "size": "33995813", "md5Hash": "7ysPMtCEaJgFrjCL4Gt4dQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "tQzT/A==", "etag": "CLyxmIPlne4CEAE=", "timeCreated": "2021-01-15T11:02:54.157Z", @@ -18987,17 +20351,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512/1610708574219518", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512?generation=1610708574219518&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512/1610708574219518", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86.tar.gz.sha512?generation=1610708574219518&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708574219518", "metageneration": "1", "storageClass": "STANDARD", "size": "170", "md5Hash": "Tprc6LNQKeAWS2pvb7zSBQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "QvvYFw==", "etag": "CP7ZnIPlne4CEAE=", "timeCreated": "2021-01-15T11:02:54.225Z", @@ -19006,10 +20381,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz/1610708576080035", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz?generation=1610708576080035&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz/1610708576080035", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz?generation=1610708576080035&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708576080035", "metageneration": "1", @@ -19017,7 +20399,11 @@ "storageClass": "STANDARD", "size": "34908251", "md5Hash": "b1ZCxwDNZ3fM6aVF8uiHGQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86_64.tar.gz\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86_64.tar.gz", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "bD8A5w==", "etag": "CKOhjoTlne4CEAE=", "timeCreated": "2021-01-15T11:02:56.086Z", @@ -19026,17 +20412,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512/1610708576152168", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512?generation=1610708576152168&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512/1610708576152168", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512?generation=1610708576152168&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708576152168", "metageneration": "1", "storageClass": "STANDARD", "size": "173", "md5Hash": "ZKPHIvZFuVkRYg2sl/rnOw==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-linux-x86_64.tar.gz.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-linux-x86_64.tar.gz.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "IPIvtw==", "etag": "COjUkoTlne4CEAE=", "timeCreated": "2021-01-15T11:02:56.158Z", @@ -19045,10 +20442,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip/1610708577597879", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip?generation=1610708577597879&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86.zip/1610708577597879", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip?generation=1610708577597879&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708577597879", "metageneration": "1", @@ -19056,7 +20460,11 @@ "storageClass": "STANDARD", "size": "27099261", "md5Hash": "Jp7xbZjKRnxOnzkwq8xgpQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86.zip\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86.zip", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86.zip\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "gJmWxQ==", "etag": "CLfz6oTlne4CEAE=", "timeCreated": "2021-01-15T11:02:57.597Z", @@ -19065,17 +20473,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512/1610708577647748", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512?generation=1610708577647748&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86.zip.sha512/1610708577647748", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86.zip.sha512?generation=1610708577647748&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708577647748", "metageneration": "1", "storageClass": "STANDARD", "size": "169", "md5Hash": "1pG+2qwZxyLqzss4JRp/rQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86.zip.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86.zip.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "W8CkmQ==", "etag": "CIT57YTlne4CEAE=", "timeCreated": "2021-01-15T11:02:57.653Z", @@ -19084,10 +20503,17 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip/1610708579159285", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip?generation=1610708579159285&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip/1610708579159285", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip?generation=1610708579159285&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708579159285", "metageneration": "1", @@ -19095,7 +20521,11 @@ "storageClass": "STANDARD", "size": "27918214", "md5Hash": "PDwBXiR1I6ufiCUjhuGVig==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86_64.zip\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86_64.zip", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "H4bPAA==", "etag": "CPWZyoXlne4CEAE=", "timeCreated": "2021-01-15T11:02:59.167Z", @@ -19104,17 +20534,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512/1610708579236140", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512?generation=1610708579236140&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip.sha512/1610708579236140", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-windows-x86_64.zip.sha512?generation=1610708579236140&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708579236140", "metageneration": "1", "storageClass": "STANDARD", "size": "172", "md5Hash": "vuArrQKT2eXt3LvizUusxg==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-windows-x86_64.zip.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-windows-x86_64.zip.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-windows-x86_64.zip.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "6f+Pdw==", "etag": "CKzyzoXlne4CEAE=", "timeCreated": "2021-01-15T11:02:59.235Z", @@ -19123,17 +20564,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm/1610708581343024", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm?generation=1610708581343024&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-x86_64.rpm/1610708581343024", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm?generation=1610708581343024&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708581343024", "metageneration": "1", "storageClass": "STANDARD", "size": "34642729", "md5Hash": "efUqjXCAMVal/V8LFiyjOA==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-x86_64.rpm\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-x86_64.rpm", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-x86_64.rpm\"; filename*=UTF-8''filebeat-BEATS_VERSION-x86_64.rpm", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "F+Hpfw==", "etag": "CLC+z4blne4CEAE=", "timeCreated": "2021-01-15T11:03:01.342Z", @@ -19142,17 +20594,28 @@ }, { "kind": "storage#object", +<<<<<<< HEAD "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512/1610708581400501", "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512?generation=1610708581400501&alt=media", "name": "snapshots/filebeat/filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "id": "beats-ci-artifacts/snapshots/filebeat/filebeat-BEATS_VERSION-x86_64.rpm.sha512/1610708581400501", + "selfLink": "https://www.googleapis.com/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm.sha512", + "mediaLink": "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/snapshots%2Ffilebeat%2Ffilebeat-BEATS_VERSION-x86_64.rpm.sha512?generation=1610708581400501&alt=media", + "name": "snapshots/filebeat/filebeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "bucket": "beats-ci-artifacts", "generation": "1610708581400501", "metageneration": "1", "storageClass": "STANDARD", "size": "164", "md5Hash": "uBOFb8ShG5p8l9cuJQcAKQ==", +<<<<<<< HEAD "contentDisposition": "inline; filename=\"filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512\"; filename*=UTF-8''filebeat-7.13.0-SNAPSHOT-x86_64.rpm.sha512", +======= + "contentDisposition": "inline; filename=\"filebeat-BEATS_VERSION-x86_64.rpm.sha512\"; filename*=UTF-8''filebeat-BEATS_VERSION-x86_64.rpm.sha512", +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) "crc32c": "FiltJA==", "etag": "CLX/0oblne4CEAE=", "timeCreated": "2021-01-15T11:03:01.406Z", diff --git a/internal/utils/utils_test.go b/internal/utils/utils_test.go index 31d456d04e..0a99284fee 100644 --- a/internal/utils/utils_test.go +++ b/internal/utils/utils_test.go @@ -14,7 +14,14 @@ import ( gabs "github.com/Jeffail/gabs/v2" ) +<<<<<<< HEAD var testVersion = "7.13.0-SNAPSHOT" +======= +var artifact = "elastic-agent" +var testVersion = "BEATS_VERSION" +var ubi8VersionPrefix = artifact + "-ubi8-" + testVersion +var versionPrefix = artifact + "-" + testVersion +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) const bucket = "beats-ci-artifacts" const commits = "commits" @@ -45,14 +52,21 @@ func init() { } func TestBuildArtifactName(t *testing.T) { - artifact := "elastic-agent" OS := "linux" +<<<<<<< HEAD version := "7.13.0-SNAPSHOT" +======= + version := testVersion +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) t.Run("For RPM (amd64)", func(t *testing.T) { arch := "x86_64" extension := "rpm" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm" +======= + expectedFileName := versionPrefix + "-x86_64.rpm" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, false) assert.Equal(t, expectedFileName, artifactName) @@ -63,7 +77,11 @@ func TestBuildArtifactName(t *testing.T) { t.Run("For RPM (arm64)", func(t *testing.T) { arch := "aarch64" extension := "rpm" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm" +======= + expectedFileName := versionPrefix + "-aarch64.rpm" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, false) assert.Equal(t, expectedFileName, artifactName) @@ -75,7 +93,11 @@ func TestBuildArtifactName(t *testing.T) { t.Run("For DEB (amd64)", func(t *testing.T) { arch := "amd64" extension := "deb" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-amd64.deb" +======= + expectedFileName := versionPrefix + "-amd64.deb" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, false) assert.Equal(t, expectedFileName, artifactName) @@ -86,7 +108,11 @@ func TestBuildArtifactName(t *testing.T) { t.Run("For DEB (arm64)", func(t *testing.T) { arch := "arm64" extension := "deb" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-arm64.deb" +======= + expectedFileName := versionPrefix + "-arm64.deb" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, false) assert.Equal(t, expectedFileName, artifactName) @@ -98,7 +124,11 @@ func TestBuildArtifactName(t *testing.T) { t.Run("For TAR (amd64)", func(t *testing.T) { arch := "x86_64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz" +======= + expectedFileName := versionPrefix + "-linux-x86_64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, false) assert.Equal(t, expectedFileName, artifactName) @@ -109,7 +139,11 @@ func TestBuildArtifactName(t *testing.T) { t.Run("For TAR (arm64)", func(t *testing.T) { arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz" +======= + expectedFileName := versionPrefix + "-linux-arm64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, false) assert.Equal(t, expectedFileName, artifactName) @@ -125,7 +159,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-docker-image-linux-amd64.tar.gz" +======= + expectedFileName := versionPrefix + "-docker-image-linux-amd64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -140,7 +178,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-docker-image-linux-arm64.tar.gz" +======= + expectedFileName := versionPrefix + "-docker-image-linux-arm64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -156,7 +198,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent-ubi8" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-docker-image-linux-amd64.tar.gz" +======= + expectedFileName := ubi8VersionPrefix + "-docker-image-linux-amd64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -171,7 +217,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent-ubi8" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-docker-image-linux-arm64.tar.gz" +======= + expectedFileName := ubi8VersionPrefix + "-docker-image-linux-arm64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -187,7 +237,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + expectedFileName := versionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -202,7 +256,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-linux-arm64.docker.tar.gz" +======= + expectedFileName := versionPrefix + "-linux-arm64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -218,7 +276,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent-ubi8" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + expectedFileName := ubi8VersionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -233,7 +295,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent-ubi8" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-arm64.docker.tar.gz" +======= + expectedFileName := ubi8VersionPrefix + "-linux-arm64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -249,7 +315,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + expectedFileName := versionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -264,7 +334,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-linux-arm64.docker.tar.gz" +======= + expectedFileName := versionPrefix + "-linux-arm64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -280,7 +354,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent-ubi8" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + expectedFileName := ubi8VersionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -295,7 +373,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent-ubi8" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-arm64.docker.tar.gz" +======= + expectedFileName := ubi8VersionPrefix + "-linux-arm64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -311,7 +393,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "amd64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-docker-image-linux-amd64.tar.gz" +======= + expectedFileName := versionPrefix + "-docker-image-linux-amd64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -326,7 +412,11 @@ func TestBuildArtifactName(t *testing.T) { artifact = "elastic-agent" arch := "arm64" extension := "tar.gz" +<<<<<<< HEAD expectedFileName := "elastic-agent-7.13.0-SNAPSHOT-docker-image-linux-arm64.tar.gz" +======= + expectedFileName := versionPrefix + "-docker-image-linux-arm64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) artifactName := buildArtifactName(artifact, version, OS, arch, extension, true) assert.Equal(t, expectedFileName, artifactName) @@ -365,7 +455,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { artifact := "elastic-agent" beatsDir := path.Join("..", "_testresources", "beats") distributionsDir, _ := filepath.Abs(path.Join(beatsDir, "x-pack", "elastic-agent", "build", "distributions")) +<<<<<<< HEAD version := "7.13.0-SNAPSHOT" +======= + version := testVersion +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) ctx := context.Background() @@ -381,7 +475,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-x86_64.rpm" +======= + artifactName := versionPrefix + "-x86_64.rpm" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -392,7 +490,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-aarch64.rpm" +======= + artifactName := versionPrefix + "-aarch64.rpm" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -404,7 +506,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-amd64.deb" +======= + artifactName := versionPrefix + "-amd64.deb" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -415,7 +521,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-arm64.deb" +======= + artifactName := versionPrefix + "-arm64.deb" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -427,7 +537,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-linux-amd64.tar.gz" +======= + artifactName := versionPrefix + "-linux-amd64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -438,7 +552,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-linux-x86_64.tar.gz" +======= + artifactName := versionPrefix + "-linux-x86_64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -449,7 +567,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-linux-arm64.tar.gz" +======= + artifactName := versionPrefix + "-linux-arm64.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -461,7 +583,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + artifactName := versionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -472,7 +598,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-7.13.0-SNAPSHOT-linux-arm64.docker.tar.gz" +======= + artifactName := versionPrefix + "-linux-arm64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -484,7 +614,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + artifactName := ubi8VersionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -495,7 +629,11 @@ func TestFetchBeatsBinaryFromLocalPath(t *testing.T) { defer os.Unsetenv("BEATS_LOCAL_PATH") os.Setenv("BEATS_LOCAL_PATH", beatsDir) +<<<<<<< HEAD artifactName := "elastic-agent-ubi8-7.13.0-SNAPSHOT-linux-arm64.docker.tar.gz" +======= + artifactName := ubi8VersionPrefix + "-linux-arm64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) expectedFilePath := path.Join(distributionsDir, artifactName) downloadedFilePath, err := fetchBeatsBinary(ctx, artifactName, artifact, version, TimeoutFactor, true) @@ -649,6 +787,7 @@ func TestIsCommit(t *testing.T) { func TestProcessBucketSearchPage_CommitFound(t *testing.T) { // retrieving last element in commits.json +<<<<<<< HEAD object := "024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/elastic-agent-7.13.0-SNAPSHOT-darwin-x86_64.tar.gz" mediaLink, err := processBucketSearchPage(commitsJSON, 1, bucket, commits, object) @@ -658,6 +797,17 @@ func TestProcessBucketSearchPage_CommitFound(t *testing.T) { func TestProcessBucketSearchPage_CommitsNotFound(t *testing.T) { object := "foo/elastic-agent-7.13.0-SNAPSHOT-linux-amd64.docker.tar.gz" +======= + object := "024b732844d40bdb2bf806480af2b03fcb8fbdbe/elastic-agent/" + versionPrefix + "-darwin-x86_64.tar.gz" + + mediaLink, err := processBucketSearchPage(commitsJSON, 1, bucket, commits, object) + assert.Nil(t, err) + assert.True(t, mediaLink == "https://storage.googleapis.com/download/storage/v1/b/beats-ci-artifacts/o/commits%2F024b732844d40bdb2bf806480af2b03fcb8fbdbe%2Felastic-agent%2F"+versionPrefix+"-darwin-x86_64.tar.gz?generation=1612983859986704&alt=media") +} + +func TestProcessBucketSearchPage_CommitsNotFound(t *testing.T) { + object := "foo/" + versionPrefix + "-linux-amd64.docker.tar.gz" +>>>>>>> 395bdb2 (chore: improve the automation for the stack version bump (#1351)) mediaLink, err := processBucketSearchPage(commitsJSON, 1, bucket, commits, object) assert.NotNil(t, err)