From d1faead3e54fcad84bc4c7806284938937cbaff0 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 08:29:33 +0000 Subject: [PATCH] chore: go live --- .github/workflows/publish-pypi.yml | 2 +- .github/workflows/release-doctor.yml | 2 +- CONTRIBUTING.md | 4 ++-- README.md | 8 ++++---- pyproject.toml | 6 +++--- src/gitpod/resources/accounts.py | 8 ++++---- src/gitpod/resources/editors.py | 8 ++++---- .../resources/environments/automations/automations.py | 8 ++++---- src/gitpod/resources/environments/automations/services.py | 8 ++++---- .../environments/automations/tasks/executions.py | 8 ++++---- .../resources/environments/automations/tasks/tasks.py | 8 ++++---- src/gitpod/resources/environments/classes.py | 8 ++++---- src/gitpod/resources/environments/environments.py | 8 ++++---- src/gitpod/resources/events.py | 8 ++++---- src/gitpod/resources/groups.py | 8 ++++---- src/gitpod/resources/identity.py | 8 ++++---- src/gitpod/resources/organizations/invites.py | 8 ++++---- src/gitpod/resources/organizations/organizations.py | 8 ++++---- src/gitpod/resources/organizations/sso_configurations.py | 8 ++++---- src/gitpod/resources/projects/policies.py | 8 ++++---- src/gitpod/resources/projects/projects.py | 8 ++++---- .../resources/runners/configurations/configurations.py | 8 ++++---- .../runners/configurations/environment_classes.py | 8 ++++---- .../runners/configurations/host_authentication_tokens.py | 8 ++++---- src/gitpod/resources/runners/configurations/schema.py | 8 ++++---- .../resources/runners/configurations/scm_integrations.py | 8 ++++---- src/gitpod/resources/runners/policies.py | 8 ++++---- src/gitpod/resources/runners/runners.py | 8 ++++---- src/gitpod/resources/secrets.py | 8 ++++---- src/gitpod/resources/users/pats.py | 8 ++++---- src/gitpod/resources/users/users.py | 8 ++++---- 31 files changed, 115 insertions(+), 115 deletions(-) diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 9ac9412..df62ae1 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -1,6 +1,6 @@ # 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 +# You can run this workflow by navigating to https://www.github.com/gitpod-io/gitpod-sdk-python/actions/workflows/publish-pypi.yml name: Publish PyPI on: workflow_dispatch: diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 7def838..f7fa281 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -9,7 +9,7 @@ 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') + if: github.repository == 'gitpod-io/gitpod-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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bf30b35..63af707 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/gitpod-io/flex-sdk-python.git +$ pip install git+ssh://git@github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-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/gitpod-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 d4f6ef5..d093a21 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The REST API documentation can be found on [docs.gitpod.com](https://docs.gitpod ```sh # install from the production repo -pip install git+ssh://git@github.com/gitpod-io/flex-sdk-python.git +pip install git+ssh://git@github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python/tree/main/src/gitpod/_response.py) object. +These methods return an [`APIResponse`](https://github.com/gitpod-io/gitpod-sdk-python/tree/main/src/gitpod/_response.py) object. -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. +The async client returns an [`AsyncAPIResponse`](https://github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/gitpod-io/gitpod-sdk-python/issues) with questions, bugs, or suggestions. ### Determining the installed version diff --git a/pyproject.toml b/pyproject.toml index d6cb8e7..90e98ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/gitpod-io/flex-sdk-python" -Repository = "https://github.com/gitpod-io/flex-sdk-python" +Homepage = "https://github.com/gitpod-io/gitpod-sdk-python" +Repository = "https://github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/gitpod-io/gitpod-sdk-python/tree/main/\g<2>)' [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/src/gitpod/resources/accounts.py b/src/gitpod/resources/accounts.py index e344dc9..1712f20 100644 --- a/src/gitpod/resources/accounts.py +++ b/src/gitpod/resources/accounts.py @@ -41,7 +41,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AccountsResourceWithRawResponse(self) @@ -50,7 +50,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AccountsResourceWithStreamingResponse(self) @@ -229,7 +229,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncAccountsResourceWithRawResponse(self) @@ -238,7 +238,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AsyncAccountsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/editors.py b/src/gitpod/resources/editors.py index 17733f6..1a910b7 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 f9c6d9b..16cacc4 100644 --- a/src/gitpod/resources/environments/automations/automations.py +++ b/src/gitpod/resources/environments/automations/automations.py @@ -56,7 +56,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AutomationsResourceWithRawResponse(self) @@ -65,7 +65,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AutomationsResourceWithStreamingResponse(self) @@ -129,7 +129,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncAutomationsResourceWithRawResponse(self) @@ -138,7 +138,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 adea3c2..9fe9716 100644 --- a/src/gitpod/resources/environments/automations/services.py +++ b/src/gitpod/resources/environments/automations/services.py @@ -44,7 +44,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return ServicesResourceWithRawResponse(self) @@ -53,7 +53,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return ServicesResourceWithStreamingResponse(self) @@ -357,7 +357,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncServicesResourceWithRawResponse(self) @@ -366,7 +366,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 7b831a7..a2a887e 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 2687f1b..1e0b197 100644 --- a/src/gitpod/resources/environments/automations/tasks/tasks.py +++ b/src/gitpod/resources/environments/automations/tasks/tasks.py @@ -58,7 +58,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return TasksResourceWithRawResponse(self) @@ -67,7 +67,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return TasksResourceWithStreamingResponse(self) @@ -326,7 +326,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncTasksResourceWithRawResponse(self) @@ -335,7 +335,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 a68c661..1a64f8a 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 13c6fec..d535188 100644 --- a/src/gitpod/resources/environments/environments.py +++ b/src/gitpod/resources/environments/environments.py @@ -75,7 +75,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return EnvironmentsResourceWithRawResponse(self) @@ -84,7 +84,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return EnvironmentsResourceWithStreamingResponse(self) @@ -566,7 +566,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEnvironmentsResourceWithRawResponse(self) @@ -575,7 +575,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AsyncEnvironmentsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/events.py b/src/gitpod/resources/events.py index b1539f7..8a7ebdd 100644 --- a/src/gitpod/resources/events.py +++ b/src/gitpod/resources/events.py @@ -34,7 +34,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return EventsResourceWithRawResponse(self) @@ -43,7 +43,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return EventsResourceWithStreamingResponse(self) @@ -159,7 +159,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEventsResourceWithRawResponse(self) @@ -168,7 +168,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AsyncEventsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/groups.py b/src/gitpod/resources/groups.py index 9b6f47b..233e4b0 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AsyncGroupsResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/identity.py b/src/gitpod/resources/identity.py index f5b4f0d..6635c4b 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 8475f63..131a39b 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 6532613..d10cb52 100644 --- a/src/gitpod/resources/organizations/organizations.py +++ b/src/gitpod/resources/organizations/organizations.py @@ -77,7 +77,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return OrganizationsResourceWithRawResponse(self) @@ -86,7 +86,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return OrganizationsResourceWithStreamingResponse(self) @@ -504,7 +504,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncOrganizationsResourceWithRawResponse(self) @@ -513,7 +513,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 62a4197..ab984fe 100644 --- a/src/gitpod/resources/organizations/sso_configurations.py +++ b/src/gitpod/resources/organizations/sso_configurations.py @@ -44,7 +44,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return SSOConfigurationsResourceWithRawResponse(self) @@ -53,7 +53,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return SSOConfigurationsResourceWithStreamingResponse(self) @@ -306,7 +306,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncSSOConfigurationsResourceWithRawResponse(self) @@ -315,7 +315,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 b856a2d..ffac162 100644 --- a/src/gitpod/resources/projects/policies.py +++ b/src/gitpod/resources/projects/policies.py @@ -41,7 +41,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return PoliciesResourceWithRawResponse(self) @@ -50,7 +50,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return PoliciesResourceWithStreamingResponse(self) @@ -252,7 +252,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncPoliciesResourceWithRawResponse(self) @@ -261,7 +261,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 0857162..b3cd146 100644 --- a/src/gitpod/resources/projects/projects.py +++ b/src/gitpod/resources/projects/projects.py @@ -59,7 +59,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return ProjectsResourceWithRawResponse(self) @@ -68,7 +68,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return ProjectsResourceWithStreamingResponse(self) @@ -367,7 +367,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncProjectsResourceWithRawResponse(self) @@ -376,7 +376,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 68b2e38..135c788 100644 --- a/src/gitpod/resources/runners/configurations/configurations.py +++ b/src/gitpod/resources/runners/configurations/configurations.py @@ -80,7 +80,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return ConfigurationsResourceWithRawResponse(self) @@ -89,7 +89,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return ConfigurationsResourceWithStreamingResponse(self) @@ -160,7 +160,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncConfigurationsResourceWithRawResponse(self) @@ -169,7 +169,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 5c41695..50e5f95 100644 --- a/src/gitpod/resources/runners/configurations/environment_classes.py +++ b/src/gitpod/resources/runners/configurations/environment_classes.py @@ -42,7 +42,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return EnvironmentClassesResourceWithRawResponse(self) @@ -51,7 +51,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return EnvironmentClassesResourceWithStreamingResponse(self) @@ -240,7 +240,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncEnvironmentClassesResourceWithRawResponse(self) @@ -249,7 +249,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 74bb251..4f49af8 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return HostAuthenticationTokensResourceWithStreamingResponse(self) @@ -461,7 +461,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncHostAuthenticationTokensResourceWithRawResponse(self) @@ -470,7 +470,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 76f4a91..4d3f3e5 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 36a4bbc..97aa260 100644 --- a/src/gitpod/resources/runners/configurations/scm_integrations.py +++ b/src/gitpod/resources/runners/configurations/scm_integrations.py @@ -42,7 +42,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return ScmIntegrationsResourceWithRawResponse(self) @@ -51,7 +51,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return ScmIntegrationsResourceWithStreamingResponse(self) @@ -298,7 +298,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncScmIntegrationsResourceWithRawResponse(self) @@ -307,7 +307,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 28bd078..09de7ed 100644 --- a/src/gitpod/resources/runners/policies.py +++ b/src/gitpod/resources/runners/policies.py @@ -41,7 +41,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return PoliciesResourceWithRawResponse(self) @@ -50,7 +50,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return PoliciesResourceWithStreamingResponse(self) @@ -252,7 +252,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncPoliciesResourceWithRawResponse(self) @@ -261,7 +261,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 1757c10..66fc4e7 100644 --- a/src/gitpod/resources/runners/runners.py +++ b/src/gitpod/resources/runners/runners.py @@ -77,7 +77,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return RunnersResourceWithRawResponse(self) @@ -86,7 +86,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return RunnersResourceWithStreamingResponse(self) @@ -467,7 +467,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncRunnersResourceWithRawResponse(self) @@ -476,7 +476,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AsyncRunnersResourceWithStreamingResponse(self) diff --git a/src/gitpod/resources/secrets.py b/src/gitpod/resources/secrets.py index c335a99..374b4c8 100644 --- a/src/gitpod/resources/secrets.py +++ b/src/gitpod/resources/secrets.py @@ -40,7 +40,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return SecretsResourceWithRawResponse(self) @@ -49,7 +49,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return SecretsResourceWithStreamingResponse(self) @@ -281,7 +281,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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers """ return AsyncSecretsResourceWithRawResponse(self) @@ -290,7 +290,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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 1632e33..a276f0e 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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 f9294b7..03d30ab 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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/gitpod-io/gitpod-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/gitpod-io/flex-sdk-python#with_streaming_response + For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response """ return AsyncUsersResourceWithStreamingResponse(self)