docs/classes/management.SDK.CustomSigningClient.html
new CustomSigningClient(options: BaseClientOptions): CustomSigningClient
get(
requestOptions?: CustomSigningClient.RequestOptions,
): HttpResponsePromise<GetCustomSigningKeysResponseContent>
Get entire jwks representation of custom signing keys.
OptionalrequestOptions: CustomSigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.customSigning.get()Copy
set(
request: SetCustomSigningKeysRequestContent,
requestOptions?: CustomSigningClient.RequestOptions,
): HttpResponsePromise<SetCustomSigningKeysResponseContent>
Create or replace entire jwks representation of custom signing keys.
OptionalrequestOptions: CustomSigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.customSigning.set({ keys: [{ kty: "EC" }] })Copy
delete(
requestOptions?: CustomSigningClient.RequestOptions,
): HttpResponsePromise<void>
Delete entire jwks representation of custom signing keys.
OptionalrequestOptions: CustomSigningClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.keys.customSigning.delete()Copy
Protected Readonly_options_options: NormalizedClientOptionsWithAuth<BaseClientOptions>
Member Visibility
ThemeOSLightDark
Constructors constructor Methods getsetdelete Properties _options