SystemDeviceManagementTagSetAddRequest
Bases: OCIRequest
Request to add a static configuration tag set. When the optional element resellerId is specified, the tag set created is at reseller level. Tag set name should be unique through out the system including all the reseller level tag sets. The response is either a SuccessResponse or an ErrorResponse.
The following elements are only used in AS data mode and ignored in the XS data mode:
resellerId
Attributes:
tag_set_name (str):
reseller_id (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemDeviceManagementTagSetAddRequest
client = Client()
command = SystemDeviceManagementTagSetAddRequest(
tag_set_name=...,
reseller_id=...,
)
response = client.command(command)
print(response)