File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ export type {
3636 ListTagsResponse ,
3737 Product ,
3838 ProtectSecretRequest ,
39- RestoreSecretRequest ,
40- RestoreSecretVersionRequest ,
4139 SSHKey ,
4240 Secret ,
4341 SecretStatus ,
Original file line number Diff line number Diff line change @@ -945,6 +945,13 @@ export class API extends ParentAPI {
945945 unmarshalGateway ,
946946 )
947947
948+ /**
949+ * Put a Public Gateway in IPAM mode. Put a Public Gateway in IPAM mode, so
950+ * that it can be used with the Public Gateways API v2. This call is
951+ * idempotent.
952+ *
953+ * @param request - The request {@link MigrateToV2Request}
954+ */
948955 migrateToV2 = ( request : Readonly < MigrateToV2Request > ) =>
949956 this . client . fetch < void > ( {
950957 body : '{}' ,
Original file line number Diff line number Diff line change @@ -818,6 +818,7 @@ export interface ListPATRulesResponse {
818818export type MigrateToV2Request = {
819819 /** Zone to target. If none is passed will use default zone from the config. */
820820 zone ?: ScwZone
821+ /** ID of the gateway to put into IPAM mode. */
821822 gatewayId : string
822823}
823824
You can’t perform that action at this time.
0 commit comments