distcloud-client/distributedcloud-client/dcmanagerclient/api/v1/sw_deploy_manager.py

17 lines
392 B
Python

#
# Copyright (c) 2024 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
from dcmanagerclient.api.v1.sw_update_manager import sw_update_manager
SW_UPDATE_TYPE_USM = "software"
class SwDeployManager(sw_update_manager):
def __init__(self, http_client):
super().__init__(
http_client, update_type=SW_UPDATE_TYPE_USM, extra_args=["release"]
)