-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudAccountUserUpdate.yml
More file actions
70 lines (70 loc) · 1.79 KB
/
Copy pathcloudAccountUserUpdate.yml
File metadata and controls
70 lines (70 loc) · 1.79 KB
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
post:
summary: Update a Cloud Account User on the platform and cloud
tags:
- cloudAccount
description: Used for removing a User's access to Cloud Account Groups
security:
- bearerAuth: []
parameters:
- name: x-sr-application
in: header
description: What application/version is calling the API
required: true
style: simple
schema:
type: string
default: SR/Swagger
requestBody:
description: Cloud Account User payload
required: true
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/cloudAccountUserUpdate_defaultPayload'
responses:
'200':
description: Successful operation
headers:
Content-Type:
schema:
type: string
description: The MIME type of the payload
Content-Length:
schema:
type: number
description: Byte length of the payload
content:
application/json:
schema:
type: object
properties:
status_code:
type: number
example: 200
user_uuid:
type: string
format: uuid
cloud_account_user_id:
type: string
'403':
description: Not authorized
default:
description: Default response for POST /cloudAccountUserUpdate
components:
schemas:
cloudAccountUserUpdate_defaultPayload:
type: object
properties:
action:
type: string
example: eject
cloud_account_user:
type: object
properties:
user_uuid:
type: string
format: uuid
entity_uuid:
type: string
format: uuid