Skip to content

Workspaces Component

Used to sync workspaces from a source instance to a destination instance of Swimlane

sync

This method is used to sync all workspaces from a source instance to a destination instance

def sync(self)

sync_workspace

def sync_workspace(self, workspace)

Workspace Model

Workspace

__attrs_init__(self, uid, id, disabled, name, version, createdDate, modifiedDate, description=None, permissions={}, createdByUser={}, modifiedByUser={}, dashboards=[], applications=[]) special

Method generated by attrs for class Workspace.

Source code in aqueduct/models/workspace.py
def __attrs_init__(self, uid, id, disabled, name, version, createdDate, modifiedDate, description=attr_dict['description'].default, permissions=attr_dict['permissions'].default, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, dashboards=attr_dict['dashboards'].default, applications=attr_dict['applications'].default):
    self.uid = uid
    self.id = id
    self.disabled = disabled
    self.name = name
    self.version = version
    self.createdDate = createdDate
    self.modifiedDate = modifiedDate
    self.description = description
    self.permissions = permissions
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.dashboards = dashboards
    self.applications = applications