Skip to content

Commit 38b0a9c

Browse files
authored
feat(mnq): add support for the nl-ams region (#2005)
1 parent f629025 commit 38b0a9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/mnq/v1beta1/mnq_sdk.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ func NewNatsAPI(client *scw.Client) *NatsAPI {
880880
}
881881
}
882882
func (s *NatsAPI) Regions() []scw.Region {
883-
return []scw.Region{scw.RegionFrPar}
883+
return []scw.Region{scw.RegionFrPar, scw.RegionNlAms}
884884
}
885885

886886
// CreateNatsAccount: Create a NATS account associated with a Project.
@@ -1206,7 +1206,7 @@ func NewSnsAPI(client *scw.Client) *SnsAPI {
12061206
}
12071207
}
12081208
func (s *SnsAPI) Regions() []scw.Region {
1209-
return []scw.Region{scw.RegionFrPar}
1209+
return []scw.Region{scw.RegionFrPar, scw.RegionNlAms}
12101210
}
12111211

12121212
// ActivateSns: Activate SNS for the specified Project ID. SNS must be activated before any usage. Activating SNS does not trigger any billing, and you can deactivate at any time.
@@ -1507,7 +1507,7 @@ func NewSqsAPI(client *scw.Client) *SqsAPI {
15071507
}
15081508
}
15091509
func (s *SqsAPI) Regions() []scw.Region {
1510-
return []scw.Region{scw.RegionFrPar}
1510+
return []scw.Region{scw.RegionFrPar, scw.RegionNlAms}
15111511
}
15121512

15131513
// ActivateSqs: Activate SQS for the specified Project ID. SQS must be activated before any usage such as creating credentials and queues. Activating SQS does not trigger any billing, and you can deactivate at any time.

0 commit comments

Comments
 (0)