13 lines
229 B
Python
13 lines
229 B
Python
from __future__ import absolute_import
|
|
|
|
from .base import Immutable
|
|
|
|
|
|
class Region(Immutable):
|
|
subsystem = "infra"
|
|
endpoint = "/region"
|
|
namespaced = False
|
|
|
|
@classmethod
|
|
def _pk_key(cls):
|
|
return 'name'
|