SystemDeviceManagementTagSetRegionTagGetListRequest
Bases: OCIRequest
Request to get the list of tag overrides for a region within a static configuration tag set for per-region tags override. The response is either a SystemDeviceManagementTagSetRegionTagGetListResponse or an ErrorResponse.
Attributes:
tag_set_name (str):
region_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceManagementTagSetRegionTagGetListRequest. The column headings for the tagsTable are: "Tag Name", "Tag Value".
Attributes:
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 SystemDeviceManagementTagSetRegionTagGetListRequest
client = Client()
command = SystemDeviceManagementTagSetRegionTagGetListRequest(
tag_set_name=...,
region_name=...,
)
response = client.command(command)
print(response)