Skip to content

GroupServiceInstancePrivacyGetRequest17sp4

Bases: OCIRequest

Request the data associated with Privacy for a service instance. The response is either a GroupServiceInstancePrivacyGetResponse17sp4 or an ErrorResponse.

Attributes:

service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class GroupServiceInstancePrivacyGetRequest17sp4(OCIRequest):
    """Request the data associated with Privacy for a service instance.
        The response is either a GroupServiceInstancePrivacyGetResponse17sp4
        or an ErrorResponse.

    Attributes:

        service_user_id (str):

    """

    service_user_id: str = field(metadata={"alias": "serviceUserId"})

Responses

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 GroupServiceInstancePrivacyGetRequest17sp4

client = Client()

command = GroupServiceInstancePrivacyGetRequest17sp4(
    service_user_id=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("GroupServiceInstancePrivacyGetRequest17sp4",
    service_user_id=...,
)

print(response)