-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_inputs.py
More file actions
36 lines (32 loc) · 866 Bytes
/
sample_inputs.py
File metadata and controls
36 lines (32 loc) · 866 Bytes
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
domain_details = {
"Name": "API Created Domain",
"Description": "API Created Domain"
# "LicensePoolId": "Pool_1",
# "EndTime": "05/20/2023 4:37:00 PM",
# "Archived": True
}
license_pool_details = {
"Name": "My License Pool",
"Description": "License pool for Myself",
"MaxConcurrentReservation": 3
# "Domains": ["2702ce9e-2db8-4b1d-94d6-1c4bf1b40267", "be342a7f-e2b8-45c6-9b32-0869b505029c"]
}
user_details = {
"Username": "NewUser",
"Password": "1234",
"Email": "new_user@example.com",
"IsActive": True,
"IsAdmin": True,
"GroupIds": [
1
],
"TimeZoneInfoId": "Eastern Standard Time",
"MaxReservationDuration": 1,
"MaxConcurrentReservations": 2,
"MaxScheduledSandboxes": 2,
"MaxOwnedBlueprints": 2,
"MaxSavedSandboxes": 0
}
edit_user_details = {
"IsAdmin": False
}