Skip to content

Commit 552d759

Browse files
feat(api): gitpod -> ona
1 parent b55d442 commit 552d759

35 files changed

+126
-121
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 119
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-ca9a49ac7fbb63f55611fd7cd48a22a3ff8b38a797125c8513e891d9b7345550.yml
33
openapi_spec_hash: fd6ffbdfaefcc555e61ca1c565e05214
4-
config_hash: bb9d0a0bdadbee0985dd7c1e4f0e9e8a
4+
config_hash: 4e185fe86d21ca21f2b484a2c647cc68

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<a href="https://pkg.go.dev/github.com/gitpod-io/gitpod-sdk-go"><img src="https://pkg.go.dev/badge/github.com/gitpod-io/gitpod-sdk-go.svg" alt="Go Reference"></a>
44

5-
The Gitpod Go library provides convenient access to the [Gitpod REST API](https://docs.gitpod.io)
5+
The Gitpod Go library provides convenient access to the [Gitpod REST API](https://docs.ona.com)
66
from applications written in Go.
77

88
It is generated with [Stainless](https://www.stainless.com/).

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ or products provided by Gitpod, please follow the respective company's security
2020

2121
### Gitpod Terms and Policies
2222

23-
Please contact dev-feedback@gitpod.com for any questions or concerns regarding the security of our services.
23+
Please contact dev-feedback@ona.com for any questions or concerns regarding the security of our services.
2424

2525
---
2626

account_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func TestAccountGetWithOptionalParams(t *testing.T) {
17-
t.Skip("skipped: tests are disabled for the time being")
17+
t.Skip("Prism tests are disabled")
1818
baseURL := "http://localhost:4010"
1919
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2020
baseURL = envURL
@@ -39,7 +39,7 @@ func TestAccountGetWithOptionalParams(t *testing.T) {
3939
}
4040

4141
func TestAccountDelete(t *testing.T) {
42-
t.Skip("skipped: tests are disabled for the time being")
42+
t.Skip("Prism tests are disabled")
4343
baseURL := "http://localhost:4010"
4444
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
4545
baseURL = envURL
@@ -64,7 +64,7 @@ func TestAccountDelete(t *testing.T) {
6464
}
6565

6666
func TestAccountGetSSOLoginURLWithOptionalParams(t *testing.T) {
67-
t.Skip("skipped: tests are disabled for the time being")
67+
t.Skip("Prism tests are disabled")
6868
baseURL := "http://localhost:4010"
6969
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7070
baseURL = envURL
@@ -90,7 +90,7 @@ func TestAccountGetSSOLoginURLWithOptionalParams(t *testing.T) {
9090
}
9191

9292
func TestAccountListJoinableOrganizationsWithOptionalParams(t *testing.T) {
93-
t.Skip("skipped: tests are disabled for the time being")
93+
t.Skip("Prism tests are disabled")
9494
baseURL := "http://localhost:4010"
9595
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
9696
baseURL = envURL
@@ -117,7 +117,7 @@ func TestAccountListJoinableOrganizationsWithOptionalParams(t *testing.T) {
117117
}
118118

119119
func TestAccountListLoginProvidersWithOptionalParams(t *testing.T) {
120-
t.Skip("skipped: tests are disabled for the time being")
120+
t.Skip("Prism tests are disabled")
121121
baseURL := "http://localhost:4010"
122122
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
123123
baseURL = envURL

editor_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func TestEditorGet(t *testing.T) {
17-
t.Skip("skipped: tests are disabled for the time being")
17+
t.Skip("Prism tests are disabled")
1818
baseURL := "http://localhost:4010"
1919
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2020
baseURL = envURL
@@ -39,7 +39,7 @@ func TestEditorGet(t *testing.T) {
3939
}
4040

4141
func TestEditorListWithOptionalParams(t *testing.T) {
42-
t.Skip("skipped: tests are disabled for the time being")
42+
t.Skip("Prism tests are disabled")
4343
baseURL := "http://localhost:4010"
4444
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
4545
baseURL = envURL
@@ -72,7 +72,7 @@ func TestEditorListWithOptionalParams(t *testing.T) {
7272
}
7373

7474
func TestEditorResolveURL(t *testing.T) {
75-
t.Skip("skipped: tests are disabled for the time being")
75+
t.Skip("Prism tests are disabled")
7676
baseURL := "http://localhost:4010"
7777
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7878
baseURL = envURL

environment_test.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
func TestEnvironmentNewWithOptionalParams(t *testing.T) {
18-
t.Skip("skipped: tests are disabled for the time being")
18+
t.Skip("Prism tests are disabled")
1919
baseURL := "http://localhost:4010"
2020
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2121
baseURL = envURL
@@ -102,7 +102,7 @@ func TestEnvironmentNewWithOptionalParams(t *testing.T) {
102102
}
103103

104104
func TestEnvironmentGet(t *testing.T) {
105-
t.Skip("skipped: tests are disabled for the time being")
105+
t.Skip("Prism tests are disabled")
106106
baseURL := "http://localhost:4010"
107107
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
108108
baseURL = envURL
@@ -127,7 +127,7 @@ func TestEnvironmentGet(t *testing.T) {
127127
}
128128

129129
func TestEnvironmentUpdateWithOptionalParams(t *testing.T) {
130-
t.Skip("skipped: tests are disabled for the time being")
130+
t.Skip("Prism tests are disabled")
131131
baseURL := "http://localhost:4010"
132132
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
133133
baseURL = envURL
@@ -196,7 +196,7 @@ func TestEnvironmentUpdateWithOptionalParams(t *testing.T) {
196196
}
197197

198198
func TestEnvironmentListWithOptionalParams(t *testing.T) {
199-
t.Skip("skipped: tests are disabled for the time being")
199+
t.Skip("Prism tests are disabled")
200200
baseURL := "http://localhost:4010"
201201
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
202202
baseURL = envURL
@@ -234,7 +234,7 @@ func TestEnvironmentListWithOptionalParams(t *testing.T) {
234234
}
235235

236236
func TestEnvironmentDeleteWithOptionalParams(t *testing.T) {
237-
t.Skip("skipped: tests are disabled for the time being")
237+
t.Skip("Prism tests are disabled")
238238
baseURL := "http://localhost:4010"
239239
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
240240
baseURL = envURL
@@ -260,7 +260,7 @@ func TestEnvironmentDeleteWithOptionalParams(t *testing.T) {
260260
}
261261

262262
func TestEnvironmentNewEnvironmentToken(t *testing.T) {
263-
t.Skip("skipped: tests are disabled for the time being")
263+
t.Skip("Prism tests are disabled")
264264
baseURL := "http://localhost:4010"
265265
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
266266
baseURL = envURL
@@ -285,7 +285,7 @@ func TestEnvironmentNewEnvironmentToken(t *testing.T) {
285285
}
286286

287287
func TestEnvironmentNewFromProjectWithOptionalParams(t *testing.T) {
288-
t.Skip("skipped: tests are disabled for the time being")
288+
t.Skip("Prism tests are disabled")
289289
baseURL := "http://localhost:4010"
290290
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
291291
baseURL = envURL
@@ -373,7 +373,7 @@ func TestEnvironmentNewFromProjectWithOptionalParams(t *testing.T) {
373373
}
374374

375375
func TestEnvironmentNewLogsTokenWithOptionalParams(t *testing.T) {
376-
t.Skip("skipped: tests are disabled for the time being")
376+
t.Skip("Prism tests are disabled")
377377
baseURL := "http://localhost:4010"
378378
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
379379
baseURL = envURL
@@ -398,7 +398,7 @@ func TestEnvironmentNewLogsTokenWithOptionalParams(t *testing.T) {
398398
}
399399

400400
func TestEnvironmentMarkActiveWithOptionalParams(t *testing.T) {
401-
t.Skip("skipped: tests are disabled for the time being")
401+
t.Skip("Prism tests are disabled")
402402
baseURL := "http://localhost:4010"
403403
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
404404
baseURL = envURL
@@ -427,7 +427,7 @@ func TestEnvironmentMarkActiveWithOptionalParams(t *testing.T) {
427427
}
428428

429429
func TestEnvironmentStartWithOptionalParams(t *testing.T) {
430-
t.Skip("skipped: tests are disabled for the time being")
430+
t.Skip("Prism tests are disabled")
431431
baseURL := "http://localhost:4010"
432432
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
433433
baseURL = envURL
@@ -452,7 +452,7 @@ func TestEnvironmentStartWithOptionalParams(t *testing.T) {
452452
}
453453

454454
func TestEnvironmentStopWithOptionalParams(t *testing.T) {
455-
t.Skip("skipped: tests are disabled for the time being")
455+
t.Skip("Prism tests are disabled")
456456
baseURL := "http://localhost:4010"
457457
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
458458
baseURL = envURL
@@ -477,7 +477,7 @@ func TestEnvironmentStopWithOptionalParams(t *testing.T) {
477477
}
478478

479479
func TestEnvironmentUnarchiveWithOptionalParams(t *testing.T) {
480-
t.Skip("skipped: tests are disabled for the time being")
480+
t.Skip("Prism tests are disabled")
481481
baseURL := "http://localhost:4010"
482482
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
483483
baseURL = envURL

environmentautomation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
func TestEnvironmentAutomationUpsertWithOptionalParams(t *testing.T) {
18-
t.Skip("skipped: tests are disabled for the time being")
18+
t.Skip("Prism tests are disabled")
1919
baseURL := "http://localhost:4010"
2020
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2121
baseURL = envURL

environmentautomationservice_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
func TestEnvironmentAutomationServiceNewWithOptionalParams(t *testing.T) {
19-
t.Skip("skipped: tests are disabled for the time being")
19+
t.Skip("Prism tests are disabled")
2020
baseURL := "http://localhost:4010"
2121
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2222
baseURL = envURL
@@ -72,7 +72,7 @@ func TestEnvironmentAutomationServiceNewWithOptionalParams(t *testing.T) {
7272
}
7373

7474
func TestEnvironmentAutomationServiceGetWithOptionalParams(t *testing.T) {
75-
t.Skip("skipped: tests are disabled for the time being")
75+
t.Skip("Prism tests are disabled")
7676
baseURL := "http://localhost:4010"
7777
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7878
baseURL = envURL
@@ -97,7 +97,7 @@ func TestEnvironmentAutomationServiceGetWithOptionalParams(t *testing.T) {
9797
}
9898

9999
func TestEnvironmentAutomationServiceUpdateWithOptionalParams(t *testing.T) {
100-
t.Skip("skipped: tests are disabled for the time being")
100+
t.Skip("Prism tests are disabled")
101101
baseURL := "http://localhost:4010"
102102
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
103103
baseURL = envURL
@@ -155,7 +155,7 @@ func TestEnvironmentAutomationServiceUpdateWithOptionalParams(t *testing.T) {
155155
}
156156

157157
func TestEnvironmentAutomationServiceListWithOptionalParams(t *testing.T) {
158-
t.Skip("skipped: tests are disabled for the time being")
158+
t.Skip("Prism tests are disabled")
159159
baseURL := "http://localhost:4010"
160160
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
161161
baseURL = envURL
@@ -190,7 +190,7 @@ func TestEnvironmentAutomationServiceListWithOptionalParams(t *testing.T) {
190190
}
191191

192192
func TestEnvironmentAutomationServiceDeleteWithOptionalParams(t *testing.T) {
193-
t.Skip("skipped: tests are disabled for the time being")
193+
t.Skip("Prism tests are disabled")
194194
baseURL := "http://localhost:4010"
195195
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
196196
baseURL = envURL
@@ -216,7 +216,7 @@ func TestEnvironmentAutomationServiceDeleteWithOptionalParams(t *testing.T) {
216216
}
217217

218218
func TestEnvironmentAutomationServiceStartWithOptionalParams(t *testing.T) {
219-
t.Skip("skipped: tests are disabled for the time being")
219+
t.Skip("Prism tests are disabled")
220220
baseURL := "http://localhost:4010"
221221
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
222222
baseURL = envURL
@@ -241,7 +241,7 @@ func TestEnvironmentAutomationServiceStartWithOptionalParams(t *testing.T) {
241241
}
242242

243243
func TestEnvironmentAutomationServiceStopWithOptionalParams(t *testing.T) {
244-
t.Skip("skipped: tests are disabled for the time being")
244+
t.Skip("Prism tests are disabled")
245245
baseURL := "http://localhost:4010"
246246
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
247247
baseURL = envURL

environmentautomationtask_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
func TestEnvironmentAutomationTaskNewWithOptionalParams(t *testing.T) {
19-
t.Skip("skipped: tests are disabled for the time being")
19+
t.Skip("Prism tests are disabled")
2020
baseURL := "http://localhost:4010"
2121
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2222
baseURL = envURL
@@ -66,7 +66,7 @@ func TestEnvironmentAutomationTaskNewWithOptionalParams(t *testing.T) {
6666
}
6767

6868
func TestEnvironmentAutomationTaskGetWithOptionalParams(t *testing.T) {
69-
t.Skip("skipped: tests are disabled for the time being")
69+
t.Skip("Prism tests are disabled")
7070
baseURL := "http://localhost:4010"
7171
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7272
baseURL = envURL
@@ -91,7 +91,7 @@ func TestEnvironmentAutomationTaskGetWithOptionalParams(t *testing.T) {
9191
}
9292

9393
func TestEnvironmentAutomationTaskUpdateWithOptionalParams(t *testing.T) {
94-
t.Skip("skipped: tests are disabled for the time being")
94+
t.Skip("Prism tests are disabled")
9595
baseURL := "http://localhost:4010"
9696
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
9797
baseURL = envURL
@@ -137,7 +137,7 @@ func TestEnvironmentAutomationTaskUpdateWithOptionalParams(t *testing.T) {
137137
}
138138

139139
func TestEnvironmentAutomationTaskListWithOptionalParams(t *testing.T) {
140-
t.Skip("skipped: tests are disabled for the time being")
140+
t.Skip("Prism tests are disabled")
141141
baseURL := "http://localhost:4010"
142142
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
143143
baseURL = envURL
@@ -172,7 +172,7 @@ func TestEnvironmentAutomationTaskListWithOptionalParams(t *testing.T) {
172172
}
173173

174174
func TestEnvironmentAutomationTaskDeleteWithOptionalParams(t *testing.T) {
175-
t.Skip("skipped: tests are disabled for the time being")
175+
t.Skip("Prism tests are disabled")
176176
baseURL := "http://localhost:4010"
177177
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
178178
baseURL = envURL
@@ -197,7 +197,7 @@ func TestEnvironmentAutomationTaskDeleteWithOptionalParams(t *testing.T) {
197197
}
198198

199199
func TestEnvironmentAutomationTaskStartWithOptionalParams(t *testing.T) {
200-
t.Skip("skipped: tests are disabled for the time being")
200+
t.Skip("Prism tests are disabled")
201201
baseURL := "http://localhost:4010"
202202
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
203203
baseURL = envURL

environmentautomationtaskexecution_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
func TestEnvironmentAutomationTaskExecutionGetWithOptionalParams(t *testing.T) {
18-
t.Skip("skipped: tests are disabled for the time being")
18+
t.Skip("Prism tests are disabled")
1919
baseURL := "http://localhost:4010"
2020
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2121
baseURL = envURL
@@ -40,7 +40,7 @@ func TestEnvironmentAutomationTaskExecutionGetWithOptionalParams(t *testing.T) {
4040
}
4141

4242
func TestEnvironmentAutomationTaskExecutionListWithOptionalParams(t *testing.T) {
43-
t.Skip("skipped: tests are disabled for the time being")
43+
t.Skip("Prism tests are disabled")
4444
baseURL := "http://localhost:4010"
4545
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
4646
baseURL = envURL
@@ -76,7 +76,7 @@ func TestEnvironmentAutomationTaskExecutionListWithOptionalParams(t *testing.T)
7676
}
7777

7878
func TestEnvironmentAutomationTaskExecutionStopWithOptionalParams(t *testing.T) {
79-
t.Skip("skipped: tests are disabled for the time being")
79+
t.Skip("Prism tests are disabled")
8080
baseURL := "http://localhost:4010"
8181
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
8282
baseURL = envURL

0 commit comments

Comments
 (0)