SystemDeviceManagementTagSetExportRequest
Bases: OCIRequest
Request to export a custom tag set. Tag set name should be unique through out the system including all the reseller level tag sets. The response is either a SystemDeviceManagementTagSetExportResponse or an ErrorResponse.
Attributes:
tag_set_name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceManagementTagSetExportRequest.
Attributes:
file (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemDeviceManagementTagSetExportRequest
client = Client()
command = SystemDeviceManagementTagSetExportRequest(
tag_set_name=...,
)
response = client.command(command)
print(response)