Skip to content

SystemAccountingInhibitedAttributeValuePairCodeGetListRequest

Bases: OCIRequest

Get a list of Attribute Value Pair (AVP) combinations that are disabled. The response is either a SystemAccountingInhibitedAttributeValuePairCodeGetListResponse or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemAccountingInhibitedAttributeValuePairCodeGetListRequest(OCIRequest):
    """Get a list of Attribute Value Pair (AVP) combinations that are
        disabled. The response is either a
        SystemAccountingInhibitedAttributeValuePairCodeGetListResponse or an
        ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemAccountingInhibitedAttributeValuePairCodeGetListRequest. Contains a 2 column table with column headings "Attribute Value Pair Code" and "Vendor Id".

Attributes:

inhibited_attribute_value_pair_code_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemAccountingInhibitedAttributeValuePairCodeGetListResponse(OCIDataResponse):
    """Response to
        SystemAccountingInhibitedAttributeValuePairCodeGetListRequest. Contains a 2 column
        table with column headings \"Attribute Value Pair Code\" and \"Vendor Id\".

    Attributes:

        inhibited_attribute_value_pair_code_table (OCITable):

    """

    inhibited_attribute_value_pair_code_table: OCITable = field(
        metadata={"alias": "inhibitedAttributeValuePairCodeTable"}
    )

Bases: OCIResponse

Source code in src/mercury_ocip_fast/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

Example Usage

from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemAccountingInhibitedAttributeValuePairCodeGetListRequest

client = Client()

command = SystemAccountingInhibitedAttributeValuePairCodeGetListRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemAccountingInhibitedAttributeValuePairCodeGetListRequest")

print(response)