Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit a3685b5

Browse files
fix: fix body encoding for rest transport (#17)
fix: update paging implementation to handle unconventional pagination fix: don't use integers for enums in json encoding fix: stabilize order of query_params
1 parent 16e7294 commit a3685b5

File tree

372 files changed

+21160
-2002
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

372 files changed

+21160
-2002
lines changed

.kokoro/docs/common.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ env_vars: {
3333
value: "docs-staging-v2"
3434
}
3535

36-
# Don't update the docker image from this build
36+
# It will upload the docker image after successful builds.
3737
env_vars: {
3838
key: "TRAMPOLINE_IMAGE_UPLOAD"
39-
value: "false"
39+
value: "true"
4040
}
4141

4242
# It will always build the docker image.

.kokoro/docs/docs-presubmit.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ env_vars: {
1010
value: "gcloud-python-test"
1111
}
1212

13+
# We only upload the image in the main `docs` build.
14+
env_vars: {
15+
key: "TRAMPOLINE_IMAGE_UPLOAD"
16+
value: "false"
17+
}
18+
1319
env_vars: {
1420
key: "TRAMPOLINE_BUILD_FILE"
1521
value: "github/python-compute/.kokoro/build.sh"

.kokoro/docs/docs.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Format: //devtools/kokoro/config/proto/build.proto
1+
# Format: //devtools/kokoro/config/proto/build.proto

.kokoro/test-samples.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ for file in samples/**/requirements.txt; do
8787
python3.6 -m nox -s "$RUN_TESTS_SESSION"
8888
EXIT=$?
8989

90-
# If this is a periodic build, send the test log to the FlakyBot.
91-
# See https://github.com/googleapis/repo-automation-bots/tree/master/packages/flakybot.
90+
# If this is a periodic build, send the test log to the Build Cop Bot.
91+
# See https://github.com/googleapis/repo-automation-bots/tree/master/packages/buildcop.
9292
if [[ $KOKORO_BUILD_ARTIFACTS_SUBDIR = *"periodic"* ]]; then
93-
chmod +x $KOKORO_GFILE_DIR/linux_amd64/flakybot
94-
$KOKORO_GFILE_DIR/linux_amd64/flakybot
93+
chmod +x $KOKORO_GFILE_DIR/linux_amd64/buildcop
94+
$KOKORO_GFILE_DIR/linux_amd64/buildcop
9595
fi
9696

9797
if [[ $EXIT -ne 0 ]]; then

.kokoro/trampoline_v2.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ if [[ -n "${KOKORO_BUILD_ID:-}" ]]; then
159159
"KOKORO_GITHUB_COMMIT"
160160
"KOKORO_GITHUB_PULL_REQUEST_NUMBER"
161161
"KOKORO_GITHUB_PULL_REQUEST_COMMIT"
162-
# For FlakyBot
162+
# For Build Cop Bot
163163
"KOKORO_GITHUB_COMMIT_URL"
164164
"KOKORO_GITHUB_PULL_REQUEST_URL"
165165
)

docs/compute_v1/accelerator_types.rst

Lines changed: 5 additions & 0 deletions

docs/compute_v1/addresses.rst

Lines changed: 5 additions & 0 deletions

docs/compute_v1/autoscalers.rst

Lines changed: 5 additions & 0 deletions

docs/compute_v1/backend_buckets.rst

Lines changed: 5 additions & 0 deletions

docs/compute_v1/backend_services.rst

Lines changed: 5 additions & 0 deletions

0 commit comments

Comments
 (0)