You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fornext_pageinrange(next_range_lower, next_range_upper): # first page is 0 unless network-groups which are 1-based
@@ -436,6 +436,7 @@ def camel(self, snake_str):
436
436
437
437
438
438
NET_RESOURCES=dict() # resources in network domain
439
+
ZITI_NET_RESOURCES=dict() # network resources that are backed 1:1 by a zitiId
439
440
MUTABLE_NET_RESOURCES=dict() # network resources that can be updated
440
441
MUTABLE_RESOURCE_ABBREV=dict() # unique abbreviations for ^
441
442
EMBED_NET_RESOURCES=dict() # network resources that may be fetched as embedded collections
@@ -508,6 +509,7 @@ class ResourceType(ResourceTypeParent):
508
509
abbreviation: str=field(default='default')
509
510
status_symbols: dict=field(default_factory=lambda: RESOURCE_STATUS_SYMBOLS) # dictionary with three predictable keys: complete, progress, error, each a tuple associating status symbols with a state
510
511
host: bool=field(default=False) # may have a managed host in NF cloud
512
+
ziti: bool=field(default=False)
511
513
512
514
def__post_init__(self):
513
515
"""Compute and assign _embedded if not supplied and then check types in parent class."""
0 commit comments