diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 00000000..9ac94126 --- /dev/null +++ b/.github/workflows/publish-pypi.yml @@ -0,0 +1,31 @@ +# This workflow is triggered when a GitHub release is created. +# It can also be run manually to re-publish to PyPI in case it failed for some reason. +# You can run this workflow by navigating to https://www.github.com/gitpod-io/flex-sdk-python/actions/workflows/publish-pypi.yml +name: Publish PyPI +on: + workflow_dispatch: + + release: + types: [published] + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Install Rye + run: | + curl -sSf https://rye.astral.sh/get | bash + echo "$HOME/.rye/shims" >> $GITHUB_PATH + env: + RYE_VERSION: '0.35.0' + RYE_INSTALL_OPTION: '--yes' + + - name: Publish to PyPI + run: | + bash ./bin/publish-pypi + env: + PYPI_TOKEN: ${{ secrets.GITPOD_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml new file mode 100644 index 00000000..7def838e --- /dev/null +++ b/.github/workflows/release-doctor.yml @@ -0,0 +1,21 @@ +name: Release Doctor +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + release_doctor: + name: release doctor + runs-on: ubuntu-latest + if: github.repository == 'gitpod-io/flex-sdk-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') + + steps: + - uses: actions/checkout@v4 + + - name: Check release environment + run: | + bash ./bin/check-release-environment + env: + PYPI_TOKEN: ${{ secrets.GITPOD_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 00000000..c4762802 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.0.1-alpha.0" +} \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 42c71aa0..bf30b351 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,7 +63,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```sh -$ pip install git+ssh://git@github.com/stainless-sdks/gitpod-python.git +$ pip install git+ssh://git@github.com/gitpod-io/flex-sdk-python.git ``` Alternatively, you can build from source and install the wheel file: @@ -121,7 +121,7 @@ the changes aren't made through the automated pipeline, you may want to make rel ### Publish with a GitHub workflow -You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/stainless-sdks/gitpod-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. +You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/gitpod-io/flex-sdk-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. ### Publish manually diff --git a/README.md b/README.md index c3987aaa..d4f6ef5c 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ The REST API documentation can be found on [docs.gitpod.com](https://docs.gitpod ## Installation ```sh -# install from this staging repo -pip install git+ssh://git@github.com/stainless-sdks/gitpod-python.git +# install from the production repo +pip install git+ssh://git@github.com/gitpod-io/flex-sdk-python.git ``` > [!NOTE] @@ -269,9 +269,9 @@ runner = response.parse() # get the object that `runners.create()` would have r print(runner.access_token) ``` -These methods return an [`APIResponse`](https://github.com/stainless-sdks/gitpod-python/tree/main/src/gitpod/_response.py) object. +These methods return an [`APIResponse`](https://github.com/gitpod-io/flex-sdk-python/tree/main/src/gitpod/_response.py) object. -The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/gitpod-python/tree/main/src/gitpod/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. +The async client returns an [`AsyncAPIResponse`](https://github.com/gitpod-io/flex-sdk-python/tree/main/src/gitpod/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. #### `.with_streaming_response` @@ -375,7 +375,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. -We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/gitpod-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/gitpod-io/flex-sdk-python/issues) with questions, bugs, or suggestions. ### Determining the installed version diff --git a/bin/check-release-environment b/bin/check-release-environment new file mode 100644 index 00000000..374fdaea --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +errors=() + +if [ -z "${PYPI_TOKEN}" ]; then + errors+=("The GITPOD_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.") +fi + +lenErrors=${#errors[@]} + +if [[ lenErrors -gt 0 ]]; then + echo -e "Found the following errors in the release environment:\n" + + for error in "${errors[@]}"; do + echo -e "- $error\n" + done + + exit 1 +fi + +echo "The environment is ready to push releases!" diff --git a/pyproject.toml b/pyproject.toml index 4fb1f51f..d6cb8e71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/stainless-sdks/gitpod-python" -Repository = "https://github.com/stainless-sdks/gitpod-python" +Homepage = "https://github.com/gitpod-io/flex-sdk-python" +Repository = "https://github.com/gitpod-io/flex-sdk-python" @@ -122,7 +122,7 @@ path = "README.md" [[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]] # replace relative links with absolute links pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)' -replacement = '[\1](https://github.com/stainless-sdks/gitpod-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/gitpod-io/flex-sdk-python/tree/main/\g<2>)' [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000..024bdf6a --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,66 @@ +{ + "packages": { + ".": {} + }, + "$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json", + "include-v-in-tag": true, + "include-component-in-tag": false, + "versioning": "prerelease", + "prerelease": true, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, + "pull-request-header": "Automated Release PR", + "pull-request-title-pattern": "release: ${version}", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "chore", + "section": "Chores" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "style", + "section": "Styles" + }, + { + "type": "refactor", + "section": "Refactors" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + } + ], + "release-type": "python", + "extra-files": [ + "src/gitpod/_version.py" + ] +} \ No newline at end of file diff --git a/src/gitpod/_version.py b/src/gitpod/_version.py index e706ccbe..47f502d2 100644 --- a/src/gitpod/_version.py +++ b/src/gitpod/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "gitpod" -__version__ = "0.0.1-alpha.0" +__version__ = "0.0.1-alpha.0" # x-release-please-version diff --git a/src/gitpod/resources/accounts.py b/src/gitpod/resources/accounts.py index 4fde3b35..5035b3a5 100644 --- a/src/gitpod/resources/accounts.py +++ b/src/gitpod/resources/accounts.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> AccountsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AccountsResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> AccountsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AccountsResourceWithStreamingResponse(self) @@ -227,7 +227,7 @@ def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncAccountsResourceWithRawResponse(self) @@ -236,7 +236,7 @@ def with_streaming_response(self) -> AsyncAccountsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncAccountsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/editors.py b/src/gitpod/resources/editors.py index 46537391..19cfc8a7 100644 --- a/src/gitpod/resources/editors.py +++ b/src/gitpod/resources/editors.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> EditorsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return EditorsResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> EditorsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return EditorsResourceWithStreamingResponse(self) @@ -184,7 +184,7 @@ def with_raw_response(self) -> AsyncEditorsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEditorsResourceWithRawResponse(self) @@ -193,7 +193,7 @@ def with_streaming_response(self) -> AsyncEditorsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncEditorsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/environments/automations/automations.py b/src/gitpod/resources/environments/automations/automations.py index 92069a01..ea521a1b 100644 --- a/src/gitpod/resources/environments/automations/automations.py +++ b/src/gitpod/resources/environments/automations/automations.py @@ -55,7 +55,7 @@ def with_raw_response(self) -> AutomationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AutomationsResourceWithRawResponse(self) @@ -64,7 +64,7 @@ def with_streaming_response(self) -> AutomationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AutomationsResourceWithStreamingResponse(self) @@ -128,7 +128,7 @@ def with_raw_response(self) -> AsyncAutomationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncAutomationsResourceWithRawResponse(self) @@ -137,7 +137,7 @@ def with_streaming_response(self) -> AsyncAutomationsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncAutomationsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/environments/automations/services.py b/src/gitpod/resources/environments/automations/services.py index ecd36130..f958352c 100644 --- a/src/gitpod/resources/environments/automations/services.py +++ b/src/gitpod/resources/environments/automations/services.py @@ -42,7 +42,7 @@ def with_raw_response(self) -> ServicesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return ServicesResourceWithRawResponse(self) @@ -51,7 +51,7 @@ def with_streaming_response(self) -> ServicesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return ServicesResourceWithStreamingResponse(self) @@ -355,7 +355,7 @@ def with_raw_response(self) -> AsyncServicesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncServicesResourceWithRawResponse(self) @@ -364,7 +364,7 @@ def with_streaming_response(self) -> AsyncServicesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncServicesResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/environments/automations/tasks/executions.py b/src/gitpod/resources/environments/automations/tasks/executions.py index 796bc06a..d34f9ecb 100644 --- a/src/gitpod/resources/environments/automations/tasks/executions.py +++ b/src/gitpod/resources/environments/automations/tasks/executions.py @@ -37,7 +37,7 @@ def with_raw_response(self) -> ExecutionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return ExecutionsResourceWithRawResponse(self) @@ -46,7 +46,7 @@ def with_streaming_response(self) -> ExecutionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return ExecutionsResourceWithStreamingResponse(self) @@ -179,7 +179,7 @@ def with_raw_response(self) -> AsyncExecutionsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncExecutionsResourceWithRawResponse(self) @@ -188,7 +188,7 @@ def with_streaming_response(self) -> AsyncExecutionsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncExecutionsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/environments/automations/tasks/tasks.py b/src/gitpod/resources/environments/automations/tasks/tasks.py index 29d9e18e..f3e00a6e 100644 --- a/src/gitpod/resources/environments/automations/tasks/tasks.py +++ b/src/gitpod/resources/environments/automations/tasks/tasks.py @@ -56,7 +56,7 @@ def with_raw_response(self) -> TasksResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return TasksResourceWithRawResponse(self) @@ -65,7 +65,7 @@ def with_streaming_response(self) -> TasksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return TasksResourceWithStreamingResponse(self) @@ -324,7 +324,7 @@ def with_raw_response(self) -> AsyncTasksResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncTasksResourceWithRawResponse(self) @@ -333,7 +333,7 @@ def with_streaming_response(self) -> AsyncTasksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncTasksResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/environments/classes.py b/src/gitpod/resources/environments/classes.py index 7b9cebdf..c4289d4c 100644 --- a/src/gitpod/resources/environments/classes.py +++ b/src/gitpod/resources/environments/classes.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> ClassesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return ClassesResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> ClassesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return ClassesResourceWithStreamingResponse(self) @@ -107,7 +107,7 @@ def with_raw_response(self) -> AsyncClassesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncClassesResourceWithRawResponse(self) @@ -116,7 +116,7 @@ def with_streaming_response(self) -> AsyncClassesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncClassesResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/environments/environments.py b/src/gitpod/resources/environments/environments.py index 4b1b3661..6d9d991f 100644 --- a/src/gitpod/resources/environments/environments.py +++ b/src/gitpod/resources/environments/environments.py @@ -74,7 +74,7 @@ def with_raw_response(self) -> EnvironmentsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return EnvironmentsResourceWithRawResponse(self) @@ -83,7 +83,7 @@ def with_streaming_response(self) -> EnvironmentsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return EnvironmentsResourceWithStreamingResponse(self) @@ -565,7 +565,7 @@ def with_raw_response(self) -> AsyncEnvironmentsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEnvironmentsResourceWithRawResponse(self) @@ -574,7 +574,7 @@ def with_streaming_response(self) -> AsyncEnvironmentsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncEnvironmentsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/events.py b/src/gitpod/resources/events.py index 2293eac3..df67d31f 100644 --- a/src/gitpod/resources/events.py +++ b/src/gitpod/resources/events.py @@ -37,7 +37,7 @@ def with_raw_response(self) -> EventsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return EventsResourceWithRawResponse(self) @@ -46,7 +46,7 @@ def with_streaming_response(self) -> EventsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return EventsResourceWithStreamingResponse(self) @@ -203,7 +203,7 @@ def with_raw_response(self) -> AsyncEventsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEventsResourceWithRawResponse(self) @@ -212,7 +212,7 @@ def with_streaming_response(self) -> AsyncEventsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncEventsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/groups.py b/src/gitpod/resources/groups.py index 42b262f7..bf614f1c 100644 --- a/src/gitpod/resources/groups.py +++ b/src/gitpod/resources/groups.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> GroupsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return GroupsResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> GroupsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return GroupsResourceWithStreamingResponse(self) @@ -98,7 +98,7 @@ def with_raw_response(self) -> AsyncGroupsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncGroupsResourceWithRawResponse(self) @@ -107,7 +107,7 @@ def with_streaming_response(self) -> AsyncGroupsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncGroupsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/identity.py b/src/gitpod/resources/identity.py index 893f759b..07b9632e 100644 --- a/src/gitpod/resources/identity.py +++ b/src/gitpod/resources/identity.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> IdentityResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return IdentityResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> IdentityResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return IdentityResourceWithStreamingResponse(self) @@ -163,7 +163,7 @@ def with_raw_response(self) -> AsyncIdentityResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncIdentityResourceWithRawResponse(self) @@ -172,7 +172,7 @@ def with_streaming_response(self) -> AsyncIdentityResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncIdentityResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/organizations/invites.py b/src/gitpod/resources/organizations/invites.py index 872373da..8475f639 100644 --- a/src/gitpod/resources/organizations/invites.py +++ b/src/gitpod/resources/organizations/invites.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> InvitesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return InvitesResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> InvitesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return InvitesResourceWithStreamingResponse(self) @@ -155,7 +155,7 @@ def with_raw_response(self) -> AsyncInvitesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncInvitesResourceWithRawResponse(self) @@ -164,7 +164,7 @@ def with_streaming_response(self) -> AsyncInvitesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncInvitesResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/organizations/organizations.py b/src/gitpod/resources/organizations/organizations.py index 9323dc35..afd94cb3 100644 --- a/src/gitpod/resources/organizations/organizations.py +++ b/src/gitpod/resources/organizations/organizations.py @@ -74,7 +74,7 @@ def with_raw_response(self) -> OrganizationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return OrganizationsResourceWithRawResponse(self) @@ -83,7 +83,7 @@ def with_streaming_response(self) -> OrganizationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return OrganizationsResourceWithStreamingResponse(self) @@ -581,7 +581,7 @@ def with_raw_response(self) -> AsyncOrganizationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncOrganizationsResourceWithRawResponse(self) @@ -590,7 +590,7 @@ def with_streaming_response(self) -> AsyncOrganizationsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncOrganizationsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/organizations/sso_configurations.py b/src/gitpod/resources/organizations/sso_configurations.py index aadadb22..cb3b97ce 100644 --- a/src/gitpod/resources/organizations/sso_configurations.py +++ b/src/gitpod/resources/organizations/sso_configurations.py @@ -43,7 +43,7 @@ def with_raw_response(self) -> SSOConfigurationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return SSOConfigurationsResourceWithRawResponse(self) @@ -52,7 +52,7 @@ def with_streaming_response(self) -> SSOConfigurationsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return SSOConfigurationsResourceWithStreamingResponse(self) @@ -421,7 +421,7 @@ def with_raw_response(self) -> AsyncSSOConfigurationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncSSOConfigurationsResourceWithRawResponse(self) @@ -430,7 +430,7 @@ def with_streaming_response(self) -> AsyncSSOConfigurationsResourceWithStreaming """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncSSOConfigurationsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/projects/policies.py b/src/gitpod/resources/projects/policies.py index d1a008fd..5c51df7a 100644 --- a/src/gitpod/resources/projects/policies.py +++ b/src/gitpod/resources/projects/policies.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> PoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return PoliciesResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> PoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return PoliciesResourceWithStreamingResponse(self) @@ -247,7 +247,7 @@ def with_raw_response(self) -> AsyncPoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncPoliciesResourceWithRawResponse(self) @@ -256,7 +256,7 @@ def with_streaming_response(self) -> AsyncPoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncPoliciesResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/projects/projects.py b/src/gitpod/resources/projects/projects.py index 90dab12b..a87ec1a8 100644 --- a/src/gitpod/resources/projects/projects.py +++ b/src/gitpod/resources/projects/projects.py @@ -58,7 +58,7 @@ def with_raw_response(self) -> ProjectsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return ProjectsResourceWithRawResponse(self) @@ -67,7 +67,7 @@ def with_streaming_response(self) -> ProjectsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return ProjectsResourceWithStreamingResponse(self) @@ -483,7 +483,7 @@ def with_raw_response(self) -> AsyncProjectsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncProjectsResourceWithRawResponse(self) @@ -492,7 +492,7 @@ def with_streaming_response(self) -> AsyncProjectsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncProjectsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/configurations/configurations.py b/src/gitpod/resources/runners/configurations/configurations.py index d5317a15..a9a8500f 100644 --- a/src/gitpod/resources/runners/configurations/configurations.py +++ b/src/gitpod/resources/runners/configurations/configurations.py @@ -83,7 +83,7 @@ def with_raw_response(self) -> ConfigurationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return ConfigurationsResourceWithRawResponse(self) @@ -92,7 +92,7 @@ def with_streaming_response(self) -> ConfigurationsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return ConfigurationsResourceWithStreamingResponse(self) @@ -213,7 +213,7 @@ def with_raw_response(self) -> AsyncConfigurationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncConfigurationsResourceWithRawResponse(self) @@ -222,7 +222,7 @@ def with_streaming_response(self) -> AsyncConfigurationsResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncConfigurationsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/configurations/environment_classes.py b/src/gitpod/resources/runners/configurations/environment_classes.py index eacd5403..8594abc9 100644 --- a/src/gitpod/resources/runners/configurations/environment_classes.py +++ b/src/gitpod/resources/runners/configurations/environment_classes.py @@ -43,7 +43,7 @@ def with_raw_response(self) -> EnvironmentClassesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return EnvironmentClassesResourceWithRawResponse(self) @@ -52,7 +52,7 @@ def with_streaming_response(self) -> EnvironmentClassesResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return EnvironmentClassesResourceWithStreamingResponse(self) @@ -306,7 +306,7 @@ def with_raw_response(self) -> AsyncEnvironmentClassesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEnvironmentClassesResourceWithRawResponse(self) @@ -315,7 +315,7 @@ def with_streaming_response(self) -> AsyncEnvironmentClassesResourceWithStreamin """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncEnvironmentClassesResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/configurations/host_authentication_tokens.py b/src/gitpod/resources/runners/configurations/host_authentication_tokens.py index 8321f34d..b12a7602 100644 --- a/src/gitpod/resources/runners/configurations/host_authentication_tokens.py +++ b/src/gitpod/resources/runners/configurations/host_authentication_tokens.py @@ -49,7 +49,7 @@ def with_raw_response(self) -> HostAuthenticationTokensResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return HostAuthenticationTokensResourceWithRawResponse(self) @@ -58,7 +58,7 @@ def with_streaming_response(self) -> HostAuthenticationTokensResourceWithStreami """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return HostAuthenticationTokensResourceWithStreamingResponse(self) @@ -531,7 +531,7 @@ def with_raw_response(self) -> AsyncHostAuthenticationTokensResourceWithRawRespo This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncHostAuthenticationTokensResourceWithRawResponse(self) @@ -540,7 +540,7 @@ def with_streaming_response(self) -> AsyncHostAuthenticationTokensResourceWithSt """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncHostAuthenticationTokensResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/configurations/schema.py b/src/gitpod/resources/runners/configurations/schema.py index c1f555cb..76f4a913 100644 --- a/src/gitpod/resources/runners/configurations/schema.py +++ b/src/gitpod/resources/runners/configurations/schema.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SchemaResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return SchemaResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SchemaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return SchemaResourceWithStreamingResponse(self) @@ -84,7 +84,7 @@ def with_raw_response(self) -> AsyncSchemaResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncSchemaResourceWithRawResponse(self) @@ -93,7 +93,7 @@ def with_streaming_response(self) -> AsyncSchemaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncSchemaResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/configurations/scm_integrations.py b/src/gitpod/resources/runners/configurations/scm_integrations.py index 51596137..a7be1d25 100644 --- a/src/gitpod/resources/runners/configurations/scm_integrations.py +++ b/src/gitpod/resources/runners/configurations/scm_integrations.py @@ -43,7 +43,7 @@ def with_raw_response(self) -> ScmIntegrationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return ScmIntegrationsResourceWithRawResponse(self) @@ -52,7 +52,7 @@ def with_streaming_response(self) -> ScmIntegrationsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return ScmIntegrationsResourceWithStreamingResponse(self) @@ -394,7 +394,7 @@ def with_raw_response(self) -> AsyncScmIntegrationsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncScmIntegrationsResourceWithRawResponse(self) @@ -403,7 +403,7 @@ def with_streaming_response(self) -> AsyncScmIntegrationsResourceWithStreamingRe """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncScmIntegrationsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/policies.py b/src/gitpod/resources/runners/policies.py index 4f703c1a..c303ce41 100644 --- a/src/gitpod/resources/runners/policies.py +++ b/src/gitpod/resources/runners/policies.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> PoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return PoliciesResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> PoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return PoliciesResourceWithStreamingResponse(self) @@ -247,7 +247,7 @@ def with_raw_response(self) -> AsyncPoliciesResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncPoliciesResourceWithRawResponse(self) @@ -256,7 +256,7 @@ def with_streaming_response(self) -> AsyncPoliciesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncPoliciesResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/runners/runners.py b/src/gitpod/resources/runners/runners.py index 85b041d4..e41444af 100644 --- a/src/gitpod/resources/runners/runners.py +++ b/src/gitpod/resources/runners/runners.py @@ -73,7 +73,7 @@ def with_raw_response(self) -> RunnersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return RunnersResourceWithRawResponse(self) @@ -82,7 +82,7 @@ def with_streaming_response(self) -> RunnersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return RunnersResourceWithStreamingResponse(self) @@ -507,7 +507,7 @@ def with_raw_response(self) -> AsyncRunnersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncRunnersResourceWithRawResponse(self) @@ -516,7 +516,7 @@ def with_streaming_response(self) -> AsyncRunnersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncRunnersResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/secrets.py b/src/gitpod/resources/secrets.py index 8740065f..bc2b8585 100644 --- a/src/gitpod/resources/secrets.py +++ b/src/gitpod/resources/secrets.py @@ -44,7 +44,7 @@ def with_raw_response(self) -> SecretsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return SecretsResourceWithRawResponse(self) @@ -53,7 +53,7 @@ def with_streaming_response(self) -> SecretsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return SecretsResourceWithStreamingResponse(self) @@ -336,7 +336,7 @@ def with_raw_response(self) -> AsyncSecretsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncSecretsResourceWithRawResponse(self) @@ -345,7 +345,7 @@ def with_streaming_response(self) -> AsyncSecretsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncSecretsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/users/pats.py b/src/gitpod/resources/users/pats.py index 17474a15..3165c3b2 100644 --- a/src/gitpod/resources/users/pats.py +++ b/src/gitpod/resources/users/pats.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> PatsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return PatsResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> PatsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return PatsResourceWithStreamingResponse(self) @@ -173,7 +173,7 @@ def with_raw_response(self) -> AsyncPatsResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncPatsResourceWithRawResponse(self) @@ -182,7 +182,7 @@ def with_streaming_response(self) -> AsyncPatsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncPatsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/users/users.py b/src/gitpod/resources/users/users.py index e79311c0..e6f29697 100644 --- a/src/gitpod/resources/users/users.py +++ b/src/gitpod/resources/users/users.py @@ -43,7 +43,7 @@ def with_raw_response(self) -> UsersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return UsersResourceWithRawResponse(self) @@ -52,7 +52,7 @@ def with_streaming_response(self) -> UsersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return UsersResourceWithStreamingResponse(self) @@ -139,7 +139,7 @@ def with_raw_response(self) -> AsyncUsersResourceWithRawResponse: This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncUsersResourceWithRawResponse(self) @@ -148,7 +148,7 @@ def with_streaming_response(self) -> AsyncUsersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/gitpod-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response """ return AsyncUsersResourceWithStreamingResponse(self)