util.olapdb.migration.rangefrom

Operation: GET /dataservice/util/olapdb/migration/rangefrom

Get migration historical data range configuration from upgrade time

def get() -> Any: ...

Example:

from catalyswan.core import create_client

url = "example.com"
username = "admin"
password = "password123"

with create_client(
    url=url, username=username, password=password
) as client:
    client.util.olapdb.migration.rangefrom.get()

Operation: POST /dataservice/util/olapdb/migration/rangefrom

Config migration historical data range from upgrade time in seconds. -1 to keep all.

def post(payload: str) -> Any: ...

Example:

from catalyswan.core import create_client

url = "example.com"
username = "admin"
password = "password123"

with create_client(
    url=url, username=username, password=password
) as client:
    client.util.olapdb.migration.rangefrom.post()