Skip to content

SystemPerformanceMeasurementReportingGetFileServerListRequest22

Bases: OCIRequest

Requests the list performance measurements reporting ftp servers. The response is either SystemPerformanceMeasurementReportingGetFileServerListResponse22 or ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemPerformanceMeasurementReportingGetFileServerListRequest22(OCIRequest):
    """Requests the list performance measurements reporting ftp servers.
        The response is either SystemPerformanceMeasurementReportingGetFileServerListResponse22 or ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemPerformanceMeasurementReportingGetFileServerListRequest22. The table columns are: "Repository URL", "User Id", "Passive".

Attributes:

file_server_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemPerformanceMeasurementReportingGetFileServerListResponse22(OCIDataResponse):
    """Response to SystemPerformanceMeasurementReportingGetFileServerListRequest22. The table columns are:
        \"Repository URL\", \"User Id\", \"Passive\".

    Attributes:

        file_server_table (OCITable):

    """

    file_server_table: OCITable = field(metadata={"alias": "fileServerTable"})

Bases: OCIResponse

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

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.commands import SystemPerformanceMeasurementReportingGetFileServerListRequest22

client = Client()

command = SystemPerformanceMeasurementReportingGetFileServerListRequest22()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemPerformanceMeasurementReportingGetFileServerListRequest22")

print(response)