Documentation update

This commit is contained in:
2021-10-20 16:18:18 +09:00
parent a56f33c81c
commit 94ea118731
3 changed files with 27 additions and 8 deletions

View File

@@ -266,6 +266,30 @@ class AWS
} }
/** /**
* get the region based on endpoint
* list as of 2021/10/20
* WHERE URL REGION
* North America https://agcod-v2-gamma.amazon.com us-east-1
* https://agcod-v2.amazon.com
* (US, CA, MX)
* Europe and Asia https://agcod-v2-eu-gamma.amazon.com eu-west-1
* https://agcod-v2-eu.amazon.com
* (IT, ES, DE, FR, UK, TR, UAE, KSA, PL, NL, SE)
* Far East https://agcod-v2-fe-gamma.amazon.com us-west-2
* https://agcod-v2-fe.amazon.com
* (JP, AU, SG)
*
* CURRENCY
* USD for US
* EUR for EU (IT, ES, DE, FR, PL, NL, SE)
* JPY for JP
* CAD for CA
* AUD for AU
* TRY for TR
* AED for UAE
* MXN for MX
* GBP for UK
*
* @return string * @return string
*/ */
public function getRegion(): string public function getRegion(): string

View File

@@ -74,12 +74,6 @@ class AmazonIncentives
// PRIVATE HELPER METHODS // PRIVATE HELPER METHODS
// ********************************************************************* // *********************************************************************
// *********************************************************************
// PUBLIC DEBUG METHODS
// *********************************************************************
// like log collector (array) and returner
// ********************************************************************* // *********************************************************************
// PUBLIC METHODS // PUBLIC METHODS
// ********************************************************************* // *********************************************************************

View File

@@ -102,13 +102,14 @@ Far East https://agcod-v2-fe-gamma.amazon.com us-west-2
CURRENCY CURRENCY
USD for US USD for US
EUR for EU EUR for EU (IT, ES, DE, FR, PL, NL, SE)
JPY for JP JPY for JP
CAD for CA CAD for CA
AUD for AU AUD for AU
TRY for TR TRY for TR
AED for UAE AED for UAE
MXN for MX
GBP for UK
*/ */
$fp = fopen('log/debug.' . date('YmdHis') . '.log', 'w'); $fp = fopen('log/debug.' . date('YmdHis') . '.log', 'w');