12 lines
198 B
Python
12 lines
198 B
Python
from __future__ import absolute_import
|
|
|
|
from .base import Immutable
|
|
|
|
|
|
class AZ(Immutable):
|
|
subsystem = "infra"
|
|
endpoint = "/az"
|
|
|
|
@classmethod
|
|
def _pk_key(cls):
|
|
return 'name'
|