Bases: OCIType
Password to be generated for a service provider administrator. If the administratorId is not included, or included but is not an exiting administrator for the service provider, a password will be generated based on only the rules applicable for a new user.
Attributes:
service_provider_id (str):
administrator_id (Optional[str]):
generate_password (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class PasswordForServiceProviderAdministrator(OCIType):
"""Password to be generated for a service provider administrator. If the administratorId is not included,
or included but is not an exiting administrator for the service provider, a password will be generated
based on only the rules applicable for a new user.
Attributes:
service_provider_id (str):
administrator_id (Optional[str]):
generate_password (bool):
"""
service_provider_id: str = field(metadata={"alias": "serviceProviderId"})
administrator_id: Optional[str] = field(
default=None, metadata={"alias": "administratorId"}
)
generate_password: bool = field(metadata={"alias": "generatePassword"})
|