SystemPerformanceMeasurementReportingModifyRequest
Bases: OCIRequest
Modify the performance measurements reporting settings. The response is either SuccessResponse or ErrorResponse.
Attributes:
is_active (Optional[bool]):
reporting_interval (Optional[int]):
reset_measurements_after_each_report (Optional[bool]):
report_enterprise (Optional[bool]):
report_service_provider (Optional[bool]):
report_device (Optional[bool]):
report_table (Optional[bool]):
report_encoding (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
91839 91840 91841 91842 91843 91844 91845 91846 91847 91848 91849 91850 91851 91852 91853 91854 91855 91856 91857 91858 91859 91860 91861 91862 91863 91864 91865 91866 91867 91868 91869 91870 91871 91872 91873 91874 91875 91876 91877 91878 91879 91880 91881 91882 91883 91884 91885 91886 91887 91888 91889 91890 91891 91892 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemPerformanceMeasurementReportingModifyRequest
client = Client()
command = SystemPerformanceMeasurementReportingModifyRequest(
is_active=...,
reporting_interval=...,
reset_measurements_after_each_report=...,
report_enterprise=...,
report_service_provider=...,
report_device=...,
report_table=...,
report_encoding=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemPerformanceMeasurementReportingModifyRequest",
is_active=...,
reporting_interval=...,
reset_measurements_after_each_report=...,
report_enterprise=...,
report_service_provider=...,
report_device=...,
report_table=...,
report_encoding=...,
)
print(response)