Skip to content

Commit

Permalink
[azure][chore] Adjust service names (#2205)
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias authored Sep 24, 2024
1 parent 550f6bf commit 634d527
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
from fixlib.types import Json

log = logging.getLogger("fix.plugins.azure")
service_name = "azure_compute"
service_name = "compute"


@define(eq=False, slots=False)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from fixlib.json_bender import Bender, S, Bend, ForallBend
from fixlib.types import Json

service_name = "azure_container_service"
service_name = "containers"
log = logging.getLogger("fix.plugins.azure")


Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/cosmosdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from fixlib.json_bender import F, K, Bender, S, ForallBend, Bend, MapEnum, MapValue
from fixlib.types import Json

service_name = "azure_cosmosdb"
service_name = "cosmos-db"
log = logging.getLogger("fix.plugins.azure")


Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/keyvault.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from fixlib.types import Json

log = logging.getLogger("fix.plugins.azure")
service_name = "azure_keyvault"
service_name = "key-vault"


@define(eq=False, slots=False)
Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/machinelearning.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from fixlib.types import Json

log = logging.getLogger("fix.plugins.azure")
service_name = "azure_machinelearning"
service_name = "machine-learning"


class CheckVersionIsArchived:
Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from fixlib.utils import utc_str

log = logging.getLogger("fix.plugins.azure")
service_name = "azure_metric"
service_name = "metric"


@define(eq=False, slots=False)
Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from fixlib.json_bender import K, Bender, S, ForallBend, Bend, MapEnum, MapValue
from fixlib.types import Json

service_name = "azure_mysql"
service_name = "mysql"
log = logging.getLogger("fix.plugins.azure")


Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from fixlib.json_bender import F, Bender, S, Bend, ForallBend, AsInt, StringToUnitNumber, Upper, Lower
from fixlib.types import Json

service_name = "azure_network"
service_name = "networking"
log = logging.getLogger("fix.plugins.azure")


Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from fixlib.json_bender import K, Bender, S, ForallBend, Bend, MapEnum, MapValue
from fixlib.types import Json

service_name = "azure_postgresql"
service_name = "postgresql"
log = logging.getLogger("fix.plugins.azure")


Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/sql_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from fixlib.json_bender import F, K, Bender, S, ForallBend, Bend, MapEnum
from fixlib.types import Json

service_name = "azure_sql"
service_name = "azure-sql"
log = logging.getLogger("fix.plugins.azure")


Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from fixlib.types import Json

log = logging.getLogger("fix.plugins.azure")
service_name = "azure_storage"
service_name = "storage"


@define(eq=False, slots=False)
Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/fix_plugin_azure/resource/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from fixlib.types import Json

log = logging.getLogger("fix.plugins.azure")
service_name = "azure_web"
service_name = "app-service"


@define(eq=False, slots=False)
Expand Down

0 comments on commit 634d527

Please sign in to comment.