aws-partitions 1.479.0 → 1.946.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2414 -0
- data/VERSION +1 -1
- data/lib/aws-partitions/endpoint_provider.rb +155 -33
- data/lib/aws-partitions/partition.rb +10 -2
- data/lib/aws-partitions/partition_list.rb +50 -0
- data/lib/aws-partitions/service.rb +27 -0
- data/lib/aws-partitions.rb +139 -4
- data/partitions-metadata.json +220 -0
- data/partitions.json +23268 -4815
- metadata +9 -8
data/lib/aws-partitions.rb
CHANGED
@@ -195,6 +195,12 @@ module Aws
|
|
195
195
|
end
|
196
196
|
end
|
197
197
|
|
198
|
+
# @param [Hash] partition_metadata
|
199
|
+
# @api private For Internal use only
|
200
|
+
def merge_metadata(partition_metadata)
|
201
|
+
default_partition_list.merge_metadata(partition_metadata)
|
202
|
+
end
|
203
|
+
|
198
204
|
# @api private For internal use only.
|
199
205
|
def clear
|
200
206
|
default_partition_list.clear
|
@@ -204,7 +210,11 @@ module Aws
|
|
204
210
|
# @return [PartitionList]
|
205
211
|
# @api private
|
206
212
|
def default_partition_list
|
207
|
-
@default_partition_list ||=
|
213
|
+
@default_partition_list ||= begin
|
214
|
+
partitions = PartitionList.build(defaults)
|
215
|
+
partitions.merge_metadata(default_metadata)
|
216
|
+
partitions
|
217
|
+
end
|
208
218
|
end
|
209
219
|
|
210
220
|
# @return [Hash]
|
@@ -217,6 +227,16 @@ module Aws
|
|
217
227
|
end
|
218
228
|
end
|
219
229
|
|
230
|
+
# @return [Hash]
|
231
|
+
# @api private
|
232
|
+
def default_metadata
|
233
|
+
@default_metadata ||= begin
|
234
|
+
path = File.expand_path('../../partitions-metadata.json', __FILE__)
|
235
|
+
defaults = JSON.parse(File.read(path), freeze: true)
|
236
|
+
defaults.merge('partitions' => defaults['partitions'].dup)
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
220
240
|
# @return [Hash<String,String>] Returns a map of service module names
|
221
241
|
# to their id as used in the endpoints.json document.
|
222
242
|
# @api private For internal use only.
|
@@ -227,51 +247,82 @@ module Aws
|
|
227
247
|
'ACM' => 'acm',
|
228
248
|
'ACMPCA' => 'acm-pca',
|
229
249
|
'APIGateway' => 'apigateway',
|
250
|
+
'ARCZonalShift' => 'arc-zonal-shift',
|
230
251
|
'AccessAnalyzer' => 'access-analyzer',
|
231
|
-
'
|
252
|
+
'Account' => 'account',
|
232
253
|
'Amplify' => 'amplify',
|
233
254
|
'AmplifyBackend' => 'amplifybackend',
|
255
|
+
'AmplifyUIBuilder' => 'amplifyuibuilder',
|
234
256
|
'ApiGatewayManagementApi' => 'execute-api',
|
235
257
|
'ApiGatewayV2' => 'apigateway',
|
236
258
|
'AppConfig' => 'appconfig',
|
259
|
+
'AppConfigData' => 'appconfigdata',
|
260
|
+
'AppFabric' => 'appfabric',
|
237
261
|
'AppIntegrationsService' => 'app-integrations',
|
238
262
|
'AppMesh' => 'appmesh',
|
239
263
|
'AppRegistry' => 'servicecatalog-appregistry',
|
240
264
|
'AppRunner' => 'apprunner',
|
241
265
|
'AppStream' => 'appstream2',
|
242
266
|
'AppSync' => 'appsync',
|
267
|
+
'AppTest' => 'apptest',
|
243
268
|
'Appflow' => 'appflow',
|
244
269
|
'ApplicationAutoScaling' => 'application-autoscaling',
|
245
270
|
'ApplicationCostProfiler' => 'application-cost-profiler',
|
246
271
|
'ApplicationDiscoveryService' => 'discovery',
|
247
272
|
'ApplicationInsights' => 'applicationinsights',
|
273
|
+
'ApplicationSignals' => 'application-signals',
|
274
|
+
'Artifact' => 'artifact',
|
248
275
|
'Athena' => 'athena',
|
249
276
|
'AuditManager' => 'auditmanager',
|
250
277
|
'AugmentedAIRuntime' => 'a2i-runtime.sagemaker',
|
251
278
|
'AutoScaling' => 'autoscaling',
|
252
279
|
'AutoScalingPlans' => 'autoscaling-plans',
|
280
|
+
'B2bi' => 'b2bi',
|
281
|
+
'BCMDataExports' => 'bcm-data-exports',
|
253
282
|
'Backup' => 'backup',
|
283
|
+
'BackupGateway' => 'backup-gateway',
|
254
284
|
'Batch' => 'batch',
|
285
|
+
'Bedrock' => 'bedrock',
|
286
|
+
'BedrockAgent' => 'bedrock-agent',
|
287
|
+
'BedrockAgentRuntime' => 'bedrock-agent-runtime',
|
288
|
+
'BedrockRuntime' => 'bedrock-runtime',
|
289
|
+
'BillingConductor' => 'billingconductor',
|
255
290
|
'Braket' => 'braket',
|
256
291
|
'Budgets' => 'budgets',
|
292
|
+
'Chatbot' => 'chatbot',
|
257
293
|
'Chime' => 'chime',
|
294
|
+
'ChimeSDKIdentity' => 'identity-chime',
|
295
|
+
'ChimeSDKMediaPipelines' => 'media-pipelines-chime',
|
296
|
+
'ChimeSDKMeetings' => 'meetings-chime',
|
297
|
+
'ChimeSDKMessaging' => 'messaging-chime',
|
298
|
+
'ChimeSDKVoice' => 'voice-chime',
|
299
|
+
'CleanRooms' => 'cleanrooms',
|
300
|
+
'CleanRoomsML' => 'cleanrooms-ml',
|
258
301
|
'Cloud9' => 'cloud9',
|
302
|
+
'CloudControlApi' => 'cloudcontrolapi',
|
259
303
|
'CloudDirectory' => 'clouddirectory',
|
260
304
|
'CloudFormation' => 'cloudformation',
|
261
305
|
'CloudFront' => 'cloudfront',
|
306
|
+
'CloudFrontKeyValueStore' => 'cloudfront-keyvaluestore',
|
262
307
|
'CloudHSM' => 'cloudhsm',
|
263
308
|
'CloudHSMV2' => 'cloudhsmv2',
|
264
309
|
'CloudSearch' => 'cloudsearch',
|
265
310
|
'CloudTrail' => 'cloudtrail',
|
311
|
+
'CloudTrailData' => 'cloudtrail-data',
|
266
312
|
'CloudWatch' => 'monitoring',
|
267
313
|
'CloudWatchEvents' => 'events',
|
314
|
+
'CloudWatchEvidently' => 'evidently',
|
268
315
|
'CloudWatchLogs' => 'logs',
|
316
|
+
'CloudWatchRUM' => 'rum',
|
269
317
|
'CodeArtifact' => 'codeartifact',
|
270
318
|
'CodeBuild' => 'codebuild',
|
319
|
+
'CodeCatalyst' => 'codecatalyst',
|
271
320
|
'CodeCommit' => 'codecommit',
|
321
|
+
'CodeConnections' => 'codeconnections',
|
272
322
|
'CodeDeploy' => 'codedeploy',
|
273
323
|
'CodeGuruProfiler' => 'codeguru-profiler',
|
274
324
|
'CodeGuruReviewer' => 'codeguru-reviewer',
|
325
|
+
'CodeGuruSecurity' => 'codeguru-security',
|
275
326
|
'CodePipeline' => 'codepipeline',
|
276
327
|
'CodeStar' => 'codestar',
|
277
328
|
'CodeStarNotifications' => 'codestar-notifications',
|
@@ -284,9 +335,15 @@ module Aws
|
|
284
335
|
'ComputeOptimizer' => 'compute-optimizer',
|
285
336
|
'ConfigService' => 'config',
|
286
337
|
'Connect' => 'connect',
|
338
|
+
'ConnectCampaignService' => 'connect-campaigns',
|
339
|
+
'ConnectCases' => 'cases',
|
287
340
|
'ConnectContactLens' => 'contact-lens',
|
288
341
|
'ConnectParticipant' => 'participant.connect',
|
342
|
+
'ConnectWisdomService' => 'wisdom',
|
343
|
+
'ControlCatalog' => 'controlcatalog',
|
344
|
+
'ControlTower' => 'controltower',
|
289
345
|
'CostExplorer' => 'ce',
|
346
|
+
'CostOptimizationHub' => 'cost-optimization-hub',
|
290
347
|
'CostandUsageReportService' => 'cur',
|
291
348
|
'CustomerProfiles' => 'profile',
|
292
349
|
'DAX' => 'dax',
|
@@ -294,13 +351,17 @@ module Aws
|
|
294
351
|
'DataExchange' => 'dataexchange',
|
295
352
|
'DataPipeline' => 'datapipeline',
|
296
353
|
'DataSync' => 'datasync',
|
354
|
+
'DataZone' => 'datazone',
|
297
355
|
'DatabaseMigrationService' => 'dms',
|
356
|
+
'Deadline' => 'deadline',
|
298
357
|
'Detective' => 'api.detective',
|
299
358
|
'DevOpsGuru' => 'devops-guru',
|
300
359
|
'DeviceFarm' => 'devicefarm',
|
301
360
|
'DirectConnect' => 'directconnect',
|
302
361
|
'DirectoryService' => 'ds',
|
303
362
|
'DocDB' => 'rds',
|
363
|
+
'DocDBElastic' => 'docdb-elastic',
|
364
|
+
'Drs' => 'drs',
|
304
365
|
'DynamoDB' => 'dynamodb',
|
305
366
|
'DynamoDBStreams' => 'streams.dynamodb',
|
306
367
|
'EBS' => 'ebs',
|
@@ -311,8 +372,10 @@ module Aws
|
|
311
372
|
'ECS' => 'ecs',
|
312
373
|
'EFS' => 'elasticfilesystem',
|
313
374
|
'EKS' => 'eks',
|
375
|
+
'EKSAuth' => 'eks-auth',
|
314
376
|
'EMR' => 'elasticmapreduce',
|
315
377
|
'EMRContainers' => 'emr-containers',
|
378
|
+
'EMRServerless' => 'emr-serverless',
|
316
379
|
'ElastiCache' => 'elasticache',
|
317
380
|
'ElasticBeanstalk' => 'elasticbeanstalk',
|
318
381
|
'ElasticInference' => 'api.elastic-inference',
|
@@ -320,6 +383,7 @@ module Aws
|
|
320
383
|
'ElasticLoadBalancingV2' => 'elasticloadbalancing',
|
321
384
|
'ElasticTranscoder' => 'elastictranscoder',
|
322
385
|
'ElasticsearchService' => 'es',
|
386
|
+
'EntityResolution' => 'entityresolution',
|
323
387
|
'EventBridge' => 'events',
|
324
388
|
'FIS' => 'fis',
|
325
389
|
'FMS' => 'fms',
|
@@ -330,6 +394,7 @@ module Aws
|
|
330
394
|
'ForecastQueryService' => 'forecastquery',
|
331
395
|
'ForecastService' => 'forecast',
|
332
396
|
'FraudDetector' => 'frauddetector',
|
397
|
+
'FreeTier' => 'freetier',
|
333
398
|
'GameLift' => 'gamelift',
|
334
399
|
'Glacier' => 'glacier',
|
335
400
|
'GlobalAccelerator' => 'globalaccelerator',
|
@@ -341,13 +406,16 @@ module Aws
|
|
341
406
|
'GuardDuty' => 'guardduty',
|
342
407
|
'Health' => 'health',
|
343
408
|
'HealthLake' => 'healthlake',
|
344
|
-
'Honeycode' => 'honeycode',
|
345
409
|
'IAM' => 'iam',
|
346
410
|
'IVS' => 'ivs',
|
411
|
+
'IVSRealTime' => 'ivsrealtime',
|
347
412
|
'IdentityStore' => 'identitystore',
|
348
413
|
'Imagebuilder' => 'imagebuilder',
|
349
414
|
'ImportExport' => 'importexport',
|
350
415
|
'Inspector' => 'inspector',
|
416
|
+
'Inspector2' => 'inspector2',
|
417
|
+
'InspectorScan' => 'inspector-scan',
|
418
|
+
'InternetMonitor' => 'internetmonitor',
|
351
419
|
'IoT' => 'iot',
|
352
420
|
'IoT1ClickDevicesService' => 'devices.iot1click',
|
353
421
|
'IoT1ClickProjects' => 'projects.iot1click',
|
@@ -356,14 +424,20 @@ module Aws
|
|
356
424
|
'IoTEvents' => 'iotevents',
|
357
425
|
'IoTEventsData' => 'data.iotevents',
|
358
426
|
'IoTFleetHub' => 'api.fleethub.iot',
|
427
|
+
'IoTFleetWise' => 'iotfleetwise',
|
359
428
|
'IoTJobsDataPlane' => 'data.jobs.iot',
|
360
429
|
'IoTSecureTunneling' => 'api.tunneling.iot',
|
361
430
|
'IoTSiteWise' => 'iotsitewise',
|
362
431
|
'IoTThingsGraph' => 'iotthingsgraph',
|
432
|
+
'IoTTwinMaker' => 'iottwinmaker',
|
363
433
|
'IoTWireless' => 'api.iotwireless',
|
434
|
+
'Ivschat' => 'ivschat',
|
364
435
|
'KMS' => 'kms',
|
365
436
|
'Kafka' => 'kafka',
|
437
|
+
'KafkaConnect' => 'kafkaconnect',
|
366
438
|
'Kendra' => 'kendra',
|
439
|
+
'KendraRanking' => 'kendra-ranking',
|
440
|
+
'Keyspaces' => 'cassandra',
|
367
441
|
'Kinesis' => 'kinesis',
|
368
442
|
'KinesisAnalytics' => 'kinesisanalytics',
|
369
443
|
'KinesisAnalyticsV2' => 'kinesisanalytics',
|
@@ -371,14 +445,18 @@ module Aws
|
|
371
445
|
'KinesisVideoArchivedMedia' => 'kinesisvideo',
|
372
446
|
'KinesisVideoMedia' => 'kinesisvideo',
|
373
447
|
'KinesisVideoSignalingChannels' => 'kinesisvideo',
|
448
|
+
'KinesisVideoWebRTCStorage' => 'kinesisvideo',
|
374
449
|
'LakeFormation' => 'lakeformation',
|
375
450
|
'Lambda' => 'lambda',
|
376
451
|
'LambdaPreview' => 'lambda',
|
452
|
+
'LaunchWizard' => 'launchwizard',
|
377
453
|
'Lex' => 'runtime.lex',
|
378
454
|
'LexModelBuildingService' => 'models.lex',
|
379
455
|
'LexModelsV2' => 'models-v2-lex',
|
380
456
|
'LexRuntimeV2' => 'runtime-v2-lex',
|
381
457
|
'LicenseManager' => 'license-manager',
|
458
|
+
'LicenseManagerLinuxSubscriptions' => 'license-manager-linux-subscriptions',
|
459
|
+
'LicenseManagerUserSubscriptions' => 'license-manager-user-subscriptions',
|
382
460
|
'Lightsail' => 'lightsail',
|
383
461
|
'LocationService' => 'geo',
|
384
462
|
'LookoutEquipment' => 'lookoutequipment',
|
@@ -388,58 +466,97 @@ module Aws
|
|
388
466
|
'MTurk' => 'mturk-requester',
|
389
467
|
'MWAA' => 'airflow',
|
390
468
|
'MachineLearning' => 'machinelearning',
|
391
|
-
'Macie' => 'macie',
|
392
469
|
'Macie2' => 'macie2',
|
470
|
+
'MailManager' => 'mail-manager',
|
471
|
+
'MainframeModernization' => 'm2',
|
393
472
|
'ManagedBlockchain' => 'managedblockchain',
|
473
|
+
'ManagedBlockchainQuery' => 'managedblockchain-query',
|
474
|
+
'ManagedGrafana' => 'grafana',
|
475
|
+
'MarketplaceAgreement' => 'agreement-marketplace',
|
394
476
|
'MarketplaceCatalog' => 'catalog.marketplace',
|
395
477
|
'MarketplaceCommerceAnalytics' => 'marketplacecommerceanalytics',
|
478
|
+
'MarketplaceDeployment' => 'deployment-marketplace',
|
396
479
|
'MarketplaceEntitlementService' => 'entitlement.marketplace',
|
397
480
|
'MarketplaceMetering' => 'metering.marketplace',
|
398
481
|
'MediaConnect' => 'mediaconnect',
|
399
482
|
'MediaConvert' => 'mediaconvert',
|
400
483
|
'MediaLive' => 'medialive',
|
401
484
|
'MediaPackage' => 'mediapackage',
|
485
|
+
'MediaPackageV2' => 'mediapackagev2',
|
402
486
|
'MediaPackageVod' => 'mediapackage-vod',
|
403
487
|
'MediaStore' => 'mediastore',
|
404
488
|
'MediaStoreData' => 'data.mediastore',
|
405
489
|
'MediaTailor' => 'api.mediatailor',
|
490
|
+
'MedicalImaging' => 'medical-imaging',
|
491
|
+
'MemoryDB' => 'memory-db',
|
406
492
|
'Mgn' => 'mgn',
|
407
493
|
'MigrationHub' => 'mgh',
|
408
494
|
'MigrationHubConfig' => 'migrationhub-config',
|
495
|
+
'MigrationHubOrchestrator' => 'migrationhub-orchestrator',
|
496
|
+
'MigrationHubRefactorSpaces' => 'refactor-spaces',
|
497
|
+
'MigrationHubStrategyRecommendations' => 'migrationhub-strategy',
|
409
498
|
'Mobile' => 'mobile',
|
410
499
|
'Neptune' => 'rds',
|
500
|
+
'NeptuneGraph' => 'neptune-graph',
|
501
|
+
'Neptunedata' => 'neptune-db',
|
411
502
|
'NetworkFirewall' => 'network-firewall',
|
412
503
|
'NetworkManager' => 'networkmanager',
|
504
|
+
'NetworkMonitor' => 'networkmonitor',
|
413
505
|
'NimbleStudio' => 'nimble',
|
506
|
+
'OAM' => 'oam',
|
507
|
+
'OSIS' => 'osis',
|
508
|
+
'Omics' => 'omics',
|
509
|
+
'OpenSearchServerless' => 'aoss',
|
510
|
+
'OpenSearchService' => 'es',
|
414
511
|
'OpsWorks' => 'opsworks',
|
415
512
|
'OpsWorksCM' => 'opsworks-cm',
|
416
513
|
'Organizations' => 'organizations',
|
417
514
|
'Outposts' => 'outposts',
|
418
515
|
'PI' => 'pi',
|
516
|
+
'Panorama' => 'panorama',
|
517
|
+
'PaymentCryptography' => 'controlplane.payment-cryptography',
|
518
|
+
'PaymentCryptographyData' => 'dataplane.payment-cryptography',
|
519
|
+
'PcaConnectorAd' => 'pca-connector-ad',
|
520
|
+
'PcaConnectorScep' => 'pca-connector-scep',
|
419
521
|
'Personalize' => 'personalize',
|
420
522
|
'PersonalizeEvents' => 'personalize-events',
|
421
523
|
'PersonalizeRuntime' => 'personalize-runtime',
|
422
524
|
'Pinpoint' => 'pinpoint',
|
423
525
|
'PinpointEmail' => 'email',
|
424
526
|
'PinpointSMSVoice' => 'sms-voice.pinpoint',
|
527
|
+
'PinpointSMSVoiceV2' => 'sms-voice',
|
528
|
+
'Pipes' => 'pipes',
|
425
529
|
'Polly' => 'polly',
|
426
530
|
'Pricing' => 'api.pricing',
|
531
|
+
'PrivateNetworks' => 'private-networks',
|
427
532
|
'PrometheusService' => 'aps',
|
428
533
|
'Proton' => 'proton',
|
534
|
+
'QBusiness' => 'qbusiness',
|
535
|
+
'QConnect' => 'wisdom',
|
429
536
|
'QLDB' => 'qldb',
|
430
537
|
'QLDBSession' => 'session.qldb',
|
431
538
|
'QuickSight' => 'quicksight',
|
432
539
|
'RAM' => 'ram',
|
433
540
|
'RDS' => 'rds',
|
434
541
|
'RDSDataService' => 'rds-data',
|
542
|
+
'RecycleBin' => 'rbin',
|
435
543
|
'Redshift' => 'redshift',
|
436
544
|
'RedshiftDataAPIService' => 'redshift-data',
|
545
|
+
'RedshiftServerless' => 'redshift-serverless',
|
437
546
|
'Rekognition' => 'rekognition',
|
547
|
+
'Repostspace' => 'repostspace',
|
548
|
+
'ResilienceHub' => 'resiliencehub',
|
549
|
+
'ResourceExplorer2' => 'resource-explorer-2',
|
438
550
|
'ResourceGroups' => 'resource-groups',
|
439
551
|
'ResourceGroupsTaggingAPI' => 'tagging',
|
440
552
|
'RoboMaker' => 'robomaker',
|
553
|
+
'RolesAnywhere' => 'rolesanywhere',
|
441
554
|
'Route53' => 'route53',
|
442
555
|
'Route53Domains' => 'route53domains',
|
556
|
+
'Route53Profiles' => 'route53profiles',
|
557
|
+
'Route53RecoveryCluster' => 'route53-recovery-cluster',
|
558
|
+
'Route53RecoveryControlConfig' => 'route53-recovery-control-config',
|
559
|
+
'Route53RecoveryReadiness' => 'route53-recovery-readiness',
|
443
560
|
'Route53Resolver' => 'route53resolver',
|
444
561
|
'S3' => 's3',
|
445
562
|
'S3Control' => 's3-control',
|
@@ -459,31 +576,47 @@ module Aws
|
|
459
576
|
'SWF' => 'swf',
|
460
577
|
'SageMaker' => 'api.sagemaker',
|
461
578
|
'SageMakerFeatureStoreRuntime' => 'featurestore-runtime.sagemaker',
|
579
|
+
'SageMakerGeospatial' => 'sagemaker-geospatial',
|
580
|
+
'SageMakerMetrics' => 'metrics.sagemaker',
|
462
581
|
'SageMakerRuntime' => 'runtime.sagemaker',
|
463
582
|
'SagemakerEdgeManager' => 'edge.sagemaker',
|
464
583
|
'SavingsPlans' => 'savingsplans',
|
584
|
+
'Scheduler' => 'scheduler',
|
465
585
|
'Schemas' => 'schemas',
|
466
586
|
'SecretsManager' => 'secretsmanager',
|
467
587
|
'SecurityHub' => 'securityhub',
|
588
|
+
'SecurityLake' => 'securitylake',
|
468
589
|
'ServerlessApplicationRepository' => 'serverlessrepo',
|
469
590
|
'ServiceCatalog' => 'servicecatalog',
|
470
591
|
'ServiceDiscovery' => 'servicediscovery',
|
471
592
|
'ServiceQuotas' => 'servicequotas',
|
472
593
|
'Shield' => 'shield',
|
473
594
|
'Signer' => 'signer',
|
595
|
+
'SimSpaceWeaver' => 'simspaceweaver',
|
474
596
|
'SimpleDB' => 'sdb',
|
597
|
+
'SnowDeviceManagement' => 'snow-device-management',
|
475
598
|
'Snowball' => 'snowball',
|
599
|
+
'SsmSap' => 'ssm-sap',
|
476
600
|
'States' => 'states',
|
477
601
|
'StorageGateway' => 'storagegateway',
|
602
|
+
'SupplyChain' => 'scn',
|
478
603
|
'Support' => 'support',
|
604
|
+
'SupportApp' => 'supportapp',
|
479
605
|
'Synthetics' => 'synthetics',
|
606
|
+
'TaxSettings' => 'tax',
|
480
607
|
'Textract' => 'textract',
|
608
|
+
'TimestreamInfluxDB' => 'timestream-influxdb',
|
481
609
|
'TimestreamQuery' => 'query.timestream',
|
482
610
|
'TimestreamWrite' => 'ingest.timestream',
|
611
|
+
'Tnb' => 'tnb',
|
483
612
|
'TranscribeService' => 'transcribe',
|
484
613
|
'TranscribeStreamingService' => 'transcribestreaming',
|
485
614
|
'Transfer' => 'transfer',
|
486
615
|
'Translate' => 'translate',
|
616
|
+
'TrustedAdvisor' => 'trustedadvisor',
|
617
|
+
'VPCLattice' => 'vpc-lattice',
|
618
|
+
'VerifiedPermissions' => 'verifiedpermissions',
|
619
|
+
'VoiceID' => 'voiceid',
|
487
620
|
'WAF' => 'waf',
|
488
621
|
'WAFRegional' => 'waf-regional',
|
489
622
|
'WAFV2' => 'wafv2',
|
@@ -493,6 +626,8 @@ module Aws
|
|
493
626
|
'WorkMail' => 'workmail',
|
494
627
|
'WorkMailMessageFlow' => 'workmailmessageflow',
|
495
628
|
'WorkSpaces' => 'workspaces',
|
629
|
+
'WorkSpacesThinClient' => 'thinclient',
|
630
|
+
'WorkSpacesWeb' => 'workspaces-web',
|
496
631
|
'XRay' => 'xray',
|
497
632
|
}
|
498
633
|
# end service ids
|
@@ -0,0 +1,220 @@
|
|
1
|
+
{
|
2
|
+
"partitions" : [ {
|
3
|
+
"id" : "aws",
|
4
|
+
"outputs" : {
|
5
|
+
"dnsSuffix" : "amazonaws.com",
|
6
|
+
"dualStackDnsSuffix" : "api.aws",
|
7
|
+
"implicitGlobalRegion" : "us-east-1",
|
8
|
+
"name" : "aws",
|
9
|
+
"supportsDualStack" : true,
|
10
|
+
"supportsFIPS" : true
|
11
|
+
},
|
12
|
+
"regionRegex" : "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$",
|
13
|
+
"regions" : {
|
14
|
+
"af-south-1" : {
|
15
|
+
"description" : "Africa (Cape Town)"
|
16
|
+
},
|
17
|
+
"ap-east-1" : {
|
18
|
+
"description" : "Asia Pacific (Hong Kong)"
|
19
|
+
},
|
20
|
+
"ap-northeast-1" : {
|
21
|
+
"description" : "Asia Pacific (Tokyo)"
|
22
|
+
},
|
23
|
+
"ap-northeast-2" : {
|
24
|
+
"description" : "Asia Pacific (Seoul)"
|
25
|
+
},
|
26
|
+
"ap-northeast-3" : {
|
27
|
+
"description" : "Asia Pacific (Osaka)"
|
28
|
+
},
|
29
|
+
"ap-south-1" : {
|
30
|
+
"description" : "Asia Pacific (Mumbai)"
|
31
|
+
},
|
32
|
+
"ap-south-2" : {
|
33
|
+
"description" : "Asia Pacific (Hyderabad)"
|
34
|
+
},
|
35
|
+
"ap-southeast-1" : {
|
36
|
+
"description" : "Asia Pacific (Singapore)"
|
37
|
+
},
|
38
|
+
"ap-southeast-2" : {
|
39
|
+
"description" : "Asia Pacific (Sydney)"
|
40
|
+
},
|
41
|
+
"ap-southeast-3" : {
|
42
|
+
"description" : "Asia Pacific (Jakarta)"
|
43
|
+
},
|
44
|
+
"ap-southeast-4" : {
|
45
|
+
"description" : "Asia Pacific (Melbourne)"
|
46
|
+
},
|
47
|
+
"aws-global" : {
|
48
|
+
"description" : "AWS Standard global region"
|
49
|
+
},
|
50
|
+
"ca-central-1" : {
|
51
|
+
"description" : "Canada (Central)"
|
52
|
+
},
|
53
|
+
"ca-west-1" : {
|
54
|
+
"description" : "Canada West (Calgary)"
|
55
|
+
},
|
56
|
+
"eu-central-1" : {
|
57
|
+
"description" : "Europe (Frankfurt)"
|
58
|
+
},
|
59
|
+
"eu-central-2" : {
|
60
|
+
"description" : "Europe (Zurich)"
|
61
|
+
},
|
62
|
+
"eu-north-1" : {
|
63
|
+
"description" : "Europe (Stockholm)"
|
64
|
+
},
|
65
|
+
"eu-south-1" : {
|
66
|
+
"description" : "Europe (Milan)"
|
67
|
+
},
|
68
|
+
"eu-south-2" : {
|
69
|
+
"description" : "Europe (Spain)"
|
70
|
+
},
|
71
|
+
"eu-west-1" : {
|
72
|
+
"description" : "Europe (Ireland)"
|
73
|
+
},
|
74
|
+
"eu-west-2" : {
|
75
|
+
"description" : "Europe (London)"
|
76
|
+
},
|
77
|
+
"eu-west-3" : {
|
78
|
+
"description" : "Europe (Paris)"
|
79
|
+
},
|
80
|
+
"il-central-1" : {
|
81
|
+
"description" : "Israel (Tel Aviv)"
|
82
|
+
},
|
83
|
+
"me-central-1" : {
|
84
|
+
"description" : "Middle East (UAE)"
|
85
|
+
},
|
86
|
+
"me-south-1" : {
|
87
|
+
"description" : "Middle East (Bahrain)"
|
88
|
+
},
|
89
|
+
"sa-east-1" : {
|
90
|
+
"description" : "South America (Sao Paulo)"
|
91
|
+
},
|
92
|
+
"us-east-1" : {
|
93
|
+
"description" : "US East (N. Virginia)"
|
94
|
+
},
|
95
|
+
"us-east-2" : {
|
96
|
+
"description" : "US East (Ohio)"
|
97
|
+
},
|
98
|
+
"us-west-1" : {
|
99
|
+
"description" : "US West (N. California)"
|
100
|
+
},
|
101
|
+
"us-west-2" : {
|
102
|
+
"description" : "US West (Oregon)"
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}, {
|
106
|
+
"id" : "aws-cn",
|
107
|
+
"outputs" : {
|
108
|
+
"dnsSuffix" : "amazonaws.com.cn",
|
109
|
+
"dualStackDnsSuffix" : "api.amazonwebservices.com.cn",
|
110
|
+
"implicitGlobalRegion" : "cn-northwest-1",
|
111
|
+
"name" : "aws-cn",
|
112
|
+
"supportsDualStack" : true,
|
113
|
+
"supportsFIPS" : true
|
114
|
+
},
|
115
|
+
"regionRegex" : "^cn\\-\\w+\\-\\d+$",
|
116
|
+
"regions" : {
|
117
|
+
"aws-cn-global" : {
|
118
|
+
"description" : "AWS China global region"
|
119
|
+
},
|
120
|
+
"cn-north-1" : {
|
121
|
+
"description" : "China (Beijing)"
|
122
|
+
},
|
123
|
+
"cn-northwest-1" : {
|
124
|
+
"description" : "China (Ningxia)"
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}, {
|
128
|
+
"id" : "aws-us-gov",
|
129
|
+
"outputs" : {
|
130
|
+
"dnsSuffix" : "amazonaws.com",
|
131
|
+
"dualStackDnsSuffix" : "api.aws",
|
132
|
+
"implicitGlobalRegion" : "us-gov-west-1",
|
133
|
+
"name" : "aws-us-gov",
|
134
|
+
"supportsDualStack" : true,
|
135
|
+
"supportsFIPS" : true
|
136
|
+
},
|
137
|
+
"regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$",
|
138
|
+
"regions" : {
|
139
|
+
"aws-us-gov-global" : {
|
140
|
+
"description" : "AWS GovCloud (US) global region"
|
141
|
+
},
|
142
|
+
"us-gov-east-1" : {
|
143
|
+
"description" : "AWS GovCloud (US-East)"
|
144
|
+
},
|
145
|
+
"us-gov-west-1" : {
|
146
|
+
"description" : "AWS GovCloud (US-West)"
|
147
|
+
}
|
148
|
+
}
|
149
|
+
}, {
|
150
|
+
"id" : "aws-iso",
|
151
|
+
"outputs" : {
|
152
|
+
"dnsSuffix" : "c2s.ic.gov",
|
153
|
+
"dualStackDnsSuffix" : "c2s.ic.gov",
|
154
|
+
"implicitGlobalRegion" : "us-iso-east-1",
|
155
|
+
"name" : "aws-iso",
|
156
|
+
"supportsDualStack" : false,
|
157
|
+
"supportsFIPS" : true
|
158
|
+
},
|
159
|
+
"regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$",
|
160
|
+
"regions" : {
|
161
|
+
"aws-iso-global" : {
|
162
|
+
"description" : "AWS ISO (US) global region"
|
163
|
+
},
|
164
|
+
"us-iso-east-1" : {
|
165
|
+
"description" : "US ISO East"
|
166
|
+
},
|
167
|
+
"us-iso-west-1" : {
|
168
|
+
"description" : "US ISO WEST"
|
169
|
+
}
|
170
|
+
}
|
171
|
+
}, {
|
172
|
+
"id" : "aws-iso-b",
|
173
|
+
"outputs" : {
|
174
|
+
"dnsSuffix" : "sc2s.sgov.gov",
|
175
|
+
"dualStackDnsSuffix" : "sc2s.sgov.gov",
|
176
|
+
"implicitGlobalRegion" : "us-isob-east-1",
|
177
|
+
"name" : "aws-iso-b",
|
178
|
+
"supportsDualStack" : false,
|
179
|
+
"supportsFIPS" : true
|
180
|
+
},
|
181
|
+
"regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$",
|
182
|
+
"regions" : {
|
183
|
+
"aws-iso-b-global" : {
|
184
|
+
"description" : "AWS ISOB (US) global region"
|
185
|
+
},
|
186
|
+
"us-isob-east-1" : {
|
187
|
+
"description" : "US ISOB East (Ohio)"
|
188
|
+
}
|
189
|
+
}
|
190
|
+
}, {
|
191
|
+
"id" : "aws-iso-e",
|
192
|
+
"outputs" : {
|
193
|
+
"dnsSuffix" : "cloud.adc-e.uk",
|
194
|
+
"dualStackDnsSuffix" : "cloud.adc-e.uk",
|
195
|
+
"implicitGlobalRegion" : "eu-isoe-west-1",
|
196
|
+
"name" : "aws-iso-e",
|
197
|
+
"supportsDualStack" : false,
|
198
|
+
"supportsFIPS" : true
|
199
|
+
},
|
200
|
+
"regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$",
|
201
|
+
"regions" : {
|
202
|
+
"eu-isoe-west-1" : {
|
203
|
+
"description" : "EU ISOE West"
|
204
|
+
}
|
205
|
+
}
|
206
|
+
}, {
|
207
|
+
"id" : "aws-iso-f",
|
208
|
+
"outputs" : {
|
209
|
+
"dnsSuffix" : "csp.hci.ic.gov",
|
210
|
+
"dualStackDnsSuffix" : "csp.hci.ic.gov",
|
211
|
+
"implicitGlobalRegion" : "us-isof-south-1",
|
212
|
+
"name" : "aws-iso-f",
|
213
|
+
"supportsDualStack" : false,
|
214
|
+
"supportsFIPS" : true
|
215
|
+
},
|
216
|
+
"regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$",
|
217
|
+
"regions" : { }
|
218
|
+
} ],
|
219
|
+
"version" : "1.1"
|
220
|
+
}
|