Skip to content

SystemSubscriptionLicenseReportingGetRequest

Bases: OCIRequest

Request to get the subscription license reporting system parameters. The response is either SystemSubscriptionLicenseReportingGetResponse or ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemSubscriptionLicenseReportingGetRequest(OCIRequest):
    """Request to get the subscription license reporting system parameters.
        The response is either SystemSubscriptionLicenseReportingGetResponse or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemSubscriptionLicenseReportingGetRequest.

Attributes:

daily_report_scheduled_time (HourMinute):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemSubscriptionLicenseReportingGetResponse(OCIDataResponse):
    """Response to SystemSubscriptionLicenseReportingGetRequest.

    Attributes:

        daily_report_scheduled_time (HourMinute):

    """

    daily_report_scheduled_time: HourMinute = field(
        metadata={"alias": "dailyReportScheduledTime"}
    )

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 SystemSubscriptionLicenseReportingGetRequest

client = Client()

command = SystemSubscriptionLicenseReportingGetRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemSubscriptionLicenseReportingGetRequest")

print(response)