-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathusers.ts
154 lines (136 loc) · 3.58 KB
/
users.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as Shared from '../shared';
import * as PatsAPI from './pats';
import {
PatDeleteParams,
PatDeleteResponse,
PatGetParams,
PatGetResponse,
PatListParams,
Pats,
PersonalAccessToken,
PersonalAccessTokensPersonalAccessTokensPage,
} from './pats';
import { APIPromise } from '../../api-promise';
import { RequestOptions } from '../../internal/request-options';
export class Users extends APIResource {
pats: PatsAPI.Pats = new PatsAPI.Pats(this._client);
/**
* Gets information about the currently authenticated user.
*
* Use this method to:
*
* - Get user profile information
* - Check authentication status
* - Retrieve user settings
* - Verify account details
*
* ### Examples
*
* - Get current user:
*
* Retrieves details about the authenticated user.
*
* ```yaml
* {}
* ```
*/
getAuthenticatedUser(
body: UserGetAuthenticatedUserParams,
options?: RequestOptions,
): APIPromise<UserGetAuthenticatedUserResponse> {
return this._client.post('/gitpod.v1.UserService/GetAuthenticatedUser', { body, ...options });
}
/**
* Sets whether a user account is suspended.
*
* Use this method to:
*
* - Suspend problematic users
* - Reactivate suspended accounts
* - Manage user access
*
* ### Examples
*
* - Suspend user:
*
* Suspends a user account.
*
* ```yaml
* userId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
* suspended: true
* ```
*
* - Reactivate user:
*
* Removes suspension from a user account.
*
* ```yaml
* userId: "f53d2330-3795-4c5d-a1f3-453121af9c60"
* suspended: false
* ```
*/
setSuspended(body: UserSetSuspendedParams, options?: RequestOptions): APIPromise<unknown> {
return this._client.post('/gitpod.v1.UserService/SetSuspended', { body, ...options });
}
}
export interface User {
/**
* id is a UUID of the user
*/
id: string;
/**
* avatar_url is a link to the user avatar
*/
avatarUrl?: string;
/**
* created_at is the creation time
*/
createdAt?: string;
/**
* name is the full name of the user
*/
name?: string;
/**
* organization_id is the id of the organization this account is owned by.
*
* +optional if not set, this account is owned by the installation.
*/
organizationId?: string;
/**
* status is the status the user is in
*/
status?: Shared.UserStatus;
}
export interface UserGetAuthenticatedUserResponse {
user: User;
}
export type UserSetSuspendedResponse = unknown;
export interface UserGetAuthenticatedUserParams {
empty?: boolean;
}
export interface UserSetSuspendedParams {
suspended?: boolean;
userId?: string;
}
Users.Pats = Pats;
export declare namespace Users {
export {
type User as User,
type UserGetAuthenticatedUserResponse as UserGetAuthenticatedUserResponse,
type UserSetSuspendedResponse as UserSetSuspendedResponse,
type UserGetAuthenticatedUserParams as UserGetAuthenticatedUserParams,
type UserSetSuspendedParams as UserSetSuspendedParams,
};
export {
Pats as Pats,
type PersonalAccessToken as PersonalAccessToken,
type PatDeleteResponse as PatDeleteResponse,
type PatGetResponse as PatGetResponse,
type PersonalAccessTokensPersonalAccessTokensPage as PersonalAccessTokensPersonalAccessTokensPage,
type PatListParams as PatListParams,
type PatDeleteParams as PatDeleteParams,
type PatGetParams as PatGetParams,
};
}