File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
packages/clients/src/api/vpcgw/v1 Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -953,6 +953,12 @@ export class API extends ParentAPI {
953953 ) } /ips/${ validatePathParam ( 'ipId' , request . ipId ) } `,
954954 } )
955955
956+ /**
957+ * Refresh SSH keys of a VPC Public Gateway
958+ *
959+ * @param request - The request {@link RefreshSSHKeysRequest}
960+ * @returns A Promise of Gateway
961+ */
956962 refreshSSHKeys = ( request : Readonly < RefreshSSHKeysRequest > ) =>
957963 this . client . fetch < Gateway > (
958964 {
Original file line number Diff line number Diff line change @@ -936,5 +936,6 @@ export type DeleteIPRequest = {
936936export type RefreshSSHKeysRequest = {
937937 /** Zone to target. If none is passed will use default zone from the config */
938938 zone ?: Zone
939+ /** ID of the gateway that needs fresh ssh keys */
939940 gatewayId : string
940941}
You can’t perform that action at this time.
0 commit comments