Skip to content

Commit 5f39511

Browse files
m-pizarrohjaraujof
authored andcommitted
feat(service): rename table to fix postgres errors
1 parent c1ee8bd commit 5f39511

File tree

4 files changed

+9
-848
lines changed

4 files changed

+9
-848
lines changed

src/enums/serviceMap.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default {
106106
[services.aksManagedCluster]: AzureAksManagedCluster,
107107
[services.appGateway]: AzureApplicationGateway,
108108
[services.metricAlert]: AzureMetricAlert,
109-
[services.applicationGateway]: AzureApplicationGateway,
109+
[services.appGateway]: AzureApplicationGateway,
110110
[services.appServiceEnvironment]: AzureAppServiceEnvironment,
111111
// [services.appServiceKubeEnvironment]: AzureAppServiceKubeEnvironment,
112112
[services.appInsights]: AzureAppInsights,

src/services/applicationGateway/format.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import {
4848
import cuid from 'cuid'
4949
import {
5050
AzureAppGateway,
51-
AzureAppGatewayAppGatewayBackendAddressPool,
51+
AzureAppGatewayAppGatewayBackendAddrPool,
5252
AzureAppGatewayUserAssignedIdentities,
5353
AzureAppGatewayVirtualNetworkTap,
5454
AzureAppGatewayNetIntfIpConfig,
@@ -722,7 +722,7 @@ const formatNetworkInterfaceIPConfiguration = (
722722

723723
const formatApplicationGatewayBackendAddressPool = (
724724
pool: ApplicationGatewayBackendAddressPool
725-
): AzureAppGatewayAppGatewayBackendAddressPool | undefined => {
725+
): AzureAppGatewayAppGatewayBackendAddrPool | undefined => {
726726
return pool
727727
? {
728728
id: pool.id,

src/services/applicationGateway/schema.graphql

+3-3
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ type azureAppGatewayProbe
624624
provisioningState: String @search(by: [hash, regexp])
625625
}
626626

627-
type azureAppGatewayAppGatewayBackendAddressPool
627+
type azureAppGatewayAppGatewayBackendAddrPool
628628
@generate(
629629
query: { get: false, query: false, aggregate: false }
630630
mutation: { add: false, delete: false }
@@ -744,7 +744,7 @@ type azureAppGatewayNetIntfIPConfig
744744
type: String @search(by: [hash, regexp])
745745
gatewayLoadBalancer: azureAppGatewaySubResource
746746
virtualNetworkTaps: [azureAppGatewayVirtualNetworkTap]
747-
appGatewayBackendAddrPools: [azureAppGatewayAppGatewayBackendAddressPool]
747+
appGatewayBackendAddrPools: [azureAppGatewayAppGatewayBackendAddrPool]
748748
loadBalancerBackendAddrPools: [azureAppGatewayBackendAddrPool]
749749
loadBalancerInboundNatRules: [azureAppGatewayInboundNatRule]
750750
privateIPAddress: String @search(by: [hash, regexp])
@@ -1212,7 +1212,7 @@ type azureAppGateway implements azureResource
12121212
frontendIPConfigurations: [azureAppGatewayAppGatewayFrontendIPConfig]
12131213
frontendPorts: [azureAppGatewayFrontendPort]
12141214
probes: [azureAppGatewayProbe]
1215-
backendAddressPools: [azureAppGatewayAppGatewayBackendAddressPool]
1215+
backendAddressPools: [azureAppGatewayAppGatewayBackendAddrPool]
12161216
backendHttpSettingsCollection: [azureAppGatewayBackendHttpSettings]
12171217
httpListeners: [azureAppGatewayHttpListener]
12181218
sslProfiles: [azureAppGatewaySslProfile]

0 commit comments

Comments
 (0)