startup_controller = client.startup
StartupController
- Complete Wizard
- Get First User
- Get First User 2
- Get Startup Configuration
- Set Remote Access
- Update Initial Configuration
- Update Startup User
Completes the startup wizard.
def complete_wizard(self)
void
result = startup_controller.complete_wizard()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Gets the first user.
def get_first_user(self)
result = startup_controller.get_first_user()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Gets the first user.
def get_first_user_2(self)
result = startup_controller.get_first_user_2()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Gets the initial startup wizard configuration.
def get_startup_configuration(self)
result = startup_controller.get_startup_configuration()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Sets remote access and UPnP.
def set_remote_access(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
StartupRemoteAccessDto |
Body, Required | The startup remote access dto. |
void
body = StartupRemoteAccessDto()
body.enable_remote_access = False
body.enable_automatic_port_mapping = False
result = startup_controller.set_remote_access(body)
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Sets the initial startup wizard configuration.
def update_initial_configuration(self,
body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
StartupConfigurationDto |
Body, Required | The updated startup configuration. |
void
body = StartupConfigurationDto()
result = startup_controller.update_initial_configuration(body)
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Sets the user name and password.
def update_startup_user(self,
body=None)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
StartupUserDto |
Body, Optional | The DTO containing username and password. |
void
result = startup_controller.update_startup_user()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |