@@ -9,11 +9,14 @@ from gitpod.types import (
9
9
Principal,
10
10
RunsOn,
11
11
Subject,
12
+ Task,
12
13
TaskExecution,
13
14
TaskExecutionMetadata,
14
15
TaskExecutionPhase,
15
16
TaskExecutionSpec,
16
17
TaskExecutionStatus,
18
+ TaskMetadata,
19
+ TaskSpec,
17
20
UserStatus,
18
21
)
19
22
```
@@ -141,9 +144,6 @@ Types:
141
144
142
145
``` python
143
146
from gitpod.types.environments.automations import (
144
- Task,
145
- TaskMetadata,
146
- TaskSpec,
147
147
TaskCreateResponse,
148
148
TaskRetrieveResponse,
149
149
TaskUpdateResponse,
@@ -157,7 +157,7 @@ Methods:
157
157
- <code title =" post /gitpod.v1.EnvironmentAutomationService/CreateTask " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >create</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_create_params.py " >params</a >) -> <a href =" ./src/gitpod/types/environments/automations/task_create_response.py " >TaskCreateResponse</a ></code >
158
158
- <code title =" post /gitpod.v1.EnvironmentAutomationService/GetTask " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >retrieve</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_retrieve_params.py " >params</a >) -> <a href =" ./src/gitpod/types/environments/automations/task_retrieve_response.py " >TaskRetrieveResponse</a ></code >
159
159
- <code title =" post /gitpod.v1.EnvironmentAutomationService/UpdateTask " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >update</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_update_params.py " >params</a >) -> <a href =" ./src/gitpod/types/environments/automations/task_update_response.py " >object</a ></code >
160
- - <code title =" post /gitpod.v1.EnvironmentAutomationService/ListTasks " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >list</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_list_params.py " >params</a >) -> <a href =" ./src/gitpod/types/environments/automations /task.py " >SyncTasksPage[ Task] </a ></code >
160
+ - <code title =" post /gitpod.v1.EnvironmentAutomationService/ListTasks " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >list</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_list_params.py " >params</a >) -> <a href =" ./src/gitpod/types/shared /task.py " >SyncTasksPage[ Task] </a ></code >
161
161
- <code title =" post /gitpod.v1.EnvironmentAutomationService/DeleteTask " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >delete</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_delete_params.py " >params</a >) -> <a href =" ./src/gitpod/types/environments/automations/task_delete_response.py " >object</a ></code >
162
162
- <code title =" post /gitpod.v1.EnvironmentAutomationService/StartTask " >client.environments.automations.tasks.<a href =" ./src/gitpod/resources/environments/automations/tasks/tasks.py " >start</a >(\*\* <a href =" src/gitpod/types/environments/automations/task_start_params.py " >params</a >) -> <a href =" ./src/gitpod/types/environments/automations/task_start_response.py " >TaskStartResponse</a ></code >
163
163
@@ -259,6 +259,29 @@ Methods:
259
259
- <code title =" post /gitpod.v1.OrganizationService/ListMembers " >client.organizations.<a href =" ./src/gitpod/resources/organizations/organizations.py " >list_members</a >(\*\* <a href =" src/gitpod/types/organization_list_members_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organization_member.py " >SyncMembersPage[ OrganizationMember] </a ></code >
260
260
- <code title =" post /gitpod.v1.OrganizationService/SetRole " >client.organizations.<a href =" ./src/gitpod/resources/organizations/organizations.py " >set_role</a >(\*\* <a href =" src/gitpod/types/organization_set_role_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organization_set_role_response.py " >object</a ></code >
261
261
262
+ ## DomainVerifications
263
+
264
+ Types:
265
+
266
+ ``` python
267
+ from gitpod.types.organizations import (
268
+ DomainVerification,
269
+ DomainVerificationState,
270
+ DomainVerificationCreateResponse,
271
+ DomainVerificationRetrieveResponse,
272
+ DomainVerificationDeleteResponse,
273
+ DomainVerificationVerifyResponse,
274
+ )
275
+ ```
276
+
277
+ Methods:
278
+
279
+ - <code title =" post /gitpod.v1.OrganizationService/CreateDomainVerification " >client.organizations.domain_verifications.<a href =" ./src/gitpod/resources/organizations/domain_verifications.py " >create</a >(\*\* <a href =" src/gitpod/types/organizations/domain_verification_create_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organizations/domain_verification_create_response.py " >DomainVerificationCreateResponse</a ></code >
280
+ - <code title =" post /gitpod.v1.OrganizationService/GetDomainVerification " >client.organizations.domain_verifications.<a href =" ./src/gitpod/resources/organizations/domain_verifications.py " >retrieve</a >(\*\* <a href =" src/gitpod/types/organizations/domain_verification_retrieve_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organizations/domain_verification_retrieve_response.py " >DomainVerificationRetrieveResponse</a ></code >
281
+ - <code title =" post /gitpod.v1.OrganizationService/ListDomainVerifications " >client.organizations.domain_verifications.<a href =" ./src/gitpod/resources/organizations/domain_verifications.py " >list</a >(\*\* <a href =" src/gitpod/types/organizations/domain_verification_list_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organizations/domain_verification.py " >SyncDomainVerificationsPage[ DomainVerification] </a ></code >
282
+ - <code title =" post /gitpod.v1.OrganizationService/DeleteDomainVerification " >client.organizations.domain_verifications.<a href =" ./src/gitpod/resources/organizations/domain_verifications.py " >delete</a >(\*\* <a href =" src/gitpod/types/organizations/domain_verification_delete_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organizations/domain_verification_delete_response.py " >object</a ></code >
283
+ - <code title =" post /gitpod.v1.OrganizationService/VerifyDomain " >client.organizations.domain_verifications.<a href =" ./src/gitpod/resources/organizations/domain_verifications.py " >verify</a >(\*\* <a href =" src/gitpod/types/organizations/domain_verification_verify_params.py " >params</a >) -> <a href =" ./src/gitpod/types/organizations/domain_verification_verify_response.py " >DomainVerificationVerifyResponse</a ></code >
284
+
262
285
## Invites
263
286
264
287
Types:
0 commit comments