diff --git a/src/SelfServe/SqlX/SqlX.rp.ts b/src/SelfServe/SqlX/SqlX.rp.ts index 02bbdffdf..76d732b43 100644 --- a/src/SelfServe/SqlX/SqlX.rp.ts +++ b/src/SelfServe/SqlX/SqlX.rp.ts @@ -24,6 +24,7 @@ export enum ResourceStatus { export interface DedicatedGatewayResponse { sku: string; + dedicatedGatewayType: string; instances: number; status: string; endpoint: string; @@ -42,7 +43,7 @@ export const updateDedicatedGatewayResource = async ( const body: UpdateDedicatedGatewayRequestParameters = { properties: { instanceSize: sku, - // TODO: pass in DedicatedGatewayType into the properties on Update + dedicatedGatewayType: dedicatedGatewayType, instanceCount: instances, serviceType: "SqlDedicatedGateway", }, @@ -114,12 +115,19 @@ export const getCurrentProvisioningState = async (): Promise