Skip to content

Commit 6d16e0c

Browse files
chore: go live (#14)
1 parent a6745ed commit 6d16e0c

31 files changed

+115
-115
lines changed

Diff for: .github/workflows/publish-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to PyPI in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/gitpod-io/flex-sdk-python/actions/workflows/publish-pypi.yml
3+
# You can run this workflow by navigating to https://www.github.com/gitpod-io/gitpod-sdk-python/actions/workflows/publish-pypi.yml
44
name: Publish PyPI
55
on:
66
workflow_dispatch:

Diff for: .github/workflows/release-doctor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
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')
12+
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')
1313

1414
steps:
1515
- uses: actions/checkout@v4

Diff for: CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ If you’d like to use the repository from source, you can either install from g
6363
To install via git:
6464

6565
```sh
66-
$ pip install git+ssh://[email protected]/gitpod-io/flex-sdk-python.git
66+
$ pip install git+ssh://[email protected]/gitpod-io/gitpod-sdk-python.git
6767
```
6868

6969
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
121121

122122
### Publish with a GitHub workflow
123123

124-
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.
124+
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.
125125

126126
### Publish manually
127127

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The REST API documentation can be found on [docs.gitpod.com](https://docs.gitpod
1616

1717
```sh
1818
# install from the production repo
19-
pip install git+ssh://[email protected]/gitpod-io/flex-sdk-python.git
19+
pip install git+ssh://[email protected]/gitpod-io/gitpod-sdk-python.git
2020
```
2121

2222
> [!NOTE]
@@ -269,9 +269,9 @@ runner = response.parse() # get the object that `runners.create()` would have r
269269
print(runner.access_token)
270270
```
271271

272-
These methods return an [`APIResponse`](https://github.com/gitpod-io/flex-sdk-python/tree/main/src/gitpod/_response.py) object.
272+
These methods return an [`APIResponse`](https://github.com/gitpod-io/gitpod-sdk-python/tree/main/src/gitpod/_response.py) object.
273273

274-
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.
274+
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.
275275

276276
#### `.with_streaming_response`
277277

@@ -375,7 +375,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
375375

376376
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
377377

378-
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.
378+
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.
379379

380380
### Determining the installed version
381381

Diff for: pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ classifiers = [
3434
]
3535

3636
[project.urls]
37-
Homepage = "https://github.com/gitpod-io/flex-sdk-python"
38-
Repository = "https://github.com/gitpod-io/flex-sdk-python"
37+
Homepage = "https://github.com/gitpod-io/gitpod-sdk-python"
38+
Repository = "https://github.com/gitpod-io/gitpod-sdk-python"
3939

4040

4141

@@ -122,7 +122,7 @@ path = "README.md"
122122
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
123123
# replace relative links with absolute links
124124
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
125-
replacement = '[\1](https://github.com/gitpod-io/flex-sdk-python/tree/main/\g<2>)'
125+
replacement = '[\1](https://github.com/gitpod-io/gitpod-sdk-python/tree/main/\g<2>)'
126126

127127
[tool.pytest.ini_options]
128128
testpaths = ["tests"]

Diff for: src/gitpod/resources/accounts.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def with_raw_response(self) -> AccountsResourceWithRawResponse:
4141
This property can be used as a prefix for any HTTP method call to return
4242
the raw response object instead of the parsed content.
4343
44-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
44+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
4545
"""
4646
return AccountsResourceWithRawResponse(self)
4747

@@ -50,7 +50,7 @@ def with_streaming_response(self) -> AccountsResourceWithStreamingResponse:
5050
"""
5151
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
5252
53-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
53+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
5454
"""
5555
return AccountsResourceWithStreamingResponse(self)
5656

@@ -229,7 +229,7 @@ def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse:
229229
This property can be used as a prefix for any HTTP method call to return
230230
the raw response object instead of the parsed content.
231231
232-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
232+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
233233
"""
234234
return AsyncAccountsResourceWithRawResponse(self)
235235

@@ -238,7 +238,7 @@ def with_streaming_response(self) -> AsyncAccountsResourceWithStreamingResponse:
238238
"""
239239
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
240240
241-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
241+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
242242
"""
243243
return AsyncAccountsResourceWithStreamingResponse(self)
244244

Diff for: src/gitpod/resources/editors.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def with_raw_response(self) -> EditorsResourceWithRawResponse:
3434
This property can be used as a prefix for any HTTP method call to return
3535
the raw response object instead of the parsed content.
3636
37-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
37+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
3838
"""
3939
return EditorsResourceWithRawResponse(self)
4040

@@ -43,7 +43,7 @@ def with_streaming_response(self) -> EditorsResourceWithStreamingResponse:
4343
"""
4444
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4545
46-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
46+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
4747
"""
4848
return EditorsResourceWithStreamingResponse(self)
4949

@@ -184,7 +184,7 @@ def with_raw_response(self) -> AsyncEditorsResourceWithRawResponse:
184184
This property can be used as a prefix for any HTTP method call to return
185185
the raw response object instead of the parsed content.
186186
187-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
187+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
188188
"""
189189
return AsyncEditorsResourceWithRawResponse(self)
190190

@@ -193,7 +193,7 @@ def with_streaming_response(self) -> AsyncEditorsResourceWithStreamingResponse:
193193
"""
194194
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
195195
196-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
196+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
197197
"""
198198
return AsyncEditorsResourceWithStreamingResponse(self)
199199

Diff for: src/gitpod/resources/environments/automations/automations.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def with_raw_response(self) -> AutomationsResourceWithRawResponse:
5656
This property can be used as a prefix for any HTTP method call to return
5757
the raw response object instead of the parsed content.
5858
59-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
59+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
6060
"""
6161
return AutomationsResourceWithRawResponse(self)
6262

@@ -65,7 +65,7 @@ def with_streaming_response(self) -> AutomationsResourceWithStreamingResponse:
6565
"""
6666
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
6767
68-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
68+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
6969
"""
7070
return AutomationsResourceWithStreamingResponse(self)
7171

@@ -129,7 +129,7 @@ def with_raw_response(self) -> AsyncAutomationsResourceWithRawResponse:
129129
This property can be used as a prefix for any HTTP method call to return
130130
the raw response object instead of the parsed content.
131131
132-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
132+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
133133
"""
134134
return AsyncAutomationsResourceWithRawResponse(self)
135135

@@ -138,7 +138,7 @@ def with_streaming_response(self) -> AsyncAutomationsResourceWithStreamingRespon
138138
"""
139139
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
140140
141-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
141+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
142142
"""
143143
return AsyncAutomationsResourceWithStreamingResponse(self)
144144

Diff for: src/gitpod/resources/environments/automations/services.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def with_raw_response(self) -> ServicesResourceWithRawResponse:
4444
This property can be used as a prefix for any HTTP method call to return
4545
the raw response object instead of the parsed content.
4646
47-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
47+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
4848
"""
4949
return ServicesResourceWithRawResponse(self)
5050

@@ -53,7 +53,7 @@ def with_streaming_response(self) -> ServicesResourceWithStreamingResponse:
5353
"""
5454
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
5555
56-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
56+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
5757
"""
5858
return ServicesResourceWithStreamingResponse(self)
5959

@@ -357,7 +357,7 @@ def with_raw_response(self) -> AsyncServicesResourceWithRawResponse:
357357
This property can be used as a prefix for any HTTP method call to return
358358
the raw response object instead of the parsed content.
359359
360-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
360+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
361361
"""
362362
return AsyncServicesResourceWithRawResponse(self)
363363

@@ -366,7 +366,7 @@ def with_streaming_response(self) -> AsyncServicesResourceWithStreamingResponse:
366366
"""
367367
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
368368
369-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
369+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
370370
"""
371371
return AsyncServicesResourceWithStreamingResponse(self)
372372

Diff for: src/gitpod/resources/environments/automations/tasks/executions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def with_raw_response(self) -> ExecutionsResourceWithRawResponse:
3737
This property can be used as a prefix for any HTTP method call to return
3838
the raw response object instead of the parsed content.
3939
40-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
40+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
4141
"""
4242
return ExecutionsResourceWithRawResponse(self)
4343

@@ -46,7 +46,7 @@ def with_streaming_response(self) -> ExecutionsResourceWithStreamingResponse:
4646
"""
4747
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4848
49-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
49+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
5050
"""
5151
return ExecutionsResourceWithStreamingResponse(self)
5252

@@ -179,7 +179,7 @@ def with_raw_response(self) -> AsyncExecutionsResourceWithRawResponse:
179179
This property can be used as a prefix for any HTTP method call to return
180180
the raw response object instead of the parsed content.
181181
182-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
182+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
183183
"""
184184
return AsyncExecutionsResourceWithRawResponse(self)
185185

@@ -188,7 +188,7 @@ def with_streaming_response(self) -> AsyncExecutionsResourceWithStreamingRespons
188188
"""
189189
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
190190
191-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
191+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
192192
"""
193193
return AsyncExecutionsResourceWithStreamingResponse(self)
194194

Diff for: src/gitpod/resources/environments/automations/tasks/tasks.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def with_raw_response(self) -> TasksResourceWithRawResponse:
5858
This property can be used as a prefix for any HTTP method call to return
5959
the raw response object instead of the parsed content.
6060
61-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
61+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
6262
"""
6363
return TasksResourceWithRawResponse(self)
6464

@@ -67,7 +67,7 @@ def with_streaming_response(self) -> TasksResourceWithStreamingResponse:
6767
"""
6868
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
6969
70-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
70+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
7171
"""
7272
return TasksResourceWithStreamingResponse(self)
7373

@@ -326,7 +326,7 @@ def with_raw_response(self) -> AsyncTasksResourceWithRawResponse:
326326
This property can be used as a prefix for any HTTP method call to return
327327
the raw response object instead of the parsed content.
328328
329-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
329+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
330330
"""
331331
return AsyncTasksResourceWithRawResponse(self)
332332

@@ -335,7 +335,7 @@ def with_streaming_response(self) -> AsyncTasksResourceWithStreamingResponse:
335335
"""
336336
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
337337
338-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
338+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
339339
"""
340340
return AsyncTasksResourceWithStreamingResponse(self)
341341

Diff for: src/gitpod/resources/environments/classes.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def with_raw_response(self) -> ClassesResourceWithRawResponse:
2929
This property can be used as a prefix for any HTTP method call to return
3030
the raw response object instead of the parsed content.
3131
32-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
32+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
3333
"""
3434
return ClassesResourceWithRawResponse(self)
3535

@@ -38,7 +38,7 @@ def with_streaming_response(self) -> ClassesResourceWithStreamingResponse:
3838
"""
3939
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4040
41-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
41+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
4242
"""
4343
return ClassesResourceWithStreamingResponse(self)
4444

@@ -107,7 +107,7 @@ def with_raw_response(self) -> AsyncClassesResourceWithRawResponse:
107107
This property can be used as a prefix for any HTTP method call to return
108108
the raw response object instead of the parsed content.
109109
110-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#accessing-raw-response-data-eg-headers
110+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#accessing-raw-response-data-eg-headers
111111
"""
112112
return AsyncClassesResourceWithRawResponse(self)
113113

@@ -116,7 +116,7 @@ def with_streaming_response(self) -> AsyncClassesResourceWithStreamingResponse:
116116
"""
117117
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
118118
119-
For more information, see https://www.github.com/gitpod-io/flex-sdk-python#with_streaming_response
119+
For more information, see https://www.github.com/gitpod-io/gitpod-sdk-python#with_streaming_response
120120
"""
121121
return AsyncClassesResourceWithStreamingResponse(self)
122122

0 commit comments

Comments
 (0)