-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathlongview.py
55 lines (40 loc) · 1.42 KB
/
longview.py
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
from linode_api4.objects import Base, Property
class LongviewClient(Base):
"""
A Longview Client that is accessible for use. Longview is Linode’s system data graphing service.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-longview-client
"""
api_endpoint = "/longview/clients/{id}"
properties = {
"id": Property(identifier=True),
"created": Property(is_datetime=True),
"updated": Property(is_datetime=True),
"label": Property(mutable=True),
"install_code": Property(),
"apps": Property(),
"api_key": Property(),
}
class LongviewSubscription(Base):
"""
Contains the Longview Plan details for a specific subscription id.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-longview-subscription
"""
api_endpoint = "/longview/subscriptions/{id}"
properties = {
"id": Property(identifier=True),
"label": Property(),
"clients_included": Property(),
"price": Property(),
}
class LongviewPlan(Base):
"""
The current Longview Plan an account is using.
API Documentation: https://techdocs.akamai.com/linode-api/reference/get-longview-plan
"""
api_endpoint = "/longview/plan"
properties = {
"id": Property(identifier=True),
"label": Property(),
"clients_included": Property(),
"price": Property(),
}