We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68caf66 commit a62c7e3Copy full SHA for a62c7e3
src/services/GroupService.ts
@@ -6,19 +6,4 @@ export class GroupsService extends BaseService<Group> {
6
constructor(client: Client) {
7
super(client, "/v3/orgs/:orgId/iam/groups");
8
}
9
-
10
- async deleteBinding(groupId: string, bindingId: string) {
11
- let deleteEndpoint = this.endpoint + '/' + groupId + '/bindings/' + bindingId;
12
- return await this.client.makeDeleteRequest(deleteEndpoint);
13
- }
14
15
- async createBinding(groupId: string, body: string) {
16
- let createBindingEndpoint = this.endpoint + '/' + groupId + '/bindings';
17
- return await this.client.makePostRequest(createBindingEndpoint, {
18
- data: {
19
- type: 'bindings',
20
- attributes: JSON.parse(body)
21
22
- });
23
24
-}
+}
0 commit comments