We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcc41e5 commit ef73d93Copy full SHA for ef73d93
1 file changed
linode_api4/login_client.py
@@ -254,6 +254,20 @@ def __repr__(self):
254
return "longview:*"
255
return "longview:{}".format(self.name)
256
257
+ class Images(Enum):
258
+ """
259
+ Access to Images
260
261
+
262
+ read_only = 0
263
+ read_write = 1
264
+ all = 2
265
266
+ def __repr__(self):
267
+ if self.name == "all":
268
+ return "images:*"
269
+ return "images:{}".format(self.name)
270
271
_scope_families = {
272
"linodes": Linodes,
273
"domains": Domains,
@@ -271,6 +285,7 @@ def __repr__(self):
285
"object_storage": ObjectStorage,
286
"nodebalancers": NodeBalancers,
287
"longview": Longview,
288
+ "images": Images,
274
289
}
275
290
276
291
@staticmethod
0 commit comments