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
try:
role=cluster.roles['foo']
exceptKeyError:
role=cluster.roles.new(name='foo') # potentially, kwargs could go here as wellfork,vinkwargs.items():
ifnothasattr(role, k):
raiseAttributeErrorsetattr(role, k, v) # not sure if setattr works with @propertyrole.create() ifrole._ephemeralelserole.alter()
The text was updated successfully, but these errors were encountered:
Example of how it should look like:
The pseudocode of what it does behind the scenes:
The text was updated successfully, but these errors were encountered: