Skip to content

Commit 5d59373

Browse files
docs(raw responses): fix duplicate the
1 parent 26b774b commit 5d59373

23 files changed

+46
-46
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AutomationsFilesResource(SyncAPIResource):
3232
@cached_property
3333
def with_raw_response(self) -> AutomationsFilesResourceWithRawResponse:
3434
"""
35-
This property can be used as a prefix for any HTTP method call to return the
35+
This property can be used as a prefix for any HTTP method call to return
3636
the raw response object instead of the parsed content.
3737
3838
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -112,7 +112,7 @@ class AsyncAutomationsFilesResource(AsyncAPIResource):
112112
@cached_property
113113
def with_raw_response(self) -> AsyncAutomationsFilesResourceWithRawResponse:
114114
"""
115-
This property can be used as a prefix for any HTTP method call to return the
115+
This property can be used as a prefix for any HTTP method call to return
116116
the raw response object instead of the parsed content.
117117
118118
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def task_executions(self) -> TaskExecutionsResource:
3636
@cached_property
3737
def with_raw_response(self) -> EnvironmentAutomationsResourceWithRawResponse:
3838
"""
39-
This property can be used as a prefix for any HTTP method call to return the
39+
This property can be used as a prefix for any HTTP method call to return
4040
the raw response object instead of the parsed content.
4141
4242
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -65,7 +65,7 @@ def task_executions(self) -> AsyncTaskExecutionsResource:
6565
@cached_property
6666
def with_raw_response(self) -> AsyncEnvironmentAutomationsResourceWithRawResponse:
6767
"""
68-
This property can be used as a prefix for any HTTP method call to return the
68+
This property can be used as a prefix for any HTTP method call to return
6969
the raw response object instead of the parsed content.
7070
7171
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/environment_automations/task_executions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TaskExecutionsResource(SyncAPIResource):
4242
@cached_property
4343
def with_raw_response(self) -> TaskExecutionsResourceWithRawResponse:
4444
"""
45-
This property can be used as a prefix for any HTTP method call to return the
45+
This property can be used as a prefix for any HTTP method call to return
4646
the raw response object instead of the parsed content.
4747
4848
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -392,7 +392,7 @@ class AsyncTaskExecutionsResource(AsyncAPIResource):
392392
@cached_property
393393
def with_raw_response(self) -> AsyncTaskExecutionsResourceWithRawResponse:
394394
"""
395-
This property can be used as a prefix for any HTTP method call to return the
395+
This property can be used as a prefix for any HTTP method call to return
396396
the raw response object instead of the parsed content.
397397
398398
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/environment_automations/tasks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TasksResource(SyncAPIResource):
4141
@cached_property
4242
def with_raw_response(self) -> TasksResourceWithRawResponse:
4343
"""
44-
This property can be used as a prefix for any HTTP method call to return the
44+
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
4747
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -339,7 +339,7 @@ class AsyncTasksResource(AsyncAPIResource):
339339
@cached_property
340340
def with_raw_response(self) -> AsyncTasksResourceWithRawResponse:
341341
"""
342-
This property can be used as a prefix for any HTTP method call to return the
342+
This property can be used as a prefix for any HTTP method call to return
343343
the raw response object instead of the parsed content.
344344
345345
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class EnvironmentClassesResource(SyncAPIResource):
3333
@cached_property
3434
def with_raw_response(self) -> EnvironmentClassesResourceWithRawResponse:
3535
"""
36-
This property can be used as a prefix for any HTTP method call to return the
36+
This property can be used as a prefix for any HTTP method call to return
3737
the raw response object instead of the parsed content.
3838
3939
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -112,7 +112,7 @@ class AsyncEnvironmentClassesResource(AsyncAPIResource):
112112
@cached_property
113113
def with_raw_response(self) -> AsyncEnvironmentClassesResourceWithRawResponse:
114114
"""
115-
This property can be used as a prefix for any HTTP method call to return the
115+
This property can be used as a prefix for any HTTP method call to return
116116
the raw response object instead of the parsed content.
117117
118118
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class EnvironmentsResource(SyncAPIResource):
4141
@cached_property
4242
def with_raw_response(self) -> EnvironmentsResourceWithRawResponse:
4343
"""
44-
This property can be used as a prefix for any HTTP method call to return the
44+
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
4747
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -335,7 +335,7 @@ class AsyncEnvironmentsResource(AsyncAPIResource):
335335
@cached_property
336336
def with_raw_response(self) -> AsyncEnvironmentsResourceWithRawResponse:
337337
"""
338-
This property can be used as a prefix for any HTTP method call to return the
338+
This property can be used as a prefix for any HTTP method call to return
339339
the raw response object instead of the parsed content.
340340
341341
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/organizations/invite/invite.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def summary(self) -> SummaryResource:
4545
@cached_property
4646
def with_raw_response(self) -> InviteResourceWithRawResponse:
4747
"""
48-
This property can be used as a prefix for any HTTP method call to return the
48+
This property can be used as a prefix for any HTTP method call to return
4949
the raw response object instead of the parsed content.
5050
5151
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -168,7 +168,7 @@ def summary(self) -> AsyncSummaryResource:
168168
@cached_property
169169
def with_raw_response(self) -> AsyncInviteResourceWithRawResponse:
170170
"""
171-
This property can be used as a prefix for any HTTP method call to return the
171+
This property can be used as a prefix for any HTTP method call to return
172172
the raw response object instead of the parsed content.
173173
174174
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/organizations/invite/summary.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class SummaryResource(SyncAPIResource):
3232
@cached_property
3333
def with_raw_response(self) -> SummaryResourceWithRawResponse:
3434
"""
35-
This property can be used as a prefix for any HTTP method call to return the
35+
This property can be used as a prefix for any HTTP method call to return
3636
the raw response object instead of the parsed content.
3737
3838
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -101,7 +101,7 @@ class AsyncSummaryResource(AsyncAPIResource):
101101
@cached_property
102102
def with_raw_response(self) -> AsyncSummaryResourceWithRawResponse:
103103
"""
104-
This property can be used as a prefix for any HTTP method call to return the
104+
This property can be used as a prefix for any HTTP method call to return
105105
the raw response object instead of the parsed content.
106106
107107
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/organizations/members.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class MembersResource(SyncAPIResource):
3232
@cached_property
3333
def with_raw_response(self) -> MembersResourceWithRawResponse:
3434
"""
35-
This property can be used as a prefix for any HTTP method call to return the
35+
This property can be used as a prefix for any HTTP method call to return
3636
the raw response object instead of the parsed content.
3737
3838
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -111,7 +111,7 @@ class AsyncMembersResource(AsyncAPIResource):
111111
@cached_property
112112
def with_raw_response(self) -> AsyncMembersResourceWithRawResponse:
113113
"""
114-
This property can be used as a prefix for any HTTP method call to return the
114+
This property can be used as a prefix for any HTTP method call to return
115115
the raw response object instead of the parsed content.
116116
117117
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def invite(self) -> InviteResource:
5555
@cached_property
5656
def with_raw_response(self) -> OrganizationsResourceWithRawResponse:
5757
"""
58-
This property can be used as a prefix for any HTTP method call to return the
58+
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
6161
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -188,7 +188,7 @@ def invite(self) -> AsyncInviteResource:
188188
@cached_property
189189
def with_raw_response(self) -> AsyncOrganizationsResourceWithRawResponse:
190190
"""
191-
This property can be used as a prefix for any HTTP method call to return the
191+
This property can be used as a prefix for any HTTP method call to return
192192
the raw response object instead of the parsed content.
193193
194194
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class PersonalAccessTokensResource(SyncAPIResource):
3232
@cached_property
3333
def with_raw_response(self) -> PersonalAccessTokensResourceWithRawResponse:
3434
"""
35-
This property can be used as a prefix for any HTTP method call to return the
35+
This property can be used as a prefix for any HTTP method call to return
3636
the raw response object instead of the parsed content.
3737
3838
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -157,7 +157,7 @@ class AsyncPersonalAccessTokensResource(AsyncAPIResource):
157157
@cached_property
158158
def with_raw_response(self) -> AsyncPersonalAccessTokensResourceWithRawResponse:
159159
"""
160-
This property can be used as a prefix for any HTTP method call to return the
160+
This property can be used as a prefix for any HTTP method call to return
161161
the raw response object instead of the parsed content.
162162
163163
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ProjectsResource(SyncAPIResource):
3939
@cached_property
4040
def with_raw_response(self) -> ProjectsResourceWithRawResponse:
4141
"""
42-
This property can be used as a prefix for any HTTP method call to return the
42+
This property can be used as a prefix for any HTTP method call to return
4343
the raw response object instead of the parsed content.
4444
4545
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -247,7 +247,7 @@ class AsyncProjectsResource(AsyncAPIResource):
247247
@cached_property
248248
def with_raw_response(self) -> AsyncProjectsResourceWithRawResponse:
249249
"""
250-
This property can be used as a prefix for any HTTP method call to return the
250+
This property can be used as a prefix for any HTTP method call to return
251251
the raw response object instead of the parsed content.
252252
253253
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/runner_configurations/configuration_schema.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ConfigurationSchemaResource(SyncAPIResource):
3333
@cached_property
3434
def with_raw_response(self) -> ConfigurationSchemaResourceWithRawResponse:
3535
"""
36-
This property can be used as a prefix for any HTTP method call to return the
36+
This property can be used as a prefix for any HTTP method call to return
3737
the raw response object instead of the parsed content.
3838
3939
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -166,7 +166,7 @@ class AsyncConfigurationSchemaResource(AsyncAPIResource):
166166
@cached_property
167167
def with_raw_response(self) -> AsyncConfigurationSchemaResourceWithRawResponse:
168168
"""
169-
This property can be used as a prefix for any HTTP method call to return the
169+
This property can be used as a prefix for any HTTP method call to return
170170
the raw response object instead of the parsed content.
171171
172172
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/runner_configurations/environment_classes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class EnvironmentClassesResource(SyncAPIResource):
3333
@cached_property
3434
def with_raw_response(self) -> EnvironmentClassesResourceWithRawResponse:
3535
"""
36-
This property can be used as a prefix for any HTTP method call to return the
36+
This property can be used as a prefix for any HTTP method call to return
3737
the raw response object instead of the parsed content.
3838
3939
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -158,7 +158,7 @@ class AsyncEnvironmentClassesResource(AsyncAPIResource):
158158
@cached_property
159159
def with_raw_response(self) -> AsyncEnvironmentClassesResourceWithRawResponse:
160160
"""
161-
This property can be used as a prefix for any HTTP method call to return the
161+
This property can be used as a prefix for any HTTP method call to return
162162
the raw response object instead of the parsed content.
163163
164164
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/runner_configurations/host_authentication_tokens.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class HostAuthenticationTokensResource(SyncAPIResource):
4444
@cached_property
4545
def with_raw_response(self) -> HostAuthenticationTokensResourceWithRawResponse:
4646
"""
47-
This property can be used as a prefix for any HTTP method call to return the
47+
This property can be used as a prefix for any HTTP method call to return
4848
the raw response object instead of the parsed content.
4949
5050
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -327,7 +327,7 @@ class AsyncHostAuthenticationTokensResource(AsyncAPIResource):
327327
@cached_property
328328
def with_raw_response(self) -> AsyncHostAuthenticationTokensResourceWithRawResponse:
329329
"""
330-
This property can be used as a prefix for any HTTP method call to return the
330+
This property can be used as a prefix for any HTTP method call to return
331331
the raw response object instead of the parsed content.
332332
333333
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def environment_classes(self) -> EnvironmentClassesResource:
8080
@cached_property
8181
def with_raw_response(self) -> RunnerConfigurationsResourceWithRawResponse:
8282
"""
83-
This property can be used as a prefix for any HTTP method call to return the
83+
This property can be used as a prefix for any HTTP method call to return
8484
the raw response object instead of the parsed content.
8585
8686
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -166,7 +166,7 @@ def environment_classes(self) -> AsyncEnvironmentClassesResource:
166166
@cached_property
167167
def with_raw_response(self) -> AsyncRunnerConfigurationsResourceWithRawResponse:
168168
"""
169-
This property can be used as a prefix for any HTTP method call to return the
169+
This property can be used as a prefix for any HTTP method call to return
170170
the raw response object instead of the parsed content.
171171
172172
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

Diff for: src/gitpod/resources/runner_configurations/scm_integration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ScmIntegrationResource(SyncAPIResource):
3232
@cached_property
3333
def with_raw_response(self) -> ScmIntegrationResourceWithRawResponse:
3434
"""
35-
This property can be used as a prefix for any HTTP method call to return the
35+
This property can be used as a prefix for any HTTP method call to return
3636
the raw response object instead of the parsed content.
3737
3838
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -100,7 +100,7 @@ class AsyncScmIntegrationResource(AsyncAPIResource):
100100
@cached_property
101101
def with_raw_response(self) -> AsyncScmIntegrationResourceWithRawResponse:
102102
"""
103-
This property can be used as a prefix for any HTTP method call to return the
103+
This property can be used as a prefix for any HTTP method call to return
104104
the raw response object instead of the parsed content.
105105
106106
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class EnvironmentsResource(SyncAPIResource):
3838
@cached_property
3939
def with_raw_response(self) -> EnvironmentsResourceWithRawResponse:
4040
"""
41-
This property can be used as a prefix for any HTTP method call to return the
41+
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
4444
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers
@@ -243,7 +243,7 @@ class AsyncEnvironmentsResource(AsyncAPIResource):
243243
@cached_property
244244
def with_raw_response(self) -> AsyncEnvironmentsResourceWithRawResponse:
245245
"""
246-
This property can be used as a prefix for any HTTP method call to return the
246+
This property can be used as a prefix for any HTTP method call to return
247247
the raw response object instead of the parsed content.
248248
249249
For more information, see https://www.github.com/stainless-sdks/gitpod-python#accessing-raw-response-data-eg-headers

0 commit comments

Comments
 (0)