Skip to content

New region codes: XSP, UKY #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/).
====================

# Unreleased

## Added

- Cloud only: New regions: ap-singapore-2, ap-dcc-osaka-1

# 5.4.2 - 2024-05-13

## Added
Expand Down
6 changes: 6 additions & 0 deletions src/borneo/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,8 @@ class Regions(object):
"""Region Location: Seoul, South Korea"""
AP_SINGAPORE_1 = Region('ap-singapore-1')
"""Region Location: Singapore"""
AP_SINGAPORE_2 = Region('ap-singapore-2')
"""Region Location: Singapore"""
AP_SYDNEY_1 = Region('ap-sydney-1')
"""Region Location: Sydney, Australia"""
AP_TOKYO_1 = Region('ap-tokyo-1')
Expand Down Expand Up @@ -635,6 +637,8 @@ class Regions(object):
# OC25
AP_DCC_TOKYO_1 = Region('ap-dcc-tokyo-1')
"""Region Location: Tokyo, Japan"""
AP_DCC_OSAKA_1 = Region('ap-dcc-osaka-1')
"""Region Location: Osaka, Japan"""

# OC26
ME_ABUDHABI_3 = Region('me-abudhabi-3')
Expand Down Expand Up @@ -664,6 +668,7 @@ class Regions(object):
OC1_REGIONS[AP_OSAKA_1.get_region_id()] = AP_OSAKA_1
OC1_REGIONS[AP_SEOUL_1.get_region_id()] = AP_SEOUL_1
OC1_REGIONS[AP_SINGAPORE_1.get_region_id()] = AP_SINGAPORE_1
OC1_REGIONS[AP_SINGAPORE_2.get_region_id()] = AP_SINGAPORE_2
OC1_REGIONS[AP_SYDNEY_1.get_region_id()] = AP_SYDNEY_1
OC1_REGIONS[AP_TOKYO_1.get_region_id()] = AP_TOKYO_1

Expand Down Expand Up @@ -798,6 +803,7 @@ class Regions(object):
OC25_REGIONS = dict()
"""A dict containing the OC25 regions."""
OC25_REGIONS[AP_DCC_TOKYO_1.get_region_id()] = AP_DCC_TOKYO_1
OC25_REGIONS[AP_DCC_OSAKA_1.get_region_id()] = AP_DCC_OSAKA_1

# OC26
OC26_REGIONS = dict()
Expand Down