-
Notifications
You must be signed in to change notification settings - Fork 0
/
region.go
40 lines (37 loc) · 1.6 KB
/
region.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package azuretts
// https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/ai-services/speech-service/regions.md?plain=1
type Region string
const (
RegionSouthafricanorth Region = "southafricanorth"
RegionEastasia Region = "eastasia"
RegionSoutheastasia Region = "southeastasia"
RegionAustraliaeast Region = "australiaeast"
RegionCentralindia Region = "centralindia"
RegionJapaneast Region = "japaneast"
RegionJapanwest Region = "japanwest"
RegionKoreacentral Region = "koreacentral"
RegionCanadacentral Region = "canadacentral"
RegionNortheurope Region = "northeurope"
RegionWesteurope Region = "westeurope"
RegionFrancecentral Region = "francecentral"
RegionGermanywestcentral Region = "germanywestcentral"
RegionNorwayeast Region = "norwayeast"
RegionSwedentcentral Region = "swedentcentral"
RegionSwitzerlandnorth Region = "switzerlandnorth"
RegionSwitzerlandwest Region = "switzerlandwest"
RegionUksouth Region = "uksouth"
RegionUaenorth Region = "uaenorth"
RegionBrazilsouth Region = "brazilsouth"
RegionCentralus Region = "centralus"
RegionEastus Region = "eastus"
RegionEastus2 Region = "eastus2"
RegionNorthcentralus Region = "northcentralus"
RegionSouthcentralus Region = "southcentralus"
RegionWestcentralus Region = "westcentralus"
RegionWestus Region = "westus"
RegionWestus2 Region = "westus2"
RegionWestus3 Region = "westus3"
)
func (r Region) String() string {
return string(r)
}