Open
Description
We should update method signatures to use keyword-only argument notation, rather than accepting everything in **kwargs
. For example,
should become
def list_properties_of_certificates(self, *, include_pending: Optional[bool] = None, **kwargs) -> ItemPaged[CertificateProperties]:
since include_pending
is a recognized keyword-only argument.
Metadata
Metadata
Assignees
Type
Projects
Status
Backlog