ServiceProviderAccessDeviceGetAvailableCustomTagListRequest
Bases: OCIRequest
Get the list of all available custom tags managed by the Device Management System, on a per-device profile basis. The response is either ServiceProviderAccessDeviceGetAvailableCustomTagListResponse or ErrorResponse. The following elements are used in AS mode and ignored in XS data mode: tagSetName
Attributes:
service_provider_id (str):
device_name (str):
tag_set_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderAccessDeviceGetAvailableCustomTagListRequest. Contains a table of all available custom tags managed by the Device Management System on a per-device profile basis.
In AS data mode, the column headings are: "Tag Name", "Tag Value", "Tag Level", "Tag Set Name", "Region Name".
In XS data mode:
the column headings are: "Tag Name", "Tag Value", "Tag Level", "Tag Set Name", "Is Encrypted" if request is invoked by a System administrator or by an administrator with higher priviledges, otherwise the column headings are: "Tag Name", "Tag Value", "Tag Level", "Tag Source", "Tag Set Name".
"Tag Level" can take the value: "System Default", "System", "Service Provider", "Group" or "Device Profile".
Attributes:
device_available_custom_tags_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderAccessDeviceGetAvailableCustomTagListRequest
client = Client()
command = ServiceProviderAccessDeviceGetAvailableCustomTagListRequest(
service_provider_id=...,
device_name=...,
tag_set_name=...,
)
response = client.command(command)
print(response)