forked from aws-ia/cloudformation-rollbar-resource-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollbar-teams-team.json
90 lines (90 loc) · 1.96 KB
/
rollbar-teams-team.json
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
{
"typeName": "Rollbar::Teams::Team",
"description": "Manage a team on Rollbar.",
"sourceUrl": "https://github.com/aws-ia/cloudformation-rollbar-resource-providers.git",
"documentationUrl": "https://github.com/aws-ia/cloudformation-rollbar-resource-providers",
"definitions": {
"RollbarAccess": {
"description": "Properties needed to access Rollbar.",
"type": "object",
"properties": {
"Token": {
"type": "string",
"description": "API token used to access Rollbar"
},
"ProjectToken": {
"type": "string",
"description": "API token used to access Rollbar"
}
},
"required": [
"Token"
],
"additionalProperties": false
}
},
"typeConfiguration": {
"properties": {
"RollbarAccess": {
"$ref": "#/definitions/RollbarAccess"
}
},
"additionalProperties": false,
"required": [
"RollbarAccess"
]
},
"properties": {
"Name": {
"description": "Name of the team. Max length 32 characters.",
"type": "string",
"pattern": "^[a-zA-Z0-9\\-\\_ ]{1,32}$"
},
"AccessLevel": {
"description": "Can be standard, light, or view.",
"type": "string",
"enum": [
"standard",
"light",
"view"
]
},
"Id": {
"description": "The team ID.",
"type": "integer"
},
"AccountId": {
"description": "The account ID where the team belongs to.",
"type": "integer"
}
},
"additionalProperties": false,
"tagging": {
"taggable": false
},
"required": [
"Name",
"AccessLevel"
],
"readOnlyProperties": [
"/properties/Id",
"/properties/AccountId"
],
"primaryIdentifier": [
"/properties/Id"
],
"handlers": {
"create": {
"permissions": []
},
"read": {
"permissions": []
},
"delete": {
"permissions": []
},
"list": {
"permissions": []
}
}
}