|
17 | 17 | from sagemaker.jumpstart.types import JumpStartLaunchedRegionInfo |
18 | 18 |
|
19 | 19 |
|
20 | | -JUMPSTART_LAUNCHED_REGIONS: Set[JumpStartLaunchedRegionInfo] = set() |
| 20 | +JUMPSTART_LAUNCHED_REGIONS: Set[JumpStartLaunchedRegionInfo] = set( |
| 21 | + [ |
| 22 | + JumpStartLaunchedRegionInfo( |
| 23 | + region_name="us-west-2", |
| 24 | + content_bucket="jumpstart-cache-prod-us-west-2", |
| 25 | + ), |
| 26 | + JumpStartLaunchedRegionInfo( |
| 27 | + region_name="us-east-1", |
| 28 | + content_bucket="jumpstart-cache-prod-us-east-1", |
| 29 | + ), |
| 30 | + JumpStartLaunchedRegionInfo( |
| 31 | + region_name="us-east-2", |
| 32 | + content_bucket="jumpstart-cache-prod-us-east-2", |
| 33 | + ), |
| 34 | + JumpStartLaunchedRegionInfo( |
| 35 | + region_name="eu-west-1", |
| 36 | + content_bucket="jumpstart-cache-prod-eu-west-1", |
| 37 | + ), |
| 38 | + JumpStartLaunchedRegionInfo( |
| 39 | + region_name="eu-central-1", |
| 40 | + content_bucket="jumpstart-cache-prod-eu-central-1", |
| 41 | + ), |
| 42 | + JumpStartLaunchedRegionInfo( |
| 43 | + region_name="eu-north-1", |
| 44 | + content_bucket="jumpstart-cache-prod-eu-north-1", |
| 45 | + ), |
| 46 | + JumpStartLaunchedRegionInfo( |
| 47 | + region_name="me-south-1", |
| 48 | + content_bucket="jumpstart-cache-prod-me-south-1", |
| 49 | + ), |
| 50 | + JumpStartLaunchedRegionInfo( |
| 51 | + region_name="ap-south-1", |
| 52 | + content_bucket="jumpstart-cache-prod-ap-south-1", |
| 53 | + ), |
| 54 | + JumpStartLaunchedRegionInfo( |
| 55 | + region_name="eu-west-3", |
| 56 | + content_bucket="jumpstart-cache-prod-eu-west-3", |
| 57 | + ), |
| 58 | + JumpStartLaunchedRegionInfo( |
| 59 | + region_name="af-south-1", |
| 60 | + content_bucket="jumpstart-cache-prod-af-south-1", |
| 61 | + ), |
| 62 | + JumpStartLaunchedRegionInfo( |
| 63 | + region_name="sa-east-1", |
| 64 | + content_bucket="jumpstart-cache-prod-sa-east-1", |
| 65 | + ), |
| 66 | + JumpStartLaunchedRegionInfo( |
| 67 | + region_name="ap-east-1", |
| 68 | + content_bucket="jumpstart-cache-prod-ap-east-1", |
| 69 | + ), |
| 70 | + JumpStartLaunchedRegionInfo( |
| 71 | + region_name="ap-northeast-2", |
| 72 | + content_bucket="jumpstart-cache-prod-ap-northeast-2", |
| 73 | + ), |
| 74 | + JumpStartLaunchedRegionInfo( |
| 75 | + region_name="eu-west-2", |
| 76 | + content_bucket="jumpstart-cache-prod-eu-west-2", |
| 77 | + ), |
| 78 | + JumpStartLaunchedRegionInfo( |
| 79 | + region_name="eu-south-1", |
| 80 | + content_bucket="jumpstart-cache-prod-eu-south-1", |
| 81 | + ), |
| 82 | + JumpStartLaunchedRegionInfo( |
| 83 | + region_name="ap-northeast-1", |
| 84 | + content_bucket="jumpstart-cache-prod-ap-northeast-1", |
| 85 | + ), |
| 86 | + JumpStartLaunchedRegionInfo( |
| 87 | + region_name="us-west-1", |
| 88 | + content_bucket="jumpstart-cache-prod-us-west-1", |
| 89 | + ), |
| 90 | + JumpStartLaunchedRegionInfo( |
| 91 | + region_name="ap-southeast-1", |
| 92 | + content_bucket="jumpstart-cache-prod-ap-southeast-1", |
| 93 | + ), |
| 94 | + JumpStartLaunchedRegionInfo( |
| 95 | + region_name="ap-southeast-2", |
| 96 | + content_bucket="jumpstart-cache-prod-ap-southeast-2", |
| 97 | + ), |
| 98 | + JumpStartLaunchedRegionInfo( |
| 99 | + region_name="ca-central-1", |
| 100 | + content_bucket="jumpstart-cache-prod-ca-central-1", |
| 101 | + ), |
| 102 | + JumpStartLaunchedRegionInfo( |
| 103 | + region_name="cn-north-1", |
| 104 | + content_bucket="jumpstart-cache-prod-cn-north-1", |
| 105 | + ), |
| 106 | + JumpStartLaunchedRegionInfo( |
| 107 | + region_name="cn-northwest-1", |
| 108 | + content_bucket="jumpstart-cache-prod-cn-northwest-1", |
| 109 | + ), |
| 110 | + ] |
| 111 | +) |
21 | 112 |
|
22 | 113 | JUMPSTART_REGION_NAME_TO_LAUNCHED_REGION_DICT = { |
23 | 114 | region.region_name: region for region in JUMPSTART_LAUNCHED_REGIONS |
|
0 commit comments