docs/classes/management.SDK.SigningClient.html
new SigningClient(options: BaseClientOptions): SigningClient
list(
requestOptions?: SigningClient.RequestOptions,
): HttpResponsePromise<SigningKeys[]>
Retrieve details of all the application signing keys associated with your tenant.
OptionalrequestOptions: SigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.signing.list()Copy
rotate(
requestOptions?: SigningClient.RequestOptions,
): HttpResponsePromise<RotateSigningKeysResponseContent>
Rotate the application signing key of your tenant.
OptionalrequestOptions: SigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.signing.rotate()Copy
get(
kid: string,
requestOptions?: SigningClient.RequestOptions,
): HttpResponsePromise<GetSigningKeysResponseContent>
Retrieve details of the application signing key with the given ID.
Key id of the key to retrieve
OptionalrequestOptions: SigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.signing.get("kid")Copy
revoke(
kid: string,
requestOptions?: SigningClient.RequestOptions,
): HttpResponsePromise<RevokedSigningKeysResponseContent>
Revoke the application signing key with the given ID.
Key id of the key to revoke
OptionalrequestOptions: SigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.signing.revoke("kid")Copy
Protected Readonly_options_options: NormalizedClientOptionsWithAuth<BaseClientOptions>
Member Visibility
ThemeOSLightDark
Constructors constructor Methods listrotategetrevoke Properties _options