SystemNetworkClassOfServiceGetRequest19sp1
Bases: OCIRequest
Get an existing Network Class of Service. The response is either a SystemNetworkClassOfServiceGetResponse19sp1 or an ErrorResponse.
Attributes:
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class SystemNetworkClassOfServiceGetRequest19sp1(OCIRequest):
"""Get an existing Network Class of Service.
The response is either a SystemNetworkClassOfServiceGetResponse19sp1
or an ErrorResponse.
Attributes:
name (str):
"""
name: str = field(metadata={"alias": "name"})
|
Responses
Bases: OCIResponseSource 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 SystemNetworkClassOfServiceGetRequest19sp1
client = Client()
command = SystemNetworkClassOfServiceGetRequest19sp1(
name=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemNetworkClassOfServiceGetRequest19sp1",
name=...,
)
print(response)