SystemDeviceManagementTagSetRegionGetListRequest
Bases: OCIRequest
Request to get the list of regions within a static configuration tag set for per-region tags override. The response is either a SystemDeviceManagementTagSetRegionGetListResponse or an ErrorResponse.
Attributes:
tag_set_name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceManagementTagSetGetListRequest. The response includes the list of region names defined in the specified tag set.
Attributes:
region_name (Optional[List[str]]):
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 SystemDeviceManagementTagSetRegionGetListRequest
client = Client()
command = SystemDeviceManagementTagSetRegionGetListRequest(
tag_set_name=...,
)
response = client.command(command)
print(response)