@aws-sdk/client-bedrock-agentcore-control 3.1103.0 → 3.1105.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.
- package/README.md +84 -0
- package/dist-cjs/index.js +745 -91
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/BatchPutGatewayRateLimitsCommand.js +4 -0
- package/dist-es/commands/CreateCapacityProviderCommand.js +4 -0
- package/dist-es/commands/CreateGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/DeleteCapacityProviderCommand.js +4 -0
- package/dist-es/commands/DeleteGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/GetCapacityProviderCommand.js +4 -0
- package/dist-es/commands/GetGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.js +4 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +4 -0
- package/dist-es/commands/ListGatewayRateLimitsCommand.js +4 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +4 -0
- package/dist-es/commands/UpdateGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +48 -0
- package/dist-es/models/errors.js +13 -0
- package/dist-es/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRateLimitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +546 -91
- package/dist-types/BedrockAgentCoreControl.d.ts +106 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/BatchPutGatewayRateLimitsCommand.d.ts +164 -0
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +189 -0
- package/dist-types/commands/CreateGatewayRateLimitCommand.d.ts +156 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +16 -0
- package/dist-types/commands/CreateHarnessCommand.d.ts +8 -0
- package/dist-types/commands/CreateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -1
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayRateLimitCommand.d.ts +91 -0
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHarnessCommand.d.ts +4 -0
- package/dist-types/commands/DeleteHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/GetCapacityProviderCommand.d.ts +180 -0
- package/dist-types/commands/GetGatewayRateLimitCommand.d.ts +120 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +4 -0
- package/dist-types/commands/GetHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/commands/GetPolicyGenerationSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicySummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetTokenVaultCommand.d.ts +1 -1
- package/dist-types/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.d.ts +92 -0
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +93 -0
- package/dist-types/commands/ListGatewayRateLimitsCommand.d.ts +126 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +2 -2
- package/dist-types/commands/ListHarnessEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicySummariesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +101 -0
- package/dist-types/commands/UpdateGatewayRateLimitCommand.d.ts +149 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHarnessCommand.d.ts +8 -0
- package/dist-types/commands/UpdateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +112 -0
- package/dist-types/models/errors.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +2529 -2373
- package/dist-types/models/models_1.d.ts +4418 -4735
- package/dist-types/models/models_2.d.ts +1467 -3
- package/dist-types/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRateLimitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +63 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +226 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/BatchPutGatewayRateLimitsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetPolicyGenerationSummaryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicySummaryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTokenVaultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGatewayRateLimitsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListHarnessEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationSummariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicySummariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +60 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +363 -369
- package/dist-types/ts3.4/models/models_1.d.ts +371 -410
- package/dist-types/ts3.4/models/models_2.d.ts +410 -13
- package/dist-types/ts3.4/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRateLimitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +63 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1104.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -274,6 +274,19 @@ class UnauthorizedException extends BedrockAgentCoreControlServiceException {
|
|
|
274
274
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
275
275
|
}
|
|
276
276
|
}
|
|
277
|
+
class RetryableConflictException extends BedrockAgentCoreControlServiceException {
|
|
278
|
+
name = "RetryableConflictException";
|
|
279
|
+
$fault = "client";
|
|
280
|
+
$retryable = {};
|
|
281
|
+
constructor(opts) {
|
|
282
|
+
super({
|
|
283
|
+
name: "RetryableConflictException",
|
|
284
|
+
$fault: "client",
|
|
285
|
+
...opts,
|
|
286
|
+
});
|
|
287
|
+
Object.setPrototypeOf(this, RetryableConflictException.prototype);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
277
290
|
class ServiceException extends BedrockAgentCoreControlServiceException {
|
|
278
291
|
name = "ServiceException";
|
|
279
292
|
$fault = "server";
|
|
@@ -340,6 +353,8 @@ const _AR = "AgentRuntime";
|
|
|
340
353
|
const _ARA = "AgentRuntimeArtifact";
|
|
341
354
|
const _ARE = "AgentRuntimeEndpoint";
|
|
342
355
|
const _AREg = "AgentRuntimeEndpoints";
|
|
356
|
+
const _ARVS = "AgentRuntimeVersionSummary";
|
|
357
|
+
const _ARVSL = "AgentRuntimeVersionSummaryList";
|
|
343
358
|
const _ARg = "AgentRuntimes";
|
|
344
359
|
const _ASC = "ApiSchemaConfiguration";
|
|
345
360
|
const _ASD = "AgentSkillsDescriptor";
|
|
@@ -349,6 +364,11 @@ const _BEMC = "BedrockEvaluatorModelConfig";
|
|
|
349
364
|
const _BEP = "BrowserEnterprisePolicy";
|
|
350
365
|
const _BEPr = "BrowserEnterprisePolicies";
|
|
351
366
|
const _BNC = "BrowserNetworkConfiguration";
|
|
367
|
+
const _BPGRL = "BatchPutGatewayRateLimits";
|
|
368
|
+
const _BPGRLR = "BatchPutGatewayRateLimitsRequest";
|
|
369
|
+
const _BPGRLRa = "BatchPutGatewayRateLimitsResponse";
|
|
370
|
+
const _BPLE = "BatchPutLimitEntry";
|
|
371
|
+
const _BPLEa = "BatchPutLimitEntries";
|
|
352
372
|
const _BPS = "BrowserProfileSummary";
|
|
353
373
|
const _BPSr = "BrowserProfileSummaries";
|
|
354
374
|
const _BS = "BrowserSummary";
|
|
@@ -393,10 +413,14 @@ const _CCIRr = "CreateCodeInterpreterResponse";
|
|
|
393
413
|
const _CCIr = "CreateCodeInterpreter";
|
|
394
414
|
const _CCL = "ContentConfigurationList";
|
|
395
415
|
const _CCM = "ComponentConfigurationMap";
|
|
416
|
+
const _CCP = "CreateCapacityProvider";
|
|
417
|
+
const _CCPI = "CreateCapacityProviderInput";
|
|
418
|
+
const _CCPO = "CreateCapacityProviderOutput";
|
|
396
419
|
const _CCVT = "CustomClaimValidationType";
|
|
397
420
|
const _CCVTu = "CustomClaimValidationsType";
|
|
398
421
|
const _CCo = "CodeConfiguration";
|
|
399
422
|
const _CCom = "ComponentConfiguration";
|
|
423
|
+
const _CComp = "ComputeConfiguration";
|
|
400
424
|
const _CCon = "ConnectorConfiguration";
|
|
401
425
|
const _CConn = "ConnectorConfigurations";
|
|
402
426
|
const _CCons = "ConsolidationConfiguration";
|
|
@@ -417,6 +441,9 @@ const _CERr = "CreateEvaluatorResponse";
|
|
|
417
441
|
const _CEr = "CreateEvaluator";
|
|
418
442
|
const _CG = "CreateGateway";
|
|
419
443
|
const _CGR = "CreateGatewayRequest";
|
|
444
|
+
const _CGRL = "CreateGatewayRateLimit";
|
|
445
|
+
const _CGRLR = "CreateGatewayRateLimitRequest";
|
|
446
|
+
const _CGRLRr = "CreateGatewayRateLimitResponse";
|
|
420
447
|
const _CGRR = "CreateGatewayRuleRequest";
|
|
421
448
|
const _CGRRr = "CreateGatewayRuleResponse";
|
|
422
449
|
const _CGRr = "CreateGatewayResponse";
|
|
@@ -450,19 +477,21 @@ const _COECRr = "CreateOnlineEvaluationConfigResponse";
|
|
|
450
477
|
const _COPCI = "CustomOauth2ProviderConfigInput";
|
|
451
478
|
const _COPCO = "CustomOauth2ProviderConfigOutput";
|
|
452
479
|
const _CP = "CedarPolicy";
|
|
453
|
-
const _CPC = "
|
|
480
|
+
const _CPC = "CapacityProviderConfiguration";
|
|
454
481
|
const _CPCP = "CreatePaymentCredentialProvider";
|
|
455
482
|
const _CPCPR = "CreatePaymentCredentialProviderRequest";
|
|
456
483
|
const _CPCPRr = "CreatePaymentCredentialProviderResponse";
|
|
457
484
|
const _CPCR = "CreatePaymentConnectorRequest";
|
|
458
485
|
const _CPCRr = "CreatePaymentConnectorResponse";
|
|
459
|
-
const _CPCr = "
|
|
460
|
-
const _CPCre = "
|
|
486
|
+
const _CPCr = "CredentialProviderConfiguration";
|
|
487
|
+
const _CPCre = "CredentialProviderConfigurations";
|
|
461
488
|
const _CPCrea = "CreatePaymentConnector";
|
|
462
|
-
const _CPCred = "
|
|
489
|
+
const _CPCred = "CredentialsProviderConfigurations";
|
|
490
|
+
const _CPCrede = "CredentialsProviderConfiguration";
|
|
463
491
|
const _CPE = "CreatePolicyEngine";
|
|
464
492
|
const _CPER = "CreatePolicyEngineRequest";
|
|
465
493
|
const _CPERr = "CreatePolicyEngineResponse";
|
|
494
|
+
const _CPL = "CapacityProviderList";
|
|
466
495
|
const _CPM = "CreatePaymentManager";
|
|
467
496
|
const _CPMR = "CreatePaymentManagerRequest";
|
|
468
497
|
const _CPMRr = "CreatePaymentManagerResponse";
|
|
@@ -470,6 +499,8 @@ const _CPO = "ConnectorParameterOverride";
|
|
|
470
499
|
const _CPOo = "ConnectorParameterOverrides";
|
|
471
500
|
const _CPR = "CreatePolicyRequest";
|
|
472
501
|
const _CPRr = "CreatePolicyResponse";
|
|
502
|
+
const _CPS = "CapacityProviderSummary";
|
|
503
|
+
const _CPVC = "CapacityProviderVolumeConfiguration";
|
|
473
504
|
const _CPr = "CredentialProvider";
|
|
474
505
|
const _CPre = "CreatePolicy";
|
|
475
506
|
const _CR = "CreateRegistry";
|
|
@@ -480,6 +511,8 @@ const _CRRR = "CreateRegistryRecordRequest";
|
|
|
480
511
|
const _CRRRr = "CreateRegistryRecordResponse";
|
|
481
512
|
const _CRRr = "CreateRegistryResponse";
|
|
482
513
|
const _CRRre = "CreateRegistryRecord";
|
|
514
|
+
const _CRS = "CapacityReservationSpecification";
|
|
515
|
+
const _CRT = "CapacityReservationTarget";
|
|
483
516
|
const _CS = "ConnectorSource";
|
|
484
517
|
const _CSD = "CategoricalScaleDefinition";
|
|
485
518
|
const _CSDa = "CategoricalScaleDefinitions";
|
|
@@ -520,6 +553,9 @@ const _DCCWST = "DefaultCoinbaseCdpWalletSecretType";
|
|
|
520
553
|
const _DCI = "DeleteCodeInterpreter";
|
|
521
554
|
const _DCIR = "DeleteCodeInterpreterRequest";
|
|
522
555
|
const _DCIRe = "DeleteCodeInterpreterResponse";
|
|
556
|
+
const _DCP = "DeleteCapacityProvider";
|
|
557
|
+
const _DCPI = "DeleteCapacityProviderInput";
|
|
558
|
+
const _DCPO = "DeleteCapacityProviderOutput";
|
|
523
559
|
const _DCST = "DefaultClientSecretType";
|
|
524
560
|
const _DD = "DeleteDataset";
|
|
525
561
|
const _DDE = "DeleteDatasetExamples";
|
|
@@ -534,6 +570,9 @@ const _DERe = "DeleteEvaluatorResponse";
|
|
|
534
570
|
const _DF = "DecryptionFailure";
|
|
535
571
|
const _DG = "DeleteGateway";
|
|
536
572
|
const _DGR = "DeleteGatewayRequest";
|
|
573
|
+
const _DGRL = "DeleteGatewayRateLimit";
|
|
574
|
+
const _DGRLR = "DeleteGatewayRateLimitRequest";
|
|
575
|
+
const _DGRLRe = "DeleteGatewayRateLimitResponse";
|
|
537
576
|
const _DGRR = "DeleteGatewayRuleRequest";
|
|
538
577
|
const _DGRRe = "DeleteGatewayRuleResponse";
|
|
539
578
|
const _DGRe = "DeleteGatewayResponse";
|
|
@@ -597,13 +636,17 @@ const _DWIRe = "DeleteWorkloadIdentityResponse";
|
|
|
597
636
|
const _De = "Description";
|
|
598
637
|
const _Des = "Descriptors";
|
|
599
638
|
const _EAPC = "EfsAccessPointConfiguration";
|
|
600
|
-
const
|
|
639
|
+
const _EBDM = "EphemeralBlockDeviceMapping";
|
|
640
|
+
const _EBDML = "EphemeralBlockDeviceMappingList";
|
|
641
|
+
const _EC = "Ec2Configuration";
|
|
601
642
|
const _ECD = "EvaluationConfigDescription";
|
|
602
643
|
const _ECO = "EpisodicConsolidationOverride";
|
|
644
|
+
const _ECf = "EfsConfiguration";
|
|
603
645
|
const _ECv = "EvaluatorConfig";
|
|
604
646
|
const _ECx = "ExtractionConfig";
|
|
605
647
|
const _ECxt = "ExtractionConfiguration";
|
|
606
648
|
const _ED = "EvaluatorDescription";
|
|
649
|
+
const _EEBSVC = "EphemeralEBSVolumeConfiguration";
|
|
607
650
|
const _EEO = "EpisodicExtractionOverride";
|
|
608
651
|
const _EF = "EncryptionFailure";
|
|
609
652
|
const _EI = "EvaluatorInstructions";
|
|
@@ -621,6 +664,7 @@ const _ERCI = "EpisodicReflectionConfigurationInput";
|
|
|
621
664
|
const _ERO = "EpisodicReflectionOverride";
|
|
622
665
|
const _ES = "EvaluatorSummary";
|
|
623
666
|
const _ESL = "EvaluatorSummaryList";
|
|
667
|
+
const _EVC = "EbsVolumeConfiguration";
|
|
624
668
|
const _EVM = "EnvironmentVariablesMap";
|
|
625
669
|
const _F = "Filter";
|
|
626
670
|
const _FC = "FilesystemConfigurations";
|
|
@@ -655,6 +699,9 @@ const _GCBVRe = "GetConfigurationBundleVersionResponse";
|
|
|
655
699
|
const _GCI = "GetCodeInterpreter";
|
|
656
700
|
const _GCIR = "GetCodeInterpreterRequest";
|
|
657
701
|
const _GCIRe = "GetCodeInterpreterResponse";
|
|
702
|
+
const _GCP = "GetCapacityProvider";
|
|
703
|
+
const _GCPI = "GetCapacityProviderInput";
|
|
704
|
+
const _GCPO = "GetCapacityProviderOutput";
|
|
658
705
|
const _GD = "GatewayDescription";
|
|
659
706
|
const _GDR = "GetDatasetRequest";
|
|
660
707
|
const _GDRe = "GetDatasetResponse";
|
|
@@ -664,6 +711,9 @@ const _GER = "GetEvaluatorRequest";
|
|
|
664
711
|
const _GERe = "GetEvaluatorResponse";
|
|
665
712
|
const _GG = "GetGateway";
|
|
666
713
|
const _GGR = "GetGatewayRequest";
|
|
714
|
+
const _GGRL = "GetGatewayRateLimit";
|
|
715
|
+
const _GGRLR = "GetGatewayRateLimitRequest";
|
|
716
|
+
const _GGRLRe = "GetGatewayRateLimitResponse";
|
|
667
717
|
const _GGRR = "GetGatewayRuleRequest";
|
|
668
718
|
const _GGRRe = "GetGatewayRuleResponse";
|
|
669
719
|
const _GGRe = "GetGatewayResponse";
|
|
@@ -723,6 +773,8 @@ const _GPSR = "GetPolicySummaryRequest";
|
|
|
723
773
|
const _GPSRe = "GetPolicySummaryResponse";
|
|
724
774
|
const _GR = "GatewayRules";
|
|
725
775
|
const _GRD = "GatewayRuleDetail";
|
|
776
|
+
const _GRL = "GatewayRateLimits";
|
|
777
|
+
const _GRLD = "GatewayRateLimitDetail";
|
|
726
778
|
const _GRP = "GetResourcePolicy";
|
|
727
779
|
const _GRPR = "GetResourcePolicyRequest";
|
|
728
780
|
const _GRPRe = "GetResourcePolicyResponse";
|
|
@@ -753,6 +805,8 @@ const _HACRE = "HarnessAgentCoreRuntimeEnvironment";
|
|
|
753
805
|
const _HACRER = "HarnessAgentCoreRuntimeEnvironmentRequest";
|
|
754
806
|
const _HASC = "HttpApiSchemaConfiguration";
|
|
755
807
|
const _HBMC = "HarnessBedrockModelConfig";
|
|
808
|
+
const _HCS = "HttpConnectorSource";
|
|
809
|
+
const _HCTC = "HttpConnectorTargetConfiguration";
|
|
756
810
|
const _HDMC = "HarnessDisabledMemoryConfiguration";
|
|
757
811
|
const _HE = "HarnessEndpoint";
|
|
758
812
|
const _HEA = "HarnessEnvironmentArtifact";
|
|
@@ -807,6 +861,7 @@ const _IIC = "InterceptorInputConfiguration";
|
|
|
807
861
|
const _IK = "IndexedKey";
|
|
808
862
|
const _IKL = "IndexedKeysList";
|
|
809
863
|
const _IL = "InsightList";
|
|
864
|
+
const _ILC = "InstanceLifecycleConfiguration";
|
|
810
865
|
const _IOC = "InferenceOperationConfiguration";
|
|
811
866
|
const _IOCn = "InferenceOperationConfigurations";
|
|
812
867
|
const _IOPCI = "IncludedOauth2ProviderConfigInput";
|
|
@@ -817,6 +872,7 @@ const _IPESL = "InterceptorPayloadExclusionSelectorList";
|
|
|
817
872
|
const _IPF = "InterceptorPayloadFilter";
|
|
818
873
|
const _IPTC = "InferenceProviderTargetConfiguration";
|
|
819
874
|
const _IPa = "IamPrincipal";
|
|
875
|
+
const _IR = "InstanceRequirements";
|
|
820
876
|
const _ISE = "InternalServerException";
|
|
821
877
|
const _ITC = "InferenceTargetConfiguration";
|
|
822
878
|
const _KC = "KmsConfiguration";
|
|
@@ -833,6 +889,9 @@ const _LARERi = "ListAgentRuntimeEndpointsResponse";
|
|
|
833
889
|
const _LARR = "ListAgentRuntimesRequest";
|
|
834
890
|
const _LARRi = "ListAgentRuntimesResponse";
|
|
835
891
|
const _LARV = "ListAgentRuntimeVersions";
|
|
892
|
+
const _LARVBCP = "ListAgentRuntimeVersionsByCapacityProvider";
|
|
893
|
+
const _LARVBCPI = "ListAgentRuntimeVersionsByCapacityProviderInput";
|
|
894
|
+
const _LARVBCPO = "ListAgentRuntimeVersionsByCapacityProviderOutput";
|
|
836
895
|
const _LARVR = "ListAgentRuntimeVersionsRequest";
|
|
837
896
|
const _LARVRi = "ListAgentRuntimeVersionsResponse";
|
|
838
897
|
const _LB = "ListBrowsers";
|
|
@@ -851,6 +910,9 @@ const _LCBVRi = "ListConfigurationBundleVersionsResponse";
|
|
|
851
910
|
const _LCI = "ListCodeInterpreters";
|
|
852
911
|
const _LCIR = "ListCodeInterpretersRequest";
|
|
853
912
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
913
|
+
const _LCP = "ListCapacityProviders";
|
|
914
|
+
const _LCPI = "ListCapacityProvidersInput";
|
|
915
|
+
const _LCPO = "ListCapacityProvidersOutput";
|
|
854
916
|
const _LD = "ListDatasets";
|
|
855
917
|
const _LDE = "ListDatasetExamples";
|
|
856
918
|
const _LDER = "ListDatasetExamplesRequest";
|
|
@@ -860,14 +922,19 @@ const _LDRi = "ListDatasetsResponse";
|
|
|
860
922
|
const _LDV = "ListDatasetVersions";
|
|
861
923
|
const _LDVR = "ListDatasetVersionsRequest";
|
|
862
924
|
const _LDVRi = "ListDatasetVersionsResponse";
|
|
863
|
-
const _LE = "
|
|
925
|
+
const _LE = "LimitEntry";
|
|
864
926
|
const _LEC = "LambdaEvaluatorConfig";
|
|
865
927
|
const _LECl = "LlmExtractionConfig";
|
|
866
928
|
const _LEI = "LlmExtractionInstruction";
|
|
867
929
|
const _LER = "ListEvaluatorsRequest";
|
|
868
930
|
const _LERi = "ListEvaluatorsResponse";
|
|
931
|
+
const _LEi = "LimitEntries";
|
|
932
|
+
const _LEis = "ListEvaluators";
|
|
869
933
|
const _LG = "ListGateways";
|
|
870
934
|
const _LGR = "ListGatewaysRequest";
|
|
935
|
+
const _LGRL = "ListGatewayRateLimits";
|
|
936
|
+
const _LGRLR = "ListGatewayRateLimitsRequest";
|
|
937
|
+
const _LGRLRi = "ListGatewayRateLimitsResponse";
|
|
871
938
|
const _LGRR = "ListGatewayRulesRequest";
|
|
872
939
|
const _LGRRi = "ListGatewayRulesResponse";
|
|
873
940
|
const _LGRi = "ListGatewaysResponse";
|
|
@@ -896,7 +963,7 @@ const _LOECR = "ListOnlineEvaluationConfigsRequest";
|
|
|
896
963
|
const _LOECRi = "ListOnlineEvaluationConfigsResponse";
|
|
897
964
|
const _LOPCI = "LinkedinOauth2ProviderConfigInput";
|
|
898
965
|
const _LOPCO = "LinkedinOauth2ProviderConfigOutput";
|
|
899
|
-
const _LP = "
|
|
966
|
+
const _LP = "LaunchParameters";
|
|
900
967
|
const _LPC = "ListPaymentConnectors";
|
|
901
968
|
const _LPCP = "ListPaymentCredentialProviders";
|
|
902
969
|
const _LPCPR = "ListPaymentCredentialProvidersRequest";
|
|
@@ -926,16 +993,20 @@ const _LPRi = "ListPoliciesResponse";
|
|
|
926
993
|
const _LPS = "ListPolicySummaries";
|
|
927
994
|
const _LPSR = "ListPolicySummariesRequest";
|
|
928
995
|
const _LPSRi = "ListPolicySummariesResponse";
|
|
996
|
+
const _LPi = "ListPolicies";
|
|
929
997
|
const _LR = "ListRegistries";
|
|
930
998
|
const _LRR = "ListRegistriesRequest";
|
|
931
999
|
const _LRRR = "ListRegistryRecordsRequest";
|
|
932
1000
|
const _LRRRi = "ListRegistryRecordsResponse";
|
|
933
1001
|
const _LRRi = "ListRegistriesResponse";
|
|
934
1002
|
const _LRRis = "ListRegistryRecords";
|
|
1003
|
+
const _LS = "LicenseSpecification";
|
|
1004
|
+
const _LSL = "LicenseSpecificationList";
|
|
935
1005
|
const _LTC = "LambdaTransformConfiguration";
|
|
936
1006
|
const _LTFR = "ListTagsForResource";
|
|
937
1007
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
938
1008
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
1009
|
+
const _LTS = "LaunchTemplateSource";
|
|
939
1010
|
const _LWI = "ListWorkloadIdentities";
|
|
940
1011
|
const _LWIR = "ListWorkloadIdentitiesRequest";
|
|
941
1012
|
const _LWIRi = "ListWorkloadIdentitiesResponse";
|
|
@@ -999,12 +1070,13 @@ const _OPCI = "Oauth2ProviderConfigInput";
|
|
|
999
1070
|
const _OPCO = "Oauth2ProviderConfigOutput";
|
|
1000
1071
|
const _OREMC = "OpenResponsesEvaluatorModelConfig";
|
|
1001
1072
|
const _P = "Prompt";
|
|
1002
|
-
const _PC = "
|
|
1073
|
+
const _PC = "PermissionsConfiguration";
|
|
1003
1074
|
const _PCP = "PaymentCredentialProviders";
|
|
1004
1075
|
const _PCPC = "PaymentCredentialProviderConfiguration";
|
|
1005
1076
|
const _PCPI = "PaymentCredentialProviderItem";
|
|
1006
1077
|
const _PCS = "PaymentConnectorSummary";
|
|
1007
1078
|
const _PCSa = "PaymentConnectorSummaries";
|
|
1079
|
+
const _PCr = "ProtocolConfiguration";
|
|
1008
1080
|
const _PD = "PolicyDefinition";
|
|
1009
1081
|
const _PE = "PolicyEngine";
|
|
1010
1082
|
const _PEMR = "PrivateEndpointManagedResources";
|
|
@@ -1038,8 +1110,11 @@ const _PTC = "PassthroughTargetConfiguration";
|
|
|
1038
1110
|
const _Po = "Policy";
|
|
1039
1111
|
const _Pol = "Policies";
|
|
1040
1112
|
const _R = "Rule";
|
|
1041
|
-
const _RC = "
|
|
1042
|
-
const
|
|
1113
|
+
const _RC = "RateConfig";
|
|
1114
|
+
const _RCE = "RetryableConflictException";
|
|
1115
|
+
const _RCa = "RateConfigs";
|
|
1116
|
+
const _RCe = "ReasoningConfiguration";
|
|
1117
|
+
const _RCec = "RecordingConfig";
|
|
1043
1118
|
const _RCef = "ReflectionConfiguration";
|
|
1044
1119
|
const _RHC = "RequestHeaderConfiguration";
|
|
1045
1120
|
const _RL = "ResourceLocation";
|
|
@@ -1058,6 +1133,7 @@ const _RSL = "RegistrySummaryList";
|
|
|
1058
1133
|
const _RSa = "RatingScale";
|
|
1059
1134
|
const _RTC = "RuntimeTargetConfiguration";
|
|
1060
1135
|
const _RTTA = "RouteToTargetAction";
|
|
1136
|
+
const _RVC = "RootVolumeConfiguration";
|
|
1061
1137
|
const _Re = "Resource";
|
|
1062
1138
|
const _S = "Secret";
|
|
1063
1139
|
const _SC = "S3Configuration";
|
|
@@ -1170,6 +1246,9 @@ const _UCB = "UpdateConfigurationBundle";
|
|
|
1170
1246
|
const _UCBR = "UpdateConfigurationBundleRequest";
|
|
1171
1247
|
const _UCBRp = "UpdateConfigurationBundleResponse";
|
|
1172
1248
|
const _UCD = "UpdatedCustomDescriptor";
|
|
1249
|
+
const _UCP = "UpdateCapacityProvider";
|
|
1250
|
+
const _UCPI = "UpdateCapacityProviderInput";
|
|
1251
|
+
const _UCPO = "UpdateCapacityProviderOutput";
|
|
1173
1252
|
const _UD = "UpdatedDescription";
|
|
1174
1253
|
const _UDE = "UpdateDatasetExamples";
|
|
1175
1254
|
const _UDER = "UpdateDatasetExamplesRequest";
|
|
@@ -1185,6 +1264,9 @@ const _UERp = "UpdateEvaluatorResponse";
|
|
|
1185
1264
|
const _UEp = "UpdateEvaluator";
|
|
1186
1265
|
const _UG = "UpdateGateway";
|
|
1187
1266
|
const _UGR = "UpdateGatewayRequest";
|
|
1267
|
+
const _UGRL = "UpdateGatewayRateLimit";
|
|
1268
|
+
const _UGRLR = "UpdateGatewayRateLimitRequest";
|
|
1269
|
+
const _UGRLRp = "UpdateGatewayRateLimitResponse";
|
|
1188
1270
|
const _UGRR = "UpdateGatewayRuleRequest";
|
|
1189
1271
|
const _UGRRp = "UpdateGatewayRuleResponse";
|
|
1190
1272
|
const _UGRp = "UpdateGatewayResponse";
|
|
@@ -1256,6 +1338,9 @@ const _UWIRp = "UpdateWorkloadIdentityResponse";
|
|
|
1256
1338
|
const _V = "Validation";
|
|
1257
1339
|
const _VC = "VpcConfig";
|
|
1258
1340
|
const _VCBS = "VersionCreatedBySource";
|
|
1341
|
+
const _VCL = "VolumeConfigurationList";
|
|
1342
|
+
const _VCo = "VolumeConfiguration";
|
|
1343
|
+
const _VCp = "VpcConfiguration";
|
|
1259
1344
|
const _VE = "ValidationException";
|
|
1260
1345
|
const _VEF = "ValidationExceptionField";
|
|
1261
1346
|
const _VEFL = "ValidationExceptionFieldList";
|
|
@@ -1290,6 +1375,7 @@ const _aGTC = "apiGatewayToolConfiguration";
|
|
|
1290
1375
|
const _aHC = "additionalHeaderClaims";
|
|
1291
1376
|
const _aI = "actorId";
|
|
1292
1377
|
const _aIK = "addIndexedKeys";
|
|
1378
|
+
const _aIT = "allowedInstanceTypes";
|
|
1293
1379
|
const _aIp = "appId";
|
|
1294
1380
|
const _aIu = "authorizationId";
|
|
1295
1381
|
const _aIw = "awsIam";
|
|
@@ -1370,10 +1456,11 @@ const _cB = "createdBy";
|
|
|
1370
1456
|
const _cBN = "createdByName";
|
|
1371
1457
|
const _cBo = "configurationBundle";
|
|
1372
1458
|
const _cBod = "codeBased";
|
|
1373
|
-
const _cC = "
|
|
1459
|
+
const _cC = "computeConfiguration";
|
|
1374
1460
|
const _cCC = "customConsolidationConfiguration";
|
|
1375
1461
|
const _cCCo = "coinbaseCdpConfiguration";
|
|
1376
1462
|
const _cCDP = "coinbaseCDP";
|
|
1463
|
+
const _cCl = "clusteringConfig";
|
|
1377
1464
|
const _cCo = "contentConfigurations";
|
|
1378
1465
|
const _cCod = "codeConfiguration";
|
|
1379
1466
|
const _cCon = "containerConfiguration";
|
|
@@ -1393,14 +1480,25 @@ const _cMV = "claimMatchValue";
|
|
|
1393
1480
|
const _cOPC = "customOauth2ProviderConfig";
|
|
1394
1481
|
const _cP = "credentialProvider";
|
|
1395
1482
|
const _cPA = "credentialProviderArn";
|
|
1396
|
-
const
|
|
1483
|
+
const _cPAa = "capacityProviderArn";
|
|
1484
|
+
const _cPC = "capacityProviderConfiguration";
|
|
1485
|
+
const _cPCr = "credentialProviderConfigurations";
|
|
1486
|
+
const _cPI = "capacityProviderId";
|
|
1397
1487
|
const _cPN = "credentialParameterName";
|
|
1488
|
+
const _cPORA = "capacityProviderOperatorRoleArn";
|
|
1398
1489
|
const _cPT = "credentialProviderType";
|
|
1399
1490
|
const _cPV = "credentialProviderVendor";
|
|
1491
|
+
const _cPVa = "capacityProviderVolume";
|
|
1492
|
+
const _cPa = "capacityProviders";
|
|
1400
1493
|
const _cPr = "credentialPrefix";
|
|
1401
1494
|
const _cPre = "credentialProviders";
|
|
1402
1495
|
const _cPu = "customParameters";
|
|
1403
1496
|
const _cRC = "customReflectionConfiguration";
|
|
1497
|
+
const _cRI = "capacityReservationId";
|
|
1498
|
+
const _cRP = "capacityReservationPreference";
|
|
1499
|
+
const _cRRGA = "capacityReservationResourceGroupArn";
|
|
1500
|
+
const _cRS = "capacityReservationSpecification";
|
|
1501
|
+
const _cRT = "capacityReservationTarget";
|
|
1404
1502
|
const _cS = "clientSecret";
|
|
1405
1503
|
const _cSA = "clientSecretArn";
|
|
1406
1504
|
const _cSC = "clientSecretConfig";
|
|
@@ -1422,7 +1520,8 @@ const _con = "configuration";
|
|
|
1422
1520
|
const _cond = "conditions";
|
|
1423
1521
|
const _conf = "configurations";
|
|
1424
1522
|
const _confi = "config";
|
|
1425
|
-
const _conn = "
|
|
1523
|
+
const _conn = "connections";
|
|
1524
|
+
const _conne = "connector";
|
|
1426
1525
|
const _cons = "consolidation";
|
|
1427
1526
|
const _cont = "content";
|
|
1428
1527
|
const _cu = "custom";
|
|
@@ -1430,9 +1529,11 @@ const _d = "description";
|
|
|
1430
1529
|
const _dA = "datasetArn";
|
|
1431
1530
|
const _dC = "deletedCount";
|
|
1432
1531
|
const _dI = "datasetId";
|
|
1532
|
+
const _dK = "dimensionKeys";
|
|
1433
1533
|
const _dMM = "deleteManagedMemory";
|
|
1434
1534
|
const _dMS = "deleteMemoryStrategies";
|
|
1435
1535
|
const _dN = "datasetName";
|
|
1536
|
+
const _dNe = "deviceName";
|
|
1436
1537
|
const _dRU = "defaultReturnUrl";
|
|
1437
1538
|
const _dS = "draftStatus";
|
|
1438
1539
|
const _dSA = "dataStreamArn";
|
|
@@ -1446,14 +1547,18 @@ const _dVo = "doubleValue";
|
|
|
1446
1547
|
const _da = "datasets";
|
|
1447
1548
|
const _de = "definition";
|
|
1448
1549
|
const _des = "descriptors";
|
|
1449
|
-
const _di = "
|
|
1550
|
+
const _di = "dimensions";
|
|
1551
|
+
const _dis = "disabled";
|
|
1450
1552
|
const _do = "domain";
|
|
1451
1553
|
const _e = "error";
|
|
1452
1554
|
const _eA = "evaluatorArn";
|
|
1453
1555
|
const _eAP = "efsAccessPoint";
|
|
1454
1556
|
const _eAn = "environmentArtifact";
|
|
1455
1557
|
const _eC = "evaluatorConfig";
|
|
1558
|
+
const _eCI = "ebsCardIndex";
|
|
1456
1559
|
const _eCO = "episodicConsolidationOverride";
|
|
1560
|
+
const _eCb = "ebsConfiguration";
|
|
1561
|
+
const _eCc = "ec2Configuration";
|
|
1457
1562
|
const _eCf = "efsConfiguration";
|
|
1458
1563
|
const _eCx = "exampleCount";
|
|
1459
1564
|
const _eCxt = "extractionConfig";
|
|
@@ -1481,8 +1586,12 @@ const _eS = "executionStatus";
|
|
|
1481
1586
|
const _eT = "evaluatorType";
|
|
1482
1587
|
const _eTx = "extractionType";
|
|
1483
1588
|
const _eV = "environmentVariables";
|
|
1589
|
+
const _eVp = "ephemeralVolumes";
|
|
1590
|
+
const _eb = "ebs";
|
|
1484
1591
|
const _ef = "effort";
|
|
1485
|
-
const _en = "
|
|
1592
|
+
const _en = "entries";
|
|
1593
|
+
const _ena = "enabled";
|
|
1594
|
+
const _enc = "encrypted";
|
|
1486
1595
|
const _end = "endpoint";
|
|
1487
1596
|
const _endp = "endpoints";
|
|
1488
1597
|
const _env = "environment";
|
|
@@ -1497,6 +1606,7 @@ const _fM = "failureMode";
|
|
|
1497
1606
|
const _fP = "filterPath";
|
|
1498
1607
|
const _fR = "failureReason";
|
|
1499
1608
|
const _fSA = "fileSystemArn";
|
|
1609
|
+
const _fSGB = "freeSpaceGiB";
|
|
1500
1610
|
const _fU = "fromUrl";
|
|
1501
1611
|
const _fi = "findings";
|
|
1502
1612
|
const _fie = "field";
|
|
@@ -1504,8 +1614,8 @@ const _fil = "filter";
|
|
|
1504
1614
|
const _filt = "filters";
|
|
1505
1615
|
const _g = "git";
|
|
1506
1616
|
const _gA = "gatewayArn";
|
|
1507
|
-
const _gI = "
|
|
1508
|
-
const _gIa = "
|
|
1617
|
+
const _gI = "gatewayIdentifier";
|
|
1618
|
+
const _gIa = "gatewayId";
|
|
1509
1619
|
const _gMC = "geminiModelConfig";
|
|
1510
1620
|
const _gOPC = "googleOauth2ProviderConfig";
|
|
1511
1621
|
const _gOPCi = "githubOauth2ProviderConfig";
|
|
@@ -1535,11 +1645,14 @@ const _iD = "includedData";
|
|
|
1535
1645
|
const _iE = "inlineExamples";
|
|
1536
1646
|
const _iF = "inlineFunction";
|
|
1537
1647
|
const _iI = "insightId";
|
|
1648
|
+
const _iIT = "idleInstanceTimeout";
|
|
1538
1649
|
const _iK = "indexedKeys";
|
|
1539
1650
|
const _iOPC = "includedOauth2ProviderConfig";
|
|
1540
1651
|
const _iP = "interceptionPoints";
|
|
1652
|
+
const _iPA = "instanceProfileArn";
|
|
1541
1653
|
const _iPa = "iamPrincipal";
|
|
1542
1654
|
const _iPn = "inlinePayload";
|
|
1655
|
+
const _iR = "instanceRequirements";
|
|
1543
1656
|
const _iRST = "idleRuntimeSessionTimeout";
|
|
1544
1657
|
const _iS = "inputSchema";
|
|
1545
1658
|
const _iST = "idleSessionTimeout";
|
|
@@ -1551,12 +1664,14 @@ const _in = "insights";
|
|
|
1551
1664
|
const _inf = "inference";
|
|
1552
1665
|
const _ins = "instructions";
|
|
1553
1666
|
const _int = "interceptor";
|
|
1667
|
+
const _io = "iops";
|
|
1554
1668
|
const _is = "issuer";
|
|
1555
1669
|
const _it = "items";
|
|
1556
1670
|
const _jK = "jsonKey";
|
|
1557
1671
|
const _k = "key";
|
|
1558
1672
|
const _kC = "kmsConfiguration";
|
|
1559
1673
|
const _kKA = "kmsKeyArn";
|
|
1674
|
+
const _kKI = "kmsKeyId";
|
|
1560
1675
|
const _kKS = "kmsKeySource";
|
|
1561
1676
|
const _kT = "keyType";
|
|
1562
1677
|
const _ki = "kinesis";
|
|
@@ -1564,6 +1679,7 @@ const _l = "location";
|
|
|
1564
1679
|
const _lA = "lambdaArn";
|
|
1565
1680
|
const _lAAJ = "llmAsAJudge";
|
|
1566
1681
|
const _lC = "lifecycleConfiguration";
|
|
1682
|
+
const _lCA = "licenseConfigurationArn";
|
|
1567
1683
|
const _lCa = "lambdaConfig";
|
|
1568
1684
|
const _lEC = "llmExtractionConfig";
|
|
1569
1685
|
const _lEI = "llmExtractionInstruction";
|
|
@@ -1575,12 +1691,15 @@ const _lM = "lineageMetadata";
|
|
|
1575
1691
|
const _lMD = "lastModifiedDate";
|
|
1576
1692
|
const _lMi = "listingMode";
|
|
1577
1693
|
const _lOPC = "linkedinOauth2ProviderConfig";
|
|
1694
|
+
const _lP = "launchParameters";
|
|
1578
1695
|
const _lPB = "latestPerBranch";
|
|
1696
|
+
const _lS = "licenseSpecifications";
|
|
1579
1697
|
const _lSA = "lastSavedAt";
|
|
1580
1698
|
const _lSAa = "lastSynchronizedAt";
|
|
1581
1699
|
const _lSBI = "lastSavedBrowserId";
|
|
1582
1700
|
const _lSBSI = "lastSavedBrowserSessionId";
|
|
1583
1701
|
const _lTIS = "lambdaTimeoutInSeconds";
|
|
1702
|
+
const _lTS = "launchTemplateSource";
|
|
1584
1703
|
const _lUA = "lastUpdatedAt";
|
|
1585
1704
|
const _lUT = "lastUpdatedTime";
|
|
1586
1705
|
const _lV = "liveVersion";
|
|
@@ -1631,6 +1750,7 @@ const _meta = "metadata";
|
|
|
1631
1750
|
const _mo = "model";
|
|
1632
1751
|
const _mod = "mode";
|
|
1633
1752
|
const _mode = "models";
|
|
1753
|
+
const _mon = "monitoring";
|
|
1634
1754
|
const _n = "name";
|
|
1635
1755
|
const _nC = "networkConfiguration";
|
|
1636
1756
|
const _nM = "networkMode";
|
|
@@ -1655,7 +1775,8 @@ const _oECI = "onlineEvaluationConfigId";
|
|
|
1655
1775
|
const _oECN = "onlineEvaluationConfigName";
|
|
1656
1776
|
const _oPCI = "oauth2ProviderConfigInput";
|
|
1657
1777
|
const _oPCO = "oauth2ProviderConfigOutput";
|
|
1658
|
-
const _oS = "
|
|
1778
|
+
const _oS = "operatingSystem";
|
|
1779
|
+
const _oSu = "outputSchema";
|
|
1659
1780
|
const _oV = "optionalValue";
|
|
1660
1781
|
const _oa = "oauth2";
|
|
1661
1782
|
const _oau = "oauth";
|
|
@@ -1669,6 +1790,7 @@ const _pCI = "paymentConnectorId";
|
|
|
1669
1790
|
const _pCIr = "providerConfigurationInput";
|
|
1670
1791
|
const _pCO = "providerConfigurationOutput";
|
|
1671
1792
|
const _pCa = "paymentConnectors";
|
|
1793
|
+
const _pCe = "permissionsConfiguration";
|
|
1672
1794
|
const _pDBN = "payloadDeliveryBucketName";
|
|
1673
1795
|
const _pE = "privateEndpoint";
|
|
1674
1796
|
const _pEA = "policyEngineArn";
|
|
@@ -1698,11 +1820,14 @@ const _pRH = "passRequestHeaders";
|
|
|
1698
1820
|
const _pRM = "preserveRecentMessages";
|
|
1699
1821
|
const _pS = "profileSummaries";
|
|
1700
1822
|
const _pT = "protocolType";
|
|
1823
|
+
const _pTr = "propagatedTags";
|
|
1701
1824
|
const _pV = "parameterValues";
|
|
1702
1825
|
const _pVI = "parentVersionIds";
|
|
1703
1826
|
const _pVr = "protocolVersion";
|
|
1704
1827
|
const _pa = "paths";
|
|
1828
|
+
const _par = "parameters";
|
|
1705
1829
|
const _pas = "passthrough";
|
|
1830
|
+
const _pe = "period";
|
|
1706
1831
|
const _po = "policy";
|
|
1707
1832
|
const _pol = "policies";
|
|
1708
1833
|
const _pr = "priority";
|
|
@@ -1729,6 +1854,8 @@ const _rHC = "requestHeaderConfiguration";
|
|
|
1729
1854
|
const _rI = "ruleId";
|
|
1730
1855
|
const _rIe = "registryId";
|
|
1731
1856
|
const _rIec = "recordId";
|
|
1857
|
+
const _rL = "rateLimits";
|
|
1858
|
+
const _rLI = "rateLimitId";
|
|
1732
1859
|
const _rM = "remoteMcp";
|
|
1733
1860
|
const _rMMDSV = "requireMMDSV2";
|
|
1734
1861
|
const _rP = "resourcePriority";
|
|
@@ -1741,12 +1868,15 @@ const _rTF = "rawTextFragment";
|
|
|
1741
1868
|
const _rTT = "routeToTarget";
|
|
1742
1869
|
const _rTa = "rawText";
|
|
1743
1870
|
const _rV = "recordVersion";
|
|
1871
|
+
const _rVo = "rootVolume";
|
|
1872
|
+
const _ra = "rate";
|
|
1744
1873
|
const _re = "recording";
|
|
1745
1874
|
const _rea = "reasoning";
|
|
1746
1875
|
const _ref = "reflection";
|
|
1747
1876
|
const _reg = "region";
|
|
1748
1877
|
const _regi = "registries";
|
|
1749
|
-
const _req = "
|
|
1878
|
+
const _req = "requests";
|
|
1879
|
+
const _requ = "required";
|
|
1750
1880
|
const _res = "resource";
|
|
1751
1881
|
const _reso = "resources";
|
|
1752
1882
|
const _ru = "runtime";
|
|
@@ -1760,18 +1890,22 @@ const _sCOu = "summaryConsolidationOverride";
|
|
|
1760
1890
|
const _sCa = "samplingConfig";
|
|
1761
1891
|
const _sCe = "sessionConfiguration";
|
|
1762
1892
|
const _sCes = "sessionConfig";
|
|
1763
|
-
const _sCt = "
|
|
1893
|
+
const _sCt = "statusCode";
|
|
1764
1894
|
const _sCti = "stickinessConfiguration";
|
|
1895
|
+
const _sCtr = "streamingConfiguration";
|
|
1765
1896
|
const _sD = "skillDefinition";
|
|
1766
1897
|
const _sDR = "streamDeliveryResources";
|
|
1767
1898
|
const _sEO = "semanticExtractionOverride";
|
|
1768
1899
|
const _sFAP = "s3FilesAccessPoint";
|
|
1769
1900
|
const _sFC = "s3FilesConfiguration";
|
|
1770
1901
|
const _sG = "securityGroups";
|
|
1902
|
+
const _sGB = "sizeGiB";
|
|
1771
1903
|
const _sGI = "securityGroupIds";
|
|
1772
|
-
const _sI = "
|
|
1904
|
+
const _sI = "snapshotId";
|
|
1773
1905
|
const _sIe = "secretId";
|
|
1906
|
+
const _sIt = "strategyId";
|
|
1774
1907
|
const _sIu = "subnetIds";
|
|
1908
|
+
const _sKN = "sshKeyName";
|
|
1775
1909
|
const _sL = "s3Location";
|
|
1776
1910
|
const _sLV = "stringListValidation";
|
|
1777
1911
|
const _sM = "skillMd";
|
|
@@ -1859,8 +1993,10 @@ const _ta = "tags";
|
|
|
1859
1993
|
const _tar = "targets";
|
|
1860
1994
|
const _te = "temperature";
|
|
1861
1995
|
const _tex = "text";
|
|
1996
|
+
const _th = "throughput";
|
|
1862
1997
|
const _ti = "timeout";
|
|
1863
1998
|
const _to = "tools";
|
|
1999
|
+
const _tok = "tokens";
|
|
1864
2000
|
const _tr = "truncation";
|
|
1865
2001
|
const _u = "url";
|
|
1866
2002
|
const _uA = "updatedAt";
|
|
@@ -1875,14 +2011,21 @@ const _us = "username";
|
|
|
1875
2011
|
const _v = "visible";
|
|
1876
2012
|
const _vC = "vpcConfig";
|
|
1877
2013
|
const _vCA = "versionCreatedAt";
|
|
2014
|
+
const _vCp = "vpcConfiguration";
|
|
1878
2015
|
const _vI = "versionId";
|
|
2016
|
+
const _vIR = "volumeInitializationRate";
|
|
1879
2017
|
const _vIp = "vpcIdentifier";
|
|
1880
2018
|
const _vM = "validationMode";
|
|
2019
|
+
const _vN = "volumeName";
|
|
2020
|
+
const _vNi = "virtualName";
|
|
2021
|
+
const _vS = "volumeSize";
|
|
2022
|
+
const _vT = "volumeType";
|
|
1881
2023
|
const _va = "value";
|
|
1882
2024
|
const _val = "validation";
|
|
1883
2025
|
const _ve = "version";
|
|
1884
2026
|
const _ver = "versions";
|
|
1885
2027
|
const _vi = "view";
|
|
2028
|
+
const _vo = "volumes";
|
|
1886
2029
|
const _w = "weight";
|
|
1887
2030
|
const _wAA = "webAclArn";
|
|
1888
2031
|
const _wC = "wafConfiguration";
|
|
@@ -1949,6 +2092,12 @@ var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
|
1949
2092
|
[0]
|
|
1950
2093
|
];
|
|
1951
2094
|
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2095
|
+
var RetryableConflictException$ = [-3, n0, _RCE,
|
|
2096
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
2097
|
+
[_m],
|
|
2098
|
+
[0], 1
|
|
2099
|
+
];
|
|
2100
|
+
n0_registry.registerError(RetryableConflictException$, RetryableConflictException);
|
|
1952
2101
|
var ServiceException$ = [-3, n0, _SE,
|
|
1953
2102
|
{ [_e]: _se, [_hE]: 500 },
|
|
1954
2103
|
[_m],
|
|
@@ -2047,6 +2196,11 @@ var AgentRuntimeEndpoint$ = [3, n0, _ARE,
|
|
|
2047
2196
|
[_n, _aREA, _aRA, _st, _i, _cA, _lUA, _lV, _tV, _d],
|
|
2048
2197
|
[[() => EndpointName, 0], 0, 0, 0, 0, 5, 5, 0, 0, 0], 7
|
|
2049
2198
|
];
|
|
2199
|
+
var AgentRuntimeVersionSummary$ = [3, n0, _ARVS,
|
|
2200
|
+
0,
|
|
2201
|
+
[_aRA, _aRV, _st],
|
|
2202
|
+
[0, 0, 0], 3
|
|
2203
|
+
];
|
|
2050
2204
|
var AgentSkillsDescriptor$ = [3, n0, _ASD,
|
|
2051
2205
|
0,
|
|
2052
2206
|
[_sM, _sD],
|
|
@@ -2102,6 +2256,21 @@ var AuthorizingClaimMatchValueType$ = [3, n0, _ACMVT,
|
|
|
2102
2256
|
[_cMV, _cMO],
|
|
2103
2257
|
[() => ClaimMatchValueType$, 0], 2
|
|
2104
2258
|
];
|
|
2259
|
+
var BatchPutGatewayRateLimitsRequest$ = [3, n0, _BPGRLR,
|
|
2260
|
+
0,
|
|
2261
|
+
[_gI, _rL, _cT],
|
|
2262
|
+
[[0, 1], () => BatchPutLimitEntries, [0, 4]], 2
|
|
2263
|
+
];
|
|
2264
|
+
var BatchPutGatewayRateLimitsResponse$ = [3, n0, _BPGRLRa,
|
|
2265
|
+
0,
|
|
2266
|
+
[_rL],
|
|
2267
|
+
[() => GatewayRateLimits], 1
|
|
2268
|
+
];
|
|
2269
|
+
var BatchPutLimitEntry$ = [3, n0, _BPLE,
|
|
2270
|
+
0,
|
|
2271
|
+
[_dK, _en, _rLI, _d],
|
|
2272
|
+
[64 | 0, () => LimitEntries, 0, 0], 2
|
|
2273
|
+
];
|
|
2105
2274
|
var BedrockEvaluatorModelConfig$ = [3, n0, _BEMC,
|
|
2106
2275
|
0,
|
|
2107
2276
|
[_mI, _iCn, _aMRF],
|
|
@@ -2124,12 +2293,12 @@ var BrowserProfileSummary$ = [3, n0, _BPS,
|
|
|
2124
2293
|
];
|
|
2125
2294
|
var BrowserSigningConfigInput$ = [3, n0, _BSCI,
|
|
2126
2295
|
0,
|
|
2127
|
-
[
|
|
2296
|
+
[_ena],
|
|
2128
2297
|
[2], 1
|
|
2129
2298
|
];
|
|
2130
2299
|
var BrowserSigningConfigOutput$ = [3, n0, _BSCO,
|
|
2131
2300
|
0,
|
|
2132
|
-
[
|
|
2301
|
+
[_ena],
|
|
2133
2302
|
[2], 1
|
|
2134
2303
|
];
|
|
2135
2304
|
var BrowserSummary$ = [3, n0, _BS,
|
|
@@ -2137,6 +2306,31 @@ var BrowserSummary$ = [3, n0, _BS,
|
|
|
2137
2306
|
[_bI, _bA, _st, _cA, _n, _d, _lUA],
|
|
2138
2307
|
[0, 0, 0, 5, 0, [() => Description, 0], 5], 4
|
|
2139
2308
|
];
|
|
2309
|
+
var CapacityProviderConfiguration$ = [3, n0, _CPC,
|
|
2310
|
+
0,
|
|
2311
|
+
[_cPAa],
|
|
2312
|
+
[0]
|
|
2313
|
+
];
|
|
2314
|
+
var CapacityProviderSummary$ = [3, n0, _CPS,
|
|
2315
|
+
0,
|
|
2316
|
+
[_cPI, _cPAa, _n, _st, _lUA],
|
|
2317
|
+
[0, 0, 0, 0, 4], 5
|
|
2318
|
+
];
|
|
2319
|
+
var CapacityProviderVolumeConfiguration$ = [3, n0, _CPVC,
|
|
2320
|
+
0,
|
|
2321
|
+
[_vN, _mP],
|
|
2322
|
+
[0, 0], 2
|
|
2323
|
+
];
|
|
2324
|
+
var CapacityReservationSpecification$ = [3, n0, _CRS,
|
|
2325
|
+
0,
|
|
2326
|
+
[_cRP, _cRT],
|
|
2327
|
+
[0, () => CapacityReservationTarget$]
|
|
2328
|
+
];
|
|
2329
|
+
var CapacityReservationTarget$ = [3, n0, _CRT,
|
|
2330
|
+
0,
|
|
2331
|
+
[_cRI, _cRRGA],
|
|
2332
|
+
[0, 0]
|
|
2333
|
+
];
|
|
2140
2334
|
var CategoricalScaleDefinition$ = [3, n0, _CSD,
|
|
2141
2335
|
0,
|
|
2142
2336
|
[_de, _la],
|
|
@@ -2229,7 +2423,7 @@ var ConnectorSource$ = [3, n0, _CS,
|
|
|
2229
2423
|
];
|
|
2230
2424
|
var ConnectorTargetConfiguration$ = [3, n0, _CTC,
|
|
2231
2425
|
0,
|
|
2232
|
-
[_so,
|
|
2426
|
+
[_so, _ena, _conf],
|
|
2233
2427
|
[() => ConnectorSource$, 64 | 0, () => ConnectorConfigurations], 1
|
|
2234
2428
|
];
|
|
2235
2429
|
var ContainerConfiguration$ = [3, n0, _CCont,
|
|
@@ -2254,8 +2448,8 @@ var CreateAgentRuntimeEndpointResponse$ = [3, n0, _CARERr,
|
|
|
2254
2448
|
];
|
|
2255
2449
|
var CreateAgentRuntimeRequest$ = [3, n0, _CARR,
|
|
2256
2450
|
0,
|
|
2257
|
-
[_aRN, _aRAg, _rA, _nC, _cT, _d, _aCu, _rHC, _pC, _lC, _eV, _fC, _ta],
|
|
2258
|
-
[0, () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [0, 4], [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, 128 | 0],
|
|
2451
|
+
[_aRN, _aRAg, _rA, _nC, _cT, _d, _aCu, _rHC, _pC, _lC, _eV, _fC, _cPC, _ta],
|
|
2452
|
+
[0, () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [0, 4], [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, () => CapacityProviderConfiguration$, 128 | 0], 3
|
|
2259
2453
|
];
|
|
2260
2454
|
var CreateAgentRuntimeResponse$ = [3, n0, _CARRr,
|
|
2261
2455
|
0,
|
|
@@ -2292,6 +2486,16 @@ var CreateBrowserResponse$ = [3, n0, _CBRre,
|
|
|
2292
2486
|
[_bI, _bA, _cA, _st],
|
|
2293
2487
|
[0, 0, 5, 0], 4
|
|
2294
2488
|
];
|
|
2489
|
+
var CreateCapacityProviderInput$ = [3, n0, _CCPI,
|
|
2490
|
+
0,
|
|
2491
|
+
[_n, _pCe, _cC, _d, _cT, _ta],
|
|
2492
|
+
[0, () => PermissionsConfiguration$, () => ComputeConfiguration$, [() => Description, 0], [0, 4], 128 | 0], 3
|
|
2493
|
+
];
|
|
2494
|
+
var CreateCapacityProviderOutput$ = [3, n0, _CCPO,
|
|
2495
|
+
0,
|
|
2496
|
+
[_cPI, _cPAa, _n, _st],
|
|
2497
|
+
[0, 0, 0, 0], 4
|
|
2498
|
+
];
|
|
2295
2499
|
var CreateCodeInterpreterRequest$ = [3, n0, _CCIR,
|
|
2296
2500
|
0,
|
|
2297
2501
|
[_n, _nC, _d, _eRA, _ce, _fC, _cT, _ta],
|
|
@@ -2342,6 +2546,16 @@ var CreateEvaluatorResponse$ = [3, n0, _CERr,
|
|
|
2342
2546
|
[_eA, _eIv, _cA, _st],
|
|
2343
2547
|
[0, 0, 4, 0], 4
|
|
2344
2548
|
];
|
|
2549
|
+
var CreateGatewayRateLimitRequest$ = [3, n0, _CGRLR,
|
|
2550
|
+
0,
|
|
2551
|
+
[_gI, _dK, _en, _cT, _rLI, _d],
|
|
2552
|
+
[[0, 1], 64 | 0, () => LimitEntries, [0, 4], 0, 0], 3
|
|
2553
|
+
];
|
|
2554
|
+
var CreateGatewayRateLimitResponse$ = [3, n0, _CGRLRr,
|
|
2555
|
+
0,
|
|
2556
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
2557
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
2558
|
+
];
|
|
2345
2559
|
var CreateGatewayRequest$ = [3, n0, _CGR,
|
|
2346
2560
|
0,
|
|
2347
2561
|
[_n, _rA, _aT, _d, _cT, _pT, _pC, _aCu, _kKA, _iCnt, _pEC, _eL, _ta],
|
|
@@ -2349,12 +2563,12 @@ var CreateGatewayRequest$ = [3, n0, _CGR,
|
|
|
2349
2563
|
];
|
|
2350
2564
|
var CreateGatewayResponse$ = [3, n0, _CGRr,
|
|
2351
2565
|
0,
|
|
2352
|
-
[_gA,
|
|
2566
|
+
[_gA, _gIa, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
|
|
2353
2567
|
[0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
|
|
2354
2568
|
];
|
|
2355
2569
|
var CreateGatewayRuleRequest$ = [3, n0, _CGRR,
|
|
2356
2570
|
0,
|
|
2357
|
-
[
|
|
2571
|
+
[_gI, _pr, _a, _cT, _cond, _d],
|
|
2358
2572
|
[[0, 1], 1, [() => Actions, 0], [0, 4], () => Conditions, 0], 3
|
|
2359
2573
|
];
|
|
2360
2574
|
var CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
|
|
@@ -2364,12 +2578,12 @@ var CreateGatewayRuleResponse$ = [3, n0, _CGRRr,
|
|
|
2364
2578
|
];
|
|
2365
2579
|
var CreateGatewayTargetRequest$ = [3, n0, _CGTR,
|
|
2366
2580
|
0,
|
|
2367
|
-
[
|
|
2581
|
+
[_gI, _tC, _n, _d, _cT, _cPCr, _mC, _pE],
|
|
2368
2582
|
[[0, 1], [() => TargetConfiguration$, 0], [() => TargetName, 0], [() => TargetDescription, 0], [0, 4], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 2
|
|
2369
2583
|
];
|
|
2370
2584
|
var CreateGatewayTargetResponse$ = [3, n0, _CGTRr,
|
|
2371
2585
|
0,
|
|
2372
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
2586
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2373
2587
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
2374
2588
|
];
|
|
2375
2589
|
var CreateHarnessEndpointRequest$ = [3, n0, _CHER,
|
|
@@ -2414,7 +2628,7 @@ var CreateOauth2CredentialProviderResponse$ = [3, n0, _COCPRr,
|
|
|
2414
2628
|
];
|
|
2415
2629
|
var CreateOnlineEvaluationConfigRequest$ = [3, n0, _COECR,
|
|
2416
2630
|
0,
|
|
2417
|
-
[_oECN, _rul, _dSC, _eERA, _eOC, _cT, _d, _ev, _in,
|
|
2631
|
+
[_oECN, _rul, _dSC, _eERA, _eOC, _cT, _d, _ev, _in, _cCl, _ta],
|
|
2418
2632
|
[0, () => Rule$, () => DataSourceConfig$, 0, 2, [0, 4], [() => EvaluationConfigDescription, 0], () => EvaluatorList, () => InsightList, () => ClusteringConfig$, 128 | 0], 5
|
|
2419
2633
|
];
|
|
2420
2634
|
var CreateOnlineEvaluationConfigResponse$ = [3, n0, _COECRr,
|
|
@@ -2424,12 +2638,12 @@ var CreateOnlineEvaluationConfigResponse$ = [3, n0, _COECRr,
|
|
|
2424
2638
|
];
|
|
2425
2639
|
var CreatePaymentConnectorRequest$ = [3, n0, _CPCR,
|
|
2426
2640
|
0,
|
|
2427
|
-
[_pMI, _n, _t,
|
|
2641
|
+
[_pMI, _n, _t, _cPCr, _d, _cT],
|
|
2428
2642
|
[[0, 1], 0, 0, () => CredentialsProviderConfigurations, 0, [0, 4]], 4
|
|
2429
2643
|
];
|
|
2430
2644
|
var CreatePaymentConnectorResponse$ = [3, n0, _CPCRr,
|
|
2431
2645
|
0,
|
|
2432
|
-
[_pCI, _pMI, _n, _t,
|
|
2646
|
+
[_pCI, _pMI, _n, _t, _cPCr, _cA, _st],
|
|
2433
2647
|
[0, 0, 0, 0, () => CredentialsProviderConfigurations, 5, 0], 7
|
|
2434
2648
|
];
|
|
2435
2649
|
var CreatePaymentCredentialProviderRequest$ = [3, n0, _CPCPR,
|
|
@@ -2502,7 +2716,7 @@ var CreateWorkloadIdentityResponse$ = [3, n0, _CWIRr,
|
|
|
2502
2716
|
[_n, _wIA, _aRORU],
|
|
2503
2717
|
[0, 0, 64 | 0], 2
|
|
2504
2718
|
];
|
|
2505
|
-
var CredentialProviderConfiguration$ = [3, n0,
|
|
2719
|
+
var CredentialProviderConfiguration$ = [3, n0, _CPCr,
|
|
2506
2720
|
0,
|
|
2507
2721
|
[_cPT, _cP],
|
|
2508
2722
|
[0, [() => CredentialProvider$, 0]], 1
|
|
@@ -2564,13 +2778,13 @@ var DeleteAgentRuntimeEndpointResponse$ = [3, n0, _DARERe,
|
|
|
2564
2778
|
];
|
|
2565
2779
|
var DeleteAgentRuntimeRequest$ = [3, n0, _DARR,
|
|
2566
2780
|
0,
|
|
2567
|
-
[_aRI, _cT],
|
|
2568
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
2781
|
+
[_aRI, _aRV, _cT],
|
|
2782
|
+
[[0, 1], [0, { [_hQ]: _ve }], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
2569
2783
|
];
|
|
2570
2784
|
var DeleteAgentRuntimeResponse$ = [3, n0, _DARRe,
|
|
2571
2785
|
0,
|
|
2572
|
-
[_st, _aRI],
|
|
2573
|
-
[0, 0], 1
|
|
2786
|
+
[_st, _aRI, _aRV],
|
|
2787
|
+
[0, 0, 0], 1
|
|
2574
2788
|
];
|
|
2575
2789
|
var DeleteApiKeyCredentialProviderRequest$ = [3, n0, _DAKCPR,
|
|
2576
2790
|
0,
|
|
@@ -2602,6 +2816,16 @@ var DeleteBrowserResponse$ = [3, n0, _DBRe,
|
|
|
2602
2816
|
[_bI, _st, _lUA],
|
|
2603
2817
|
[0, 0, 5], 3
|
|
2604
2818
|
];
|
|
2819
|
+
var DeleteCapacityProviderInput$ = [3, n0, _DCPI,
|
|
2820
|
+
0,
|
|
2821
|
+
[_cPI, _cT],
|
|
2822
|
+
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
2823
|
+
];
|
|
2824
|
+
var DeleteCapacityProviderOutput$ = [3, n0, _DCPO,
|
|
2825
|
+
0,
|
|
2826
|
+
[_cPI, _st],
|
|
2827
|
+
[0, 0], 2
|
|
2828
|
+
];
|
|
2605
2829
|
var DeleteCodeInterpreterRequest$ = [3, n0, _DCIR,
|
|
2606
2830
|
0,
|
|
2607
2831
|
[_cII, _cT],
|
|
@@ -2652,19 +2876,29 @@ var DeleteEvaluatorResponse$ = [3, n0, _DERe,
|
|
|
2652
2876
|
[_eA, _eIv, _st],
|
|
2653
2877
|
[0, 0, 0], 3
|
|
2654
2878
|
];
|
|
2879
|
+
var DeleteGatewayRateLimitRequest$ = [3, n0, _DGRLR,
|
|
2880
|
+
0,
|
|
2881
|
+
[_gI, _rLI],
|
|
2882
|
+
[[0, 1], [0, 1]], 2
|
|
2883
|
+
];
|
|
2884
|
+
var DeleteGatewayRateLimitResponse$ = [3, n0, _DGRLRe,
|
|
2885
|
+
0,
|
|
2886
|
+
[_rLI, _st],
|
|
2887
|
+
[0, 0], 2
|
|
2888
|
+
];
|
|
2655
2889
|
var DeleteGatewayRequest$ = [3, n0, _DGR,
|
|
2656
2890
|
0,
|
|
2657
|
-
[
|
|
2891
|
+
[_gI],
|
|
2658
2892
|
[[0, 1]], 1
|
|
2659
2893
|
];
|
|
2660
2894
|
var DeleteGatewayResponse$ = [3, n0, _DGRe,
|
|
2661
2895
|
0,
|
|
2662
|
-
[
|
|
2896
|
+
[_gIa, _st, _sR],
|
|
2663
2897
|
[0, 0, 64 | 0], 2
|
|
2664
2898
|
];
|
|
2665
2899
|
var DeleteGatewayRuleRequest$ = [3, n0, _DGRR,
|
|
2666
2900
|
0,
|
|
2667
|
-
[
|
|
2901
|
+
[_gI, _rI],
|
|
2668
2902
|
[[0, 1], [0, 1]], 2
|
|
2669
2903
|
];
|
|
2670
2904
|
var DeleteGatewayRuleResponse$ = [3, n0, _DGRRe,
|
|
@@ -2674,7 +2908,7 @@ var DeleteGatewayRuleResponse$ = [3, n0, _DGRRe,
|
|
|
2674
2908
|
];
|
|
2675
2909
|
var DeleteGatewayTargetRequest$ = [3, n0, _DGTR,
|
|
2676
2910
|
0,
|
|
2677
|
-
[
|
|
2911
|
+
[_gI, _tI],
|
|
2678
2912
|
[[0, 1], [0, 1]], 2
|
|
2679
2913
|
];
|
|
2680
2914
|
var DeleteGatewayTargetResponse$ = [3, n0, _DGTRe,
|
|
@@ -2832,16 +3066,36 @@ var Descriptors$ = [3, n0, _Des,
|
|
|
2832
3066
|
[_mc, _aa, _cu, _aSg],
|
|
2833
3067
|
[() => McpDescriptor$, () => A2aDescriptor$, () => CustomDescriptor$, () => AgentSkillsDescriptor$]
|
|
2834
3068
|
];
|
|
3069
|
+
var EbsVolumeConfiguration$ = [3, n0, _EVC,
|
|
3070
|
+
0,
|
|
3071
|
+
[_n, _sGB, _vT, _io, _th, _enc, _kKI, _sI],
|
|
3072
|
+
[0, 1, 0, 1, 1, 2, 0, 0], 2
|
|
3073
|
+
];
|
|
3074
|
+
var Ec2Configuration$ = [3, n0, _EC,
|
|
3075
|
+
0,
|
|
3076
|
+
[_lTS, _vCp, _vo, _lC, _rVo],
|
|
3077
|
+
[() => LaunchTemplateSource$, () => VpcConfiguration$, () => VolumeConfigurationList, () => InstanceLifecycleConfiguration$, () => RootVolumeConfiguration$], 2
|
|
3078
|
+
];
|
|
2835
3079
|
var EfsAccessPointConfiguration$ = [3, n0, _EAPC,
|
|
2836
3080
|
0,
|
|
2837
3081
|
[_aPA, _mP],
|
|
2838
3082
|
[0, 0], 2
|
|
2839
3083
|
];
|
|
2840
|
-
var EfsConfiguration$ = [3, n0,
|
|
3084
|
+
var EfsConfiguration$ = [3, n0, _ECf,
|
|
2841
3085
|
0,
|
|
2842
3086
|
[_aPA, _mP, _fSA],
|
|
2843
3087
|
[0, 0, 0], 3
|
|
2844
3088
|
];
|
|
3089
|
+
var EphemeralBlockDeviceMapping$ = [3, n0, _EBDM,
|
|
3090
|
+
0,
|
|
3091
|
+
[_dNe, _vNi, _eb],
|
|
3092
|
+
[0, 0, () => EphemeralEBSVolumeConfiguration$]
|
|
3093
|
+
];
|
|
3094
|
+
var EphemeralEBSVolumeConfiguration$ = [3, n0, _EEBSVC,
|
|
3095
|
+
0,
|
|
3096
|
+
[_vT, _io, _th, _enc, _kKI, _sI, _vS, _vIR, _eCI],
|
|
3097
|
+
[0, 1, 1, 2, 0, 0, 1, 1, 1]
|
|
3098
|
+
];
|
|
2845
3099
|
var EpisodicConsolidationOverride$ = [3, n0, _ECO,
|
|
2846
3100
|
0,
|
|
2847
3101
|
[_aTP, _mI],
|
|
@@ -2909,7 +3163,7 @@ var Finding$ = [3, n0, _Fi,
|
|
|
2909
3163
|
];
|
|
2910
3164
|
var FromUrlSynchronizationConfiguration$ = [3, n0, _FUSC,
|
|
2911
3165
|
0,
|
|
2912
|
-
[_u,
|
|
3166
|
+
[_u, _cPCr],
|
|
2913
3167
|
[0, () => RegistryRecordCredentialProviderConfigurationList], 1
|
|
2914
3168
|
];
|
|
2915
3169
|
var GatewayApiKeyCredentialProvider$ = [3, n0, _GAKCP,
|
|
@@ -2927,6 +3181,11 @@ var GatewayPolicyEngineConfiguration$ = [3, n0, _GPEC,
|
|
|
2927
3181
|
[_ar, _mod],
|
|
2928
3182
|
[0, 0], 2
|
|
2929
3183
|
];
|
|
3184
|
+
var GatewayRateLimitDetail$ = [3, n0, _GRLD,
|
|
3185
|
+
0,
|
|
3186
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
3187
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
3188
|
+
];
|
|
2930
3189
|
var GatewayRuleDetail$ = [3, n0, _GRD,
|
|
2931
3190
|
0,
|
|
2932
3191
|
[_rI, _gA, _pr, _a, _cA, _st, _cond, _d, _sy, _uA],
|
|
@@ -2934,12 +3193,12 @@ var GatewayRuleDetail$ = [3, n0, _GRD,
|
|
|
2934
3193
|
];
|
|
2935
3194
|
var GatewaySummary$ = [3, n0, _GS,
|
|
2936
3195
|
0,
|
|
2937
|
-
[
|
|
3196
|
+
[_gIa, _n, _st, _cA, _uA, _aT, _d, _pT],
|
|
2938
3197
|
[0, 0, 0, 5, 5, 0, [() => GatewayDescription, 0], 0], 6
|
|
2939
3198
|
];
|
|
2940
3199
|
var GatewayTarget$ = [3, n0, _GT,
|
|
2941
3200
|
0,
|
|
2942
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
3201
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
2943
3202
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
2944
3203
|
];
|
|
2945
3204
|
var GetAgentRuntimeEndpointRequest$ = [3, n0, _GARER,
|
|
@@ -2959,8 +3218,8 @@ var GetAgentRuntimeRequest$ = [3, n0, _GARR,
|
|
|
2959
3218
|
];
|
|
2960
3219
|
var GetAgentRuntimeResponse$ = [3, n0, _GARRe,
|
|
2961
3220
|
0,
|
|
2962
|
-
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _st, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aCu, _rHC, _mC, _fC],
|
|
2963
|
-
[0, 0, 0, 0, 5, 5, 0, () => NetworkConfiguration$, 0, () => LifecycleConfiguration$, 0, [() => Description, 0], () => WorkloadIdentityDetails$, () => AgentRuntimeArtifact$, () => ProtocolConfiguration$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => RuntimeMetadataConfiguration$, () => FilesystemConfigurations], 10
|
|
3221
|
+
[_aRA, _aRN, _aRI, _aRV, _cA, _lUA, _rA, _nC, _st, _lC, _fR, _d, _wID, _aRAg, _pC, _eV, _aCu, _rHC, _mC, _fC, _cPC],
|
|
3222
|
+
[0, 0, 0, 0, 5, 5, 0, () => NetworkConfiguration$, 0, () => LifecycleConfiguration$, 0, [() => Description, 0], () => WorkloadIdentityDetails$, () => AgentRuntimeArtifact$, () => ProtocolConfiguration$, [() => EnvironmentVariablesMap, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => RuntimeMetadataConfiguration$, () => FilesystemConfigurations, () => CapacityProviderConfiguration$], 10
|
|
2964
3223
|
];
|
|
2965
3224
|
var GetApiKeyCredentialProviderRequest$ = [3, n0, _GAKCPR,
|
|
2966
3225
|
0,
|
|
@@ -2992,6 +3251,16 @@ var GetBrowserResponse$ = [3, n0, _GBRe,
|
|
|
2992
3251
|
[_bI, _bA, _n, _nC, _st, _cA, _lUA, _d, _eRA, _re, _bS, _ePn, _ce, _fC, _fR],
|
|
2993
3252
|
[0, 0, 0, () => BrowserNetworkConfiguration$, 0, 5, 5, [() => Description, 0], 0, () => RecordingConfig$, () => BrowserSigningConfigOutput$, () => BrowserEnterprisePolicies, () => Certificates, () => ToolsFileSystemConfigurations, 0], 7
|
|
2994
3253
|
];
|
|
3254
|
+
var GetCapacityProviderInput$ = [3, n0, _GCPI,
|
|
3255
|
+
0,
|
|
3256
|
+
[_cPI],
|
|
3257
|
+
[[0, 1]], 1
|
|
3258
|
+
];
|
|
3259
|
+
var GetCapacityProviderOutput$ = [3, n0, _GCPO,
|
|
3260
|
+
0,
|
|
3261
|
+
[_cPI, _cPAa, _n, _st, _pCe, _cC, _cA, _lUA, _d, _sCt, _sRt],
|
|
3262
|
+
[0, 0, 0, 0, () => PermissionsConfiguration$, () => ComputeConfiguration$, 5, 5, [() => Description, 0], 0, 0], 8
|
|
3263
|
+
];
|
|
2995
3264
|
var GetCodeInterpreterRequest$ = [3, n0, _GCIR,
|
|
2996
3265
|
0,
|
|
2997
3266
|
[_cII],
|
|
@@ -3042,19 +3311,29 @@ var GetEvaluatorResponse$ = [3, n0, _GERe,
|
|
|
3042
3311
|
[_eA, _eIv, _eNv, _eC, _le, _st, _cA, _uA, _d, _lFM, _kKA],
|
|
3043
3312
|
[0, 0, 0, [() => EvaluatorConfig$, 0], 0, 0, 4, 4, [() => EvaluatorDescription, 0], 2, 0], 8
|
|
3044
3313
|
];
|
|
3314
|
+
var GetGatewayRateLimitRequest$ = [3, n0, _GGRLR,
|
|
3315
|
+
0,
|
|
3316
|
+
[_gI, _rLI],
|
|
3317
|
+
[[0, 1], [0, 1]], 2
|
|
3318
|
+
];
|
|
3319
|
+
var GetGatewayRateLimitResponse$ = [3, n0, _GGRLRe,
|
|
3320
|
+
0,
|
|
3321
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
3322
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
3323
|
+
];
|
|
3045
3324
|
var GetGatewayRequest$ = [3, n0, _GGR,
|
|
3046
3325
|
0,
|
|
3047
|
-
[
|
|
3326
|
+
[_gI],
|
|
3048
3327
|
[[0, 1]], 1
|
|
3049
3328
|
];
|
|
3050
3329
|
var GetGatewayResponse$ = [3, n0, _GGRe,
|
|
3051
3330
|
0,
|
|
3052
|
-
[_gA,
|
|
3331
|
+
[_gA, _gIa, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
|
|
3053
3332
|
[0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
|
|
3054
3333
|
];
|
|
3055
3334
|
var GetGatewayRuleRequest$ = [3, n0, _GGRR,
|
|
3056
3335
|
0,
|
|
3057
|
-
[
|
|
3336
|
+
[_gI, _rI],
|
|
3058
3337
|
[[0, 1], [0, 1]], 2
|
|
3059
3338
|
];
|
|
3060
3339
|
var GetGatewayRuleResponse$ = [3, n0, _GGRRe,
|
|
@@ -3064,12 +3343,12 @@ var GetGatewayRuleResponse$ = [3, n0, _GGRRe,
|
|
|
3064
3343
|
];
|
|
3065
3344
|
var GetGatewayTargetRequest$ = [3, n0, _GGTR,
|
|
3066
3345
|
0,
|
|
3067
|
-
[
|
|
3346
|
+
[_gI, _tI],
|
|
3068
3347
|
[[0, 1], [0, 1]], 2
|
|
3069
3348
|
];
|
|
3070
3349
|
var GetGatewayTargetResponse$ = [3, n0, _GGTRe,
|
|
3071
3350
|
0,
|
|
3072
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
3351
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
3073
3352
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
3074
3353
|
];
|
|
3075
3354
|
var GetHarnessEndpointRequest$ = [3, n0, _GHER,
|
|
@@ -3119,7 +3398,7 @@ var GetOnlineEvaluationConfigRequest$ = [3, n0, _GOECR,
|
|
|
3119
3398
|
];
|
|
3120
3399
|
var GetOnlineEvaluationConfigResponse$ = [3, n0, _GOECRe,
|
|
3121
3400
|
0,
|
|
3122
|
-
[_oECA, _oECI, _oECN, _rul, _dSC, _st, _eS, _cA, _uA, _d, _ev, _in,
|
|
3401
|
+
[_oECA, _oECI, _oECN, _rul, _dSC, _st, _eS, _cA, _uA, _d, _ev, _in, _cCl, _oC, _eERA, _fR],
|
|
3123
3402
|
[0, 0, 0, () => Rule$, () => DataSourceConfig$, 0, 0, 4, 4, [() => EvaluationConfigDescription, 0], () => EvaluatorList, () => InsightList, () => ClusteringConfig$, () => OutputConfig$, 0, 0], 9
|
|
3124
3403
|
];
|
|
3125
3404
|
var GetPaymentConnectorRequest$ = [3, n0, _GPCR,
|
|
@@ -3129,7 +3408,7 @@ var GetPaymentConnectorRequest$ = [3, n0, _GPCR,
|
|
|
3129
3408
|
];
|
|
3130
3409
|
var GetPaymentConnectorResponse$ = [3, n0, _GPCRe,
|
|
3131
3410
|
0,
|
|
3132
|
-
[_pCI, _n, _t,
|
|
3411
|
+
[_pCI, _n, _t, _cPCr, _cA, _lUA, _st, _d],
|
|
3133
3412
|
[0, 0, 0, () => CredentialsProviderConfigurations, 5, 5, 0, 0], 7
|
|
3134
3413
|
];
|
|
3135
3414
|
var GetPaymentCredentialProviderRequest$ = [3, n0, _GPCPR,
|
|
@@ -3309,7 +3588,7 @@ var HarnessAgentCoreMemoryConfiguration$ = [3, n0, _HACMC,
|
|
|
3309
3588
|
];
|
|
3310
3589
|
var HarnessAgentCoreMemoryRetrievalConfig$ = [3, n0, _HACMRC,
|
|
3311
3590
|
0,
|
|
3312
|
-
[_tK, _rS,
|
|
3591
|
+
[_tK, _rS, _sIt],
|
|
3313
3592
|
[1, 1, 0]
|
|
3314
3593
|
];
|
|
3315
3594
|
var HarnessAgentCoreRuntimeEnvironment$ = [3, n0, _HACRE,
|
|
@@ -3427,6 +3706,16 @@ var HttpApiSchemaConfiguration$ = [3, n0, _HASC,
|
|
|
3427
3706
|
[_so],
|
|
3428
3707
|
[[() => ApiSchemaConfiguration$, 0]], 1
|
|
3429
3708
|
];
|
|
3709
|
+
var HttpConnectorSource$ = [3, n0, _HCS,
|
|
3710
|
+
0,
|
|
3711
|
+
[_cIo],
|
|
3712
|
+
[0], 1
|
|
3713
|
+
];
|
|
3714
|
+
var HttpConnectorTargetConfiguration$ = [3, n0, _HCTC,
|
|
3715
|
+
0,
|
|
3716
|
+
[_so, _par],
|
|
3717
|
+
[() => HttpConnectorSource$, 128 | 0], 1
|
|
3718
|
+
];
|
|
3430
3719
|
var IamCredentialProvider$ = [3, n0, _ICP,
|
|
3431
3720
|
0,
|
|
3432
3721
|
[_ser, _reg],
|
|
@@ -3487,6 +3776,16 @@ var Insight$ = [3, n0, _I,
|
|
|
3487
3776
|
[_iI],
|
|
3488
3777
|
[0], 1
|
|
3489
3778
|
];
|
|
3779
|
+
var InstanceLifecycleConfiguration$ = [3, n0, _ILC,
|
|
3780
|
+
0,
|
|
3781
|
+
[_iIT, _mL],
|
|
3782
|
+
[1, 1]
|
|
3783
|
+
];
|
|
3784
|
+
var InstanceRequirements$ = [3, n0, _IR,
|
|
3785
|
+
0,
|
|
3786
|
+
[_aIT],
|
|
3787
|
+
[64 | 0], 1
|
|
3788
|
+
];
|
|
3490
3789
|
var InterceptorInputConfiguration$ = [3, n0, _IIC,
|
|
3491
3790
|
0,
|
|
3492
3791
|
[_pRH, _pF],
|
|
@@ -3537,11 +3836,26 @@ var LambdaTransformConfiguration$ = [3, n0, _LTC,
|
|
|
3537
3836
|
[_ar],
|
|
3538
3837
|
[0]
|
|
3539
3838
|
];
|
|
3839
|
+
var LaunchParameters$ = [3, n0, _LP,
|
|
3840
|
+
0,
|
|
3841
|
+
[_oS, _iR, _eVp, _mon, _lS, _cRS, _sKN, _iPA, _pTr],
|
|
3842
|
+
[0, () => InstanceRequirements$, () => EphemeralBlockDeviceMappingList, 0, () => LicenseSpecificationList, () => CapacityReservationSpecification$, 0, 0, 128 | 0], 2
|
|
3843
|
+
];
|
|
3844
|
+
var LicenseSpecification$ = [3, n0, _LS,
|
|
3845
|
+
0,
|
|
3846
|
+
[_lCA],
|
|
3847
|
+
[0], 1
|
|
3848
|
+
];
|
|
3540
3849
|
var LifecycleConfiguration$ = [3, n0, _LC,
|
|
3541
3850
|
0,
|
|
3542
3851
|
[_iRST, _mL],
|
|
3543
3852
|
[1, 1]
|
|
3544
3853
|
];
|
|
3854
|
+
var LimitEntry$ = [3, n0, _LE,
|
|
3855
|
+
0,
|
|
3856
|
+
[_di, _req, _tok, _conn],
|
|
3857
|
+
[128 | 0, () => RateConfigs, () => RateConfigs, () => RateConfigs], 1
|
|
3858
|
+
];
|
|
3545
3859
|
var LinkedinOauth2ProviderConfigInput$ = [3, n0, _LOPCI,
|
|
3546
3860
|
0,
|
|
3547
3861
|
[_cI, _cS, _cSC, _cSS],
|
|
@@ -3572,6 +3886,16 @@ var ListAgentRuntimesResponse$ = [3, n0, _LARRi,
|
|
|
3572
3886
|
[_aR, _nTe],
|
|
3573
3887
|
[[() => AgentRuntimes, 0], 0], 1
|
|
3574
3888
|
];
|
|
3889
|
+
var ListAgentRuntimeVersionsByCapacityProviderInput$ = [3, n0, _LARVBCPI,
|
|
3890
|
+
0,
|
|
3891
|
+
[_cPI, _mR, _nTe],
|
|
3892
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3893
|
+
];
|
|
3894
|
+
var ListAgentRuntimeVersionsByCapacityProviderOutput$ = [3, n0, _LARVBCPO,
|
|
3895
|
+
0,
|
|
3896
|
+
[_aR, _nTe],
|
|
3897
|
+
[() => AgentRuntimeVersionSummaryList, 0], 1
|
|
3898
|
+
];
|
|
3575
3899
|
var ListAgentRuntimeVersionsRequest$ = [3, n0, _LARVR,
|
|
3576
3900
|
0,
|
|
3577
3901
|
[_aRI, _mR, _nTe],
|
|
@@ -3612,6 +3936,16 @@ var ListBrowsersResponse$ = [3, n0, _LBRi,
|
|
|
3612
3936
|
[_bSr, _nTe],
|
|
3613
3937
|
[[() => BrowserSummaries, 0], 0], 1
|
|
3614
3938
|
];
|
|
3939
|
+
var ListCapacityProvidersInput$ = [3, n0, _LCPI,
|
|
3940
|
+
0,
|
|
3941
|
+
[_mR, _nTe],
|
|
3942
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]]
|
|
3943
|
+
];
|
|
3944
|
+
var ListCapacityProvidersOutput$ = [3, n0, _LCPO,
|
|
3945
|
+
0,
|
|
3946
|
+
[_cPa, _nTe],
|
|
3947
|
+
[() => CapacityProviderList, 0], 1
|
|
3948
|
+
];
|
|
3615
3949
|
var ListCodeInterpretersRequest$ = [3, n0, _LCIR,
|
|
3616
3950
|
0,
|
|
3617
3951
|
[_mR, _nTe, _t],
|
|
@@ -3682,9 +4016,19 @@ var ListEvaluatorsResponse$ = [3, n0, _LERi,
|
|
|
3682
4016
|
[_ev, _nTe],
|
|
3683
4017
|
[[() => EvaluatorSummaryList, 0], 0], 1
|
|
3684
4018
|
];
|
|
4019
|
+
var ListGatewayRateLimitsRequest$ = [3, n0, _LGRLR,
|
|
4020
|
+
0,
|
|
4021
|
+
[_gI, _mR, _nTe],
|
|
4022
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
4023
|
+
];
|
|
4024
|
+
var ListGatewayRateLimitsResponse$ = [3, n0, _LGRLRi,
|
|
4025
|
+
0,
|
|
4026
|
+
[_rL, _nTe],
|
|
4027
|
+
[() => GatewayRateLimits, 0], 1
|
|
4028
|
+
];
|
|
3685
4029
|
var ListGatewayRulesRequest$ = [3, n0, _LGRR,
|
|
3686
4030
|
0,
|
|
3687
|
-
[
|
|
4031
|
+
[_gI, _mR, _nTe],
|
|
3688
4032
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3689
4033
|
];
|
|
3690
4034
|
var ListGatewayRulesResponse$ = [3, n0, _LGRRi,
|
|
@@ -3704,7 +4048,7 @@ var ListGatewaysResponse$ = [3, n0, _LGRi,
|
|
|
3704
4048
|
];
|
|
3705
4049
|
var ListGatewayTargetsRequest$ = [3, n0, _LGTR,
|
|
3706
4050
|
0,
|
|
3707
|
-
[
|
|
4051
|
+
[_gI, _mR, _nTe],
|
|
3708
4052
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nTe }]], 1
|
|
3709
4053
|
];
|
|
3710
4054
|
var ListGatewayTargetsResponse$ = [3, n0, _LGTRi,
|
|
@@ -3949,7 +4293,7 @@ var McpDescriptor$ = [3, n0, _MD,
|
|
|
3949
4293
|
];
|
|
3950
4294
|
var MCPGatewayConfiguration$ = [3, n0, _MCPGC,
|
|
3951
4295
|
0,
|
|
3952
|
-
[_sVu, _ins, _sTe, _sCe,
|
|
4296
|
+
[_sVu, _ins, _sTe, _sCe, _sCtr],
|
|
3953
4297
|
[64 | 0, [() => McpInstructions, 0], 0, () => SessionConfiguration$, () => StreamingConfiguration$]
|
|
3954
4298
|
];
|
|
3955
4299
|
var McpLambdaTargetConfiguration$ = [3, n0, _MLTC,
|
|
@@ -3974,7 +4318,7 @@ var MemoryRecordSchema$ = [3, n0, _MRS,
|
|
|
3974
4318
|
];
|
|
3975
4319
|
var MemoryStrategy$ = [3, n0, _MS,
|
|
3976
4320
|
0,
|
|
3977
|
-
[
|
|
4321
|
+
[_sIt, _n, _t, _na, _nT, _d, _con, _cA, _uA, _st, _mRS],
|
|
3978
4322
|
[0, 0, 0, 64 | 0, 64 | 0, [() => Description, 0], [() => StrategyConfiguration$, 0], 4, 4, 0, [() => MemoryRecordSchema$, 0]], 5
|
|
3979
4323
|
];
|
|
3980
4324
|
var MemorySummary$ = [3, n0, _MSe,
|
|
@@ -4089,7 +4433,7 @@ var OnBehalfOfTokenExchangeConfigType$ = [3, n0, _OBOTECT,
|
|
|
4089
4433
|
];
|
|
4090
4434
|
var OnlineEvaluationConfigSummary$ = [3, n0, _OECS,
|
|
4091
4435
|
0,
|
|
4092
|
-
[_oECA, _oECI, _oECN, _st, _eS, _cA, _uA, _d, _fR, _in,
|
|
4436
|
+
[_oECA, _oECI, _oECN, _st, _eS, _cA, _uA, _d, _fR, _in, _cCl],
|
|
4093
4437
|
[0, 0, 0, 0, 0, 4, 4, [() => EvaluationConfigDescription, 0], 0, () => InsightList, () => ClusteringConfig$], 7
|
|
4094
4438
|
];
|
|
4095
4439
|
var OpenResponsesEvaluatorModelConfig$ = [3, n0, _OREMC,
|
|
@@ -4127,6 +4471,11 @@ var PaymentManagerSummary$ = [3, n0, _PMS,
|
|
|
4127
4471
|
[_pMA, _pMI, _n, _aT, _rA, _st, _lUA, _d, _cA],
|
|
4128
4472
|
[0, 0, 0, 0, 0, 0, 5, 0, 5], 7
|
|
4129
4473
|
];
|
|
4474
|
+
var PermissionsConfiguration$ = [3, n0, _PC,
|
|
4475
|
+
0,
|
|
4476
|
+
[_cPORA],
|
|
4477
|
+
[0], 1
|
|
4478
|
+
];
|
|
4130
4479
|
var Policy$ = [3, n0, _Po,
|
|
4131
4480
|
0,
|
|
4132
4481
|
[_pIo, _n, _pEI, _cA, _uA, _pAo, _st, _de, _sR, _eM, _d],
|
|
@@ -4182,7 +4531,7 @@ var PrivateKeyJwtConfig$ = [3, n0, _PKJC,
|
|
|
4182
4531
|
[_pKS, _sA, _aHC, _aPC],
|
|
4183
4532
|
[() => PrivateKeySource$, 0, [() => AdditionalClaims, 0], [() => AdditionalClaims, 0]]
|
|
4184
4533
|
];
|
|
4185
|
-
var ProtocolConfiguration$ = [3, n0,
|
|
4534
|
+
var ProtocolConfiguration$ = [3, n0, _PCr,
|
|
4186
4535
|
0,
|
|
4187
4536
|
[_sPe],
|
|
4188
4537
|
[0], 1
|
|
@@ -4202,14 +4551,19 @@ var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
|
4202
4551
|
[_po],
|
|
4203
4552
|
[0], 1
|
|
4204
4553
|
];
|
|
4205
|
-
var
|
|
4554
|
+
var RateConfig$ = [3, n0, _RC,
|
|
4555
|
+
0,
|
|
4556
|
+
[_ra, _pe],
|
|
4557
|
+
[1, 0], 2
|
|
4558
|
+
];
|
|
4559
|
+
var ReasoningConfiguration$ = [3, n0, _RCe,
|
|
4206
4560
|
0,
|
|
4207
4561
|
[_ef],
|
|
4208
4562
|
[0]
|
|
4209
4563
|
];
|
|
4210
|
-
var RecordingConfig$ = [3, n0,
|
|
4564
|
+
var RecordingConfig$ = [3, n0, _RCec,
|
|
4211
4565
|
0,
|
|
4212
|
-
[
|
|
4566
|
+
[_ena, _sL],
|
|
4213
4567
|
[2, () => S3Location$]
|
|
4214
4568
|
];
|
|
4215
4569
|
var RegistryRecordCredentialProviderConfiguration$ = [3, n0, _RRCPC,
|
|
@@ -4237,6 +4591,11 @@ var RegistrySummary$ = [3, n0, _RS,
|
|
|
4237
4591
|
[_n, _rIe, _rAeg, _st, _cA, _uA, _d, _aT, _sRt],
|
|
4238
4592
|
[0, 0, 0, 0, 5, 5, [() => Description, 0], 0, 0], 6
|
|
4239
4593
|
];
|
|
4594
|
+
var RootVolumeConfiguration$ = [3, n0, _RVC,
|
|
4595
|
+
0,
|
|
4596
|
+
[_vT, _io, _th, _enc, _kKI, _fSGB],
|
|
4597
|
+
[0, 1, 1, 2, 0, 1]
|
|
4598
|
+
];
|
|
4240
4599
|
var Rule$ = [3, n0, _R,
|
|
4241
4600
|
0,
|
|
4242
4601
|
[_sCa, _filt, _sCes],
|
|
@@ -4294,7 +4653,7 @@ var SamplingConfig$ = [3, n0, _SCa,
|
|
|
4294
4653
|
];
|
|
4295
4654
|
var SchemaDefinition$ = [3, n0, _SD,
|
|
4296
4655
|
0,
|
|
4297
|
-
[_t, _pro,
|
|
4656
|
+
[_t, _pro, _requ, _it, _d],
|
|
4298
4657
|
[0, () => SchemaProperties, 64 | 0, () => SchemaDefinition$, 0], 1
|
|
4299
4658
|
];
|
|
4300
4659
|
var Secret$ = [3, n0, _S,
|
|
@@ -4499,7 +4858,7 @@ var SynchronizationConfiguration$ = [3, n0, _SCy,
|
|
|
4499
4858
|
];
|
|
4500
4859
|
var SynchronizeGatewayTargetsRequest$ = [3, n0, _SGTR,
|
|
4501
4860
|
0,
|
|
4502
|
-
[
|
|
4861
|
+
[_gI, _tIL],
|
|
4503
4862
|
[[0, 1], 64 | 0], 2
|
|
4504
4863
|
];
|
|
4505
4864
|
var SynchronizeGatewayTargetsResponse$ = [3, n0, _SGTRy,
|
|
@@ -4559,7 +4918,7 @@ var TokenExchangeGrantTypeConfigType$ = [3, n0, _TEGTCT,
|
|
|
4559
4918
|
];
|
|
4560
4919
|
var ToolDefinition$ = [3, n0, _TDo,
|
|
4561
4920
|
8,
|
|
4562
|
-
[_n, _d, _iS,
|
|
4921
|
+
[_n, _d, _iS, _oSu],
|
|
4563
4922
|
[0, 0, () => SchemaDefinition$, () => SchemaDefinition$], 3
|
|
4564
4923
|
];
|
|
4565
4924
|
var ToolsDefinition$ = [3, n0, _TDoo,
|
|
@@ -4594,8 +4953,8 @@ var UpdateAgentRuntimeEndpointResponse$ = [3, n0, _UARERp,
|
|
|
4594
4953
|
];
|
|
4595
4954
|
var UpdateAgentRuntimeRequest$ = [3, n0, _UARR,
|
|
4596
4955
|
0,
|
|
4597
|
-
[_aRI, _aRAg, _rA, _nC, _d, _aCu, _rHC, _pC, _lC, _mC, _eV, _fC, _cT],
|
|
4598
|
-
[[0, 1], () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, () => RuntimeMetadataConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, [0, 4]],
|
|
4956
|
+
[_aRI, _aRAg, _rA, _nC, _d, _aCu, _rHC, _pC, _lC, _mC, _eV, _fC, _cPC, _cT],
|
|
4957
|
+
[[0, 1], () => AgentRuntimeArtifact$, 0, () => NetworkConfiguration$, [() => Description, 0], () => AuthorizerConfiguration$, () => RequestHeaderConfiguration$, () => ProtocolConfiguration$, () => LifecycleConfiguration$, () => RuntimeMetadataConfiguration$, [() => EnvironmentVariablesMap, 0], () => FilesystemConfigurations, () => CapacityProviderConfiguration$, [0, 4]], 3
|
|
4599
4958
|
];
|
|
4600
4959
|
var UpdateAgentRuntimeResponse$ = [3, n0, _UARRp,
|
|
4601
4960
|
0,
|
|
@@ -4612,6 +4971,16 @@ var UpdateApiKeyCredentialProviderResponse$ = [3, n0, _UAKCPRp,
|
|
|
4612
4971
|
[_aKSA, _n, _cPA, _cTr, _lUT, _aKSJK, _aKSS],
|
|
4613
4972
|
[() => Secret$, 0, 0, 4, 4, 0, 0], 5
|
|
4614
4973
|
];
|
|
4974
|
+
var UpdateCapacityProviderInput$ = [3, n0, _UCPI,
|
|
4975
|
+
0,
|
|
4976
|
+
[_cPI, _d, _cT],
|
|
4977
|
+
[[0, 1], [() => UpdatedDescription$, 0], [0, 4]], 1
|
|
4978
|
+
];
|
|
4979
|
+
var UpdateCapacityProviderOutput$ = [3, n0, _UCPO,
|
|
4980
|
+
0,
|
|
4981
|
+
[_cPI, _cPAa, _n, _st, _cA, _lUA],
|
|
4982
|
+
[0, 0, 0, 0, 5, 5], 6
|
|
4983
|
+
];
|
|
4615
4984
|
var UpdateConfigurationBundleRequest$ = [3, n0, _UCBR,
|
|
4616
4985
|
0,
|
|
4617
4986
|
[_bIu, _cT, _bN, _d, _com, _pVI, _bNr, _cM, _cB, _kKA],
|
|
@@ -4747,19 +5116,29 @@ var UpdateEvaluatorResponse$ = [3, n0, _UERp,
|
|
|
4747
5116
|
[_eA, _eIv, _uA, _st],
|
|
4748
5117
|
[0, 0, 4, 0], 4
|
|
4749
5118
|
];
|
|
5119
|
+
var UpdateGatewayRateLimitRequest$ = [3, n0, _UGRLR,
|
|
5120
|
+
0,
|
|
5121
|
+
[_gI, _rLI, _en, _d],
|
|
5122
|
+
[[0, 1], [0, 1], () => LimitEntries, 0], 3
|
|
5123
|
+
];
|
|
5124
|
+
var UpdateGatewayRateLimitResponse$ = [3, n0, _UGRLRp,
|
|
5125
|
+
0,
|
|
5126
|
+
[_rLI, _gI, _dK, _en, _st, _cA, _uA, _d],
|
|
5127
|
+
[0, 0, 64 | 0, () => LimitEntries, 0, 5, 5, 0], 7
|
|
5128
|
+
];
|
|
4750
5129
|
var UpdateGatewayRequest$ = [3, n0, _UGR,
|
|
4751
5130
|
0,
|
|
4752
|
-
[
|
|
5131
|
+
[_gI, _n, _rA, _aT, _d, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _eL, _wC],
|
|
4753
5132
|
[[0, 1], 0, 0, 0, [() => GatewayDescription, 0], 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, 0, () => WafConfiguration$], 4
|
|
4754
5133
|
];
|
|
4755
5134
|
var UpdateGatewayResponse$ = [3, n0, _UGRp,
|
|
4756
5135
|
0,
|
|
4757
|
-
[_gA,
|
|
5136
|
+
[_gA, _gIa, _cA, _uA, _st, _n, _aT, _gU, _sR, _d, _rA, _pT, _pC, _aCu, _kKA, _cTC, _iCnt, _pEC, _wID, _eL, _wAA, _wC],
|
|
4758
5137
|
[0, 0, 5, 5, 0, 0, 0, 0, 64 | 0, [() => GatewayDescription, 0], 0, 0, [() => GatewayProtocolConfiguration$, 0], () => AuthorizerConfiguration$, 0, () => CustomTransformConfiguration$, () => GatewayInterceptorConfigurations, () => GatewayPolicyEngineConfiguration$, () => WorkloadIdentityDetails$, 0, 0, () => WafConfiguration$], 7
|
|
4759
5138
|
];
|
|
4760
5139
|
var UpdateGatewayRuleRequest$ = [3, n0, _UGRR,
|
|
4761
5140
|
0,
|
|
4762
|
-
[
|
|
5141
|
+
[_gI, _rI, _pr, _cond, _a, _d],
|
|
4763
5142
|
[[0, 1], [0, 1], 1, () => Conditions, [() => Actions, 0], 0], 2
|
|
4764
5143
|
];
|
|
4765
5144
|
var UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
|
|
@@ -4769,12 +5148,12 @@ var UpdateGatewayRuleResponse$ = [3, n0, _UGRRp,
|
|
|
4769
5148
|
];
|
|
4770
5149
|
var UpdateGatewayTargetRequest$ = [3, n0, _UGTR,
|
|
4771
5150
|
0,
|
|
4772
|
-
[
|
|
5151
|
+
[_gI, _tI, _tC, _n, _d, _cPCr, _mC, _pE],
|
|
4773
5152
|
[[0, 1], [0, 1], [() => TargetConfiguration$, 0], [() => TargetName, 0], [() => TargetDescription, 0], [() => CredentialProviderConfigurations, 0], () => MetadataConfiguration$, () => PrivateEndpoint$], 3
|
|
4774
5153
|
];
|
|
4775
5154
|
var UpdateGatewayTargetResponse$ = [3, n0, _UGTRp,
|
|
4776
5155
|
0,
|
|
4777
|
-
[_gA, _tI, _cA, _uA, _st, _n, _tC,
|
|
5156
|
+
[_gA, _tI, _cA, _uA, _st, _n, _tC, _cPCr, _sR, _d, _lSAa, _mC, _pE, _pEMR, _aD, _pT],
|
|
4778
5157
|
[0, 0, 5, 5, 0, [() => TargetName, 0], [() => TargetConfiguration$, 0], [() => CredentialProviderConfigurations, 0], 64 | 0, [() => TargetDescription, 0], 5, () => MetadataConfiguration$, () => PrivateEndpoint$, () => PrivateEndpointManagedResources, () => AuthorizationData$, 0], 8
|
|
4779
5158
|
];
|
|
4780
5159
|
var UpdateHarnessEndpointRequest$ = [3, n0, _UHER,
|
|
@@ -4819,7 +5198,7 @@ var UpdateOauth2CredentialProviderResponse$ = [3, n0, _UOCPRp,
|
|
|
4819
5198
|
];
|
|
4820
5199
|
var UpdateOnlineEvaluationConfigRequest$ = [3, n0, _UOECR,
|
|
4821
5200
|
0,
|
|
4822
|
-
[_oECI, _cT, _d, _rul, _dSC, _ev, _in,
|
|
5201
|
+
[_oECI, _cT, _d, _rul, _dSC, _ev, _in, _cCl, _eERA, _eS],
|
|
4823
5202
|
[[0, 1], [0, 4], [() => EvaluationConfigDescription, 0], () => Rule$, () => DataSourceConfig$, () => EvaluatorList, () => InsightList, () => ClusteringConfig$, 0, 0], 1
|
|
4824
5203
|
];
|
|
4825
5204
|
var UpdateOnlineEvaluationConfigResponse$ = [3, n0, _UOECRp,
|
|
@@ -4829,12 +5208,12 @@ var UpdateOnlineEvaluationConfigResponse$ = [3, n0, _UOECRp,
|
|
|
4829
5208
|
];
|
|
4830
5209
|
var UpdatePaymentConnectorRequest$ = [3, n0, _UPCR,
|
|
4831
5210
|
0,
|
|
4832
|
-
[_pMI, _pCI, _d, _t,
|
|
5211
|
+
[_pMI, _pCI, _d, _t, _cPCr, _cT],
|
|
4833
5212
|
[[0, 1], [0, 1], 0, 0, () => CredentialsProviderConfigurations, [0, 4]], 2
|
|
4834
5213
|
];
|
|
4835
5214
|
var UpdatePaymentConnectorResponse$ = [3, n0, _UPCRp,
|
|
4836
5215
|
0,
|
|
4837
|
-
[_pCI, _pMI, _n, _t,
|
|
5216
|
+
[_pCI, _pMI, _n, _t, _cPCr, _lUA, _st],
|
|
4838
5217
|
[0, 0, 0, 0, () => CredentialsProviderConfigurations, 5, 0], 7
|
|
4839
5218
|
];
|
|
4840
5219
|
var UpdatePaymentCredentialProviderRequest$ = [3, n0, _UPCPR,
|
|
@@ -4972,6 +5351,11 @@ var VpcConfig$ = [3, n0, _VC,
|
|
|
4972
5351
|
[_sG, _su, _rSSE],
|
|
4973
5352
|
[64 | 0, 64 | 0, 2], 2
|
|
4974
5353
|
];
|
|
5354
|
+
var VpcConfiguration$ = [3, n0, _VCp,
|
|
5355
|
+
0,
|
|
5356
|
+
[_su, _sG],
|
|
5357
|
+
[64 | 0, 64 | 0], 2
|
|
5358
|
+
];
|
|
4975
5359
|
var WafConfiguration$ = [3, n0, _WC,
|
|
4976
5360
|
0,
|
|
4977
5361
|
[_fM],
|
|
@@ -5010,6 +5394,9 @@ var AgentRuntimes = [1, n0, _ARg,
|
|
|
5010
5394
|
0, [() => AgentRuntime$,
|
|
5011
5395
|
0]
|
|
5012
5396
|
];
|
|
5397
|
+
var AgentRuntimeVersionSummaryList = [1, n0, _ARVSL,
|
|
5398
|
+
0, () => AgentRuntimeVersionSummary$
|
|
5399
|
+
];
|
|
5013
5400
|
var ApiGatewayToolFilters = [1, n0, _AGTFp,
|
|
5014
5401
|
0, () => ApiGatewayToolFilter$
|
|
5015
5402
|
];
|
|
@@ -5019,6 +5406,9 @@ var ApiGatewayToolOverrides = [1, n0, _AGTOp,
|
|
|
5019
5406
|
var ApiKeyCredentialProviders = [1, n0, _AKCP,
|
|
5020
5407
|
0, () => ApiKeyCredentialProviderItem$
|
|
5021
5408
|
];
|
|
5409
|
+
var BatchPutLimitEntries = [1, n0, _BPLEa,
|
|
5410
|
+
0, () => BatchPutLimitEntry$
|
|
5411
|
+
];
|
|
5022
5412
|
var BrowserEnterprisePolicies = [1, n0, _BEPr,
|
|
5023
5413
|
0, () => BrowserEnterprisePolicy$
|
|
5024
5414
|
];
|
|
@@ -5030,6 +5420,9 @@ var BrowserSummaries = [1, n0, _BSr,
|
|
|
5030
5420
|
0, [() => BrowserSummary$,
|
|
5031
5421
|
0]
|
|
5032
5422
|
];
|
|
5423
|
+
var CapacityProviderList = [1, n0, _CPL,
|
|
5424
|
+
0, () => CapacityProviderSummary$
|
|
5425
|
+
];
|
|
5033
5426
|
var CategoricalScaleDefinitions = [1, n0, _CSDa,
|
|
5034
5427
|
0, () => CategoricalScaleDefinition$
|
|
5035
5428
|
];
|
|
@@ -5059,11 +5452,11 @@ var ConnectorParameterOverrides = [1, n0, _CPOo,
|
|
|
5059
5452
|
var ContentConfigurationList = [1, n0, _CCL,
|
|
5060
5453
|
0, () => ContentConfiguration$
|
|
5061
5454
|
];
|
|
5062
|
-
var CredentialProviderConfigurations = [1, n0,
|
|
5455
|
+
var CredentialProviderConfigurations = [1, n0, _CPCre,
|
|
5063
5456
|
0, [() => CredentialProviderConfiguration$,
|
|
5064
5457
|
0]
|
|
5065
5458
|
];
|
|
5066
|
-
var CredentialsProviderConfigurations = [1, n0,
|
|
5459
|
+
var CredentialsProviderConfigurations = [1, n0, _CPCred,
|
|
5067
5460
|
0, () => CredentialsProviderConfiguration$
|
|
5068
5461
|
];
|
|
5069
5462
|
var CustomClaimValidationsType = [1, n0, _CCVTu,
|
|
@@ -5082,6 +5475,9 @@ var DatasetVersionSummaryList = [1, n0, _DVSL,
|
|
|
5082
5475
|
var DeleteMemoryStrategiesList = [1, n0, _DMSL,
|
|
5083
5476
|
0, () => DeleteMemoryStrategyInput$
|
|
5084
5477
|
];
|
|
5478
|
+
var EphemeralBlockDeviceMappingList = [1, n0, _EBDML,
|
|
5479
|
+
0, () => EphemeralBlockDeviceMapping$
|
|
5480
|
+
];
|
|
5085
5481
|
var EvaluatorList = [1, n0, _EL,
|
|
5086
5482
|
0, () => EvaluatorReference$
|
|
5087
5483
|
];
|
|
@@ -5101,6 +5497,9 @@ var Findings = [1, n0, _Fin,
|
|
|
5101
5497
|
var GatewayInterceptorConfigurations = [1, n0, _GICa,
|
|
5102
5498
|
0, () => GatewayInterceptorConfiguration$
|
|
5103
5499
|
];
|
|
5500
|
+
var GatewayRateLimits = [1, n0, _GRL,
|
|
5501
|
+
0, () => GatewayRateLimitDetail$
|
|
5502
|
+
];
|
|
5104
5503
|
var GatewayRules = [1, n0, _GR,
|
|
5105
5504
|
0, [() => GatewayRuleDetail$,
|
|
5106
5505
|
0]
|
|
@@ -5148,6 +5547,12 @@ var InsightList = [1, n0, _IL,
|
|
|
5148
5547
|
var InterceptorPayloadExclusionSelectorList = [1, n0, _IPESL,
|
|
5149
5548
|
0, () => InterceptorPayloadExclusionSelector$
|
|
5150
5549
|
];
|
|
5550
|
+
var LicenseSpecificationList = [1, n0, _LSL,
|
|
5551
|
+
0, () => LicenseSpecification$
|
|
5552
|
+
];
|
|
5553
|
+
var LimitEntries = [1, n0, _LEi,
|
|
5554
|
+
0, () => LimitEntry$
|
|
5555
|
+
];
|
|
5151
5556
|
var MatchPrincipalEntries = [1, n0, _MPE,
|
|
5152
5557
|
0, () => MatchPrincipalEntry$
|
|
5153
5558
|
];
|
|
@@ -5221,6 +5626,9 @@ var PrivateEndpointManagedResources = [1, n0, _PEMR,
|
|
|
5221
5626
|
var PrivateEndpointOverrides = [1, n0, _PEOr,
|
|
5222
5627
|
0, () => PrivateEndpointOverride$
|
|
5223
5628
|
];
|
|
5629
|
+
var RateConfigs = [1, n0, _RCa,
|
|
5630
|
+
0, () => RateConfig$
|
|
5631
|
+
];
|
|
5224
5632
|
var RegistryRecordCredentialProviderConfigurationList = [1, n0, _RRCPCL,
|
|
5225
5633
|
0, () => RegistryRecordCredentialProviderConfiguration$
|
|
5226
5634
|
];
|
|
@@ -5262,6 +5670,9 @@ var TriggerConditionsList = [1, n0, _TCL,
|
|
|
5262
5670
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
5263
5671
|
0, () => ValidationExceptionField$
|
|
5264
5672
|
];
|
|
5673
|
+
var VolumeConfigurationList = [1, n0, _VCL,
|
|
5674
|
+
0, () => VolumeConfiguration$
|
|
5675
|
+
];
|
|
5265
5676
|
var WorkloadIdentityList = [1, n0, _WIL,
|
|
5266
5677
|
0, () => WorkloadIdentityType$
|
|
5267
5678
|
];
|
|
@@ -5340,6 +5751,11 @@ var CodeBasedEvaluatorConfig$ = [4, n0, _CBEC,
|
|
|
5340
5751
|
[_lCa],
|
|
5341
5752
|
[() => LambdaEvaluatorConfig$]
|
|
5342
5753
|
];
|
|
5754
|
+
var ComputeConfiguration$ = [4, n0, _CComp,
|
|
5755
|
+
0,
|
|
5756
|
+
[_eCc],
|
|
5757
|
+
[() => Ec2Configuration$]
|
|
5758
|
+
];
|
|
5343
5759
|
var Condition$ = [4, n0, _Con,
|
|
5344
5760
|
0,
|
|
5345
5761
|
[_mPa, _mPat],
|
|
@@ -5365,7 +5781,7 @@ var CredentialProvider$ = [4, n0, _CPr,
|
|
|
5365
5781
|
[_oCP, _aKCP, _iCP],
|
|
5366
5782
|
[[() => OAuthCredentialProvider$, 0], () => GatewayApiKeyCredentialProvider$, () => IamCredentialProvider$]
|
|
5367
5783
|
];
|
|
5368
|
-
var CredentialsProviderConfiguration$ = [4, n0,
|
|
5784
|
+
var CredentialsProviderConfiguration$ = [4, n0, _CPCrede,
|
|
5369
5785
|
0,
|
|
5370
5786
|
[_cCDP, _sPt],
|
|
5371
5787
|
[() => PaymentCredentialProviderConfiguration$, () => PaymentCredentialProviderConfiguration$]
|
|
@@ -5442,8 +5858,8 @@ var ExtractionConfiguration$ = [4, n0, _ECxt,
|
|
|
5442
5858
|
];
|
|
5443
5859
|
var FilesystemConfiguration$ = [4, n0, _FCi,
|
|
5444
5860
|
0,
|
|
5445
|
-
[_sSe, _sFAP, _eAP],
|
|
5446
|
-
[() => SessionStorageConfiguration$, () => S3FilesAccessPointConfiguration$, () => EfsAccessPointConfiguration$]
|
|
5861
|
+
[_sSe, _sFAP, _eAP, _cPVa],
|
|
5862
|
+
[() => SessionStorageConfiguration$, () => S3FilesAccessPointConfiguration$, () => EfsAccessPointConfiguration$, () => CapacityProviderVolumeConfiguration$]
|
|
5447
5863
|
];
|
|
5448
5864
|
var FilterValue$ = [4, n0, _FV,
|
|
5449
5865
|
0,
|
|
@@ -5477,7 +5893,7 @@ var HarnessGatewayOutboundAuth$ = [4, n0, _HGOA,
|
|
|
5477
5893
|
];
|
|
5478
5894
|
var HarnessMemoryConfiguration$ = [4, n0, _HMC,
|
|
5479
5895
|
0,
|
|
5480
|
-
[_aCMC, _mMC,
|
|
5896
|
+
[_aCMC, _mMC, _dis],
|
|
5481
5897
|
[() => HarnessAgentCoreMemoryConfiguration$, () => HarnessManagedMemoryConfiguration$, () => HarnessDisabledMemoryConfiguration$]
|
|
5482
5898
|
];
|
|
5483
5899
|
var HarnessModelConfiguration$ = [4, n0, _HMCa,
|
|
@@ -5507,12 +5923,12 @@ var HarnessTruncationStrategyConfiguration$ = [4, n0, _HTSC,
|
|
|
5507
5923
|
];
|
|
5508
5924
|
var HttpTargetConfiguration$ = [4, n0, _HTCt,
|
|
5509
5925
|
0,
|
|
5510
|
-
[_aRg, _pas],
|
|
5511
|
-
[[() => RuntimeTargetConfiguration$, 0], [() => PassthroughTargetConfiguration$, 0]]
|
|
5926
|
+
[_aRg, _pas, _conne],
|
|
5927
|
+
[[() => RuntimeTargetConfiguration$, 0], [() => PassthroughTargetConfiguration$, 0], () => HttpConnectorTargetConfiguration$]
|
|
5512
5928
|
];
|
|
5513
5929
|
var InferenceTargetConfiguration$ = [4, n0, _ITC,
|
|
5514
5930
|
0,
|
|
5515
|
-
[
|
|
5931
|
+
[_conne, _prov],
|
|
5516
5932
|
[() => InferenceConnectorTargetConfiguration$, () => InferenceProviderTargetConfiguration$]
|
|
5517
5933
|
];
|
|
5518
5934
|
var InterceptorConfiguration$ = [4, n0, _ICnt,
|
|
@@ -5525,6 +5941,11 @@ var InterceptorPayloadExclusionSelector$ = [4, n0, _IPES,
|
|
|
5525
5941
|
[_fie],
|
|
5526
5942
|
[0]
|
|
5527
5943
|
];
|
|
5944
|
+
var LaunchTemplateSource$ = [4, n0, _LTS,
|
|
5945
|
+
0,
|
|
5946
|
+
[_lP],
|
|
5947
|
+
[() => LaunchParameters$]
|
|
5948
|
+
];
|
|
5528
5949
|
var MatchPrincipalEntry$ = [4, n0, _MPEa,
|
|
5529
5950
|
0,
|
|
5530
5951
|
[_iPa],
|
|
@@ -5532,7 +5953,7 @@ var MatchPrincipalEntry$ = [4, n0, _MPEa,
|
|
|
5532
5953
|
];
|
|
5533
5954
|
var McpTargetConfiguration$ = [4, n0, _MTC,
|
|
5534
5955
|
0,
|
|
5535
|
-
[_oAS, _sMm, _lam, _mSc, _aG,
|
|
5956
|
+
[_oAS, _sMm, _lam, _mSc, _aG, _conne],
|
|
5536
5957
|
[[() => ApiSchemaConfiguration$, 0], [() => ApiSchemaConfiguration$, 0], [() => McpLambdaTargetConfiguration$, 0], [() => McpServerTargetConfiguration$, 0], () => ApiGatewayTargetConfiguration$, () => ConnectorTargetConfiguration$]
|
|
5537
5958
|
];
|
|
5538
5959
|
var McpToolSchemaConfiguration$ = [4, n0, _MTSC,
|
|
@@ -5675,9 +6096,17 @@ var Validation$ = [4, n0, _V,
|
|
|
5675
6096
|
[_sVtr, _sLV, _nV],
|
|
5676
6097
|
[() => StringValidation$, () => StringListValidation$, () => NumberValidation$]
|
|
5677
6098
|
];
|
|
6099
|
+
var VolumeConfiguration$ = [4, n0, _VCo,
|
|
6100
|
+
0,
|
|
6101
|
+
[_eCb],
|
|
6102
|
+
[() => EbsVolumeConfiguration$]
|
|
6103
|
+
];
|
|
5678
6104
|
var AddDatasetExamples$ = [9, n0, _ADEd,
|
|
5679
6105
|
{ [_ht]: ["POST", "/datasets/{datasetId}/examples/add", 202] }, () => AddDatasetExamplesRequest$, () => AddDatasetExamplesResponse$
|
|
5680
6106
|
];
|
|
6107
|
+
var BatchPutGatewayRateLimits$ = [9, n0, _BPGRL,
|
|
6108
|
+
{ [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/rate-limits/batch", 200] }, () => BatchPutGatewayRateLimitsRequest$, () => BatchPutGatewayRateLimitsResponse$
|
|
6109
|
+
];
|
|
5681
6110
|
var CreateAgentRuntime$ = [9, n0, _CAR,
|
|
5682
6111
|
{ [_ht]: ["PUT", "/runtimes/", 202] }, () => CreateAgentRuntimeRequest$, () => CreateAgentRuntimeResponse$
|
|
5683
6112
|
];
|
|
@@ -5693,6 +6122,9 @@ var CreateBrowser$ = [9, n0, _CB,
|
|
|
5693
6122
|
var CreateBrowserProfile$ = [9, n0, _CBP,
|
|
5694
6123
|
{ [_ht]: ["PUT", "/browser-profiles", 200] }, () => CreateBrowserProfileRequest$, () => CreateBrowserProfileResponse$
|
|
5695
6124
|
];
|
|
6125
|
+
var CreateCapacityProvider$ = [9, n0, _CCP,
|
|
6126
|
+
{ [_ht]: ["PUT", "/capacity-providers", 202] }, () => CreateCapacityProviderInput$, () => CreateCapacityProviderOutput$
|
|
6127
|
+
];
|
|
5696
6128
|
var CreateCodeInterpreter$ = [9, n0, _CCIr,
|
|
5697
6129
|
{ [_ht]: ["PUT", "/code-interpreters", 202] }, () => CreateCodeInterpreterRequest$, () => CreateCodeInterpreterResponse$
|
|
5698
6130
|
];
|
|
@@ -5711,6 +6143,9 @@ var CreateEvaluator$ = [9, n0, _CEr,
|
|
|
5711
6143
|
var CreateGateway$ = [9, n0, _CG,
|
|
5712
6144
|
{ [_ht]: ["POST", "/gateways/", 202] }, () => CreateGatewayRequest$, () => CreateGatewayResponse$
|
|
5713
6145
|
];
|
|
6146
|
+
var CreateGatewayRateLimit$ = [9, n0, _CGRL,
|
|
6147
|
+
{ [_ht]: ["POST", "/gateways/{gatewayIdentifier}/rate-limits", 201] }, () => CreateGatewayRateLimitRequest$, () => CreateGatewayRateLimitResponse$
|
|
6148
|
+
];
|
|
5714
6149
|
var CreateGatewayRule$ = [9, n0, _CGRre,
|
|
5715
6150
|
{ [_ht]: ["POST", "/gateways/{gatewayIdentifier}/rules", 202] }, () => CreateGatewayRuleRequest$, () => CreateGatewayRuleResponse$
|
|
5716
6151
|
];
|
|
@@ -5771,6 +6206,9 @@ var DeleteBrowser$ = [9, n0, _DB,
|
|
|
5771
6206
|
var DeleteBrowserProfile$ = [9, n0, _DBP,
|
|
5772
6207
|
{ [_ht]: ["DELETE", "/browser-profiles/{profileId}", 200] }, () => DeleteBrowserProfileRequest$, () => DeleteBrowserProfileResponse$
|
|
5773
6208
|
];
|
|
6209
|
+
var DeleteCapacityProvider$ = [9, n0, _DCP,
|
|
6210
|
+
{ [_ht]: ["DELETE", "/capacity-providers/{capacityProviderId}", 202] }, () => DeleteCapacityProviderInput$, () => DeleteCapacityProviderOutput$
|
|
6211
|
+
];
|
|
5774
6212
|
var DeleteCodeInterpreter$ = [9, n0, _DCI,
|
|
5775
6213
|
{ [_ht]: ["DELETE", "/code-interpreters/{codeInterpreterId}", 202] }, () => DeleteCodeInterpreterRequest$, () => DeleteCodeInterpreterResponse$
|
|
5776
6214
|
];
|
|
@@ -5789,6 +6227,9 @@ var DeleteEvaluator$ = [9, n0, _DE,
|
|
|
5789
6227
|
var DeleteGateway$ = [9, n0, _DG,
|
|
5790
6228
|
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/", 202] }, () => DeleteGatewayRequest$, () => DeleteGatewayResponse$
|
|
5791
6229
|
];
|
|
6230
|
+
var DeleteGatewayRateLimit$ = [9, n0, _DGRL,
|
|
6231
|
+
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/rate-limits/{rateLimitId}", 200] }, () => DeleteGatewayRateLimitRequest$, () => DeleteGatewayRateLimitResponse$
|
|
6232
|
+
];
|
|
5792
6233
|
var DeleteGatewayRule$ = [9, n0, _DGRel,
|
|
5793
6234
|
{ [_ht]: ["DELETE", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => DeleteGatewayRuleRequest$, () => DeleteGatewayRuleResponse$
|
|
5794
6235
|
];
|
|
@@ -5852,6 +6293,9 @@ var GetBrowser$ = [9, n0, _GB,
|
|
|
5852
6293
|
var GetBrowserProfile$ = [9, n0, _GBP,
|
|
5853
6294
|
{ [_ht]: ["GET", "/browser-profiles/{profileId}", 200] }, () => GetBrowserProfileRequest$, () => GetBrowserProfileResponse$
|
|
5854
6295
|
];
|
|
6296
|
+
var GetCapacityProvider$ = [9, n0, _GCP,
|
|
6297
|
+
{ [_ht]: ["GET", "/capacity-providers/{capacityProviderId}", 200] }, () => GetCapacityProviderInput$, () => GetCapacityProviderOutput$
|
|
6298
|
+
];
|
|
5855
6299
|
var GetCodeInterpreter$ = [9, n0, _GCI,
|
|
5856
6300
|
{ [_ht]: ["GET", "/code-interpreters/{codeInterpreterId}", 200] }, () => GetCodeInterpreterRequest$, () => GetCodeInterpreterResponse$
|
|
5857
6301
|
];
|
|
@@ -5870,6 +6314,9 @@ var GetEvaluator$ = [9, n0, _GE,
|
|
|
5870
6314
|
var GetGateway$ = [9, n0, _GG,
|
|
5871
6315
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/", 200] }, () => GetGatewayRequest$, () => GetGatewayResponse$
|
|
5872
6316
|
];
|
|
6317
|
+
var GetGatewayRateLimit$ = [9, n0, _GGRL,
|
|
6318
|
+
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rate-limits/{rateLimitId}", 200] }, () => GetGatewayRateLimitRequest$, () => GetGatewayRateLimitResponse$
|
|
6319
|
+
];
|
|
5873
6320
|
var GetGatewayRule$ = [9, n0, _GGRet,
|
|
5874
6321
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 200] }, () => GetGatewayRuleRequest$, () => GetGatewayRuleResponse$
|
|
5875
6322
|
];
|
|
@@ -5942,6 +6389,9 @@ var ListAgentRuntimes$ = [9, n0, _LAR,
|
|
|
5942
6389
|
var ListAgentRuntimeVersions$ = [9, n0, _LARV,
|
|
5943
6390
|
{ [_ht]: ["POST", "/runtimes/{agentRuntimeId}/versions/", 200] }, () => ListAgentRuntimeVersionsRequest$, () => ListAgentRuntimeVersionsResponse$
|
|
5944
6391
|
];
|
|
6392
|
+
var ListAgentRuntimeVersionsByCapacityProvider$ = [9, n0, _LARVBCP,
|
|
6393
|
+
{ [_ht]: ["POST", "/capacity-providers/{capacityProviderId}/runtime-versions", 200] }, () => ListAgentRuntimeVersionsByCapacityProviderInput$, () => ListAgentRuntimeVersionsByCapacityProviderOutput$
|
|
6394
|
+
];
|
|
5945
6395
|
var ListApiKeyCredentialProviders$ = [9, n0, _LAKCP,
|
|
5946
6396
|
{ [_ht]: ["POST", "/identities/ListApiKeyCredentialProviders", 200] }, () => ListApiKeyCredentialProvidersRequest$, () => ListApiKeyCredentialProvidersResponse$
|
|
5947
6397
|
];
|
|
@@ -5951,6 +6401,9 @@ var ListBrowserProfiles$ = [9, n0, _LBP,
|
|
|
5951
6401
|
var ListBrowsers$ = [9, n0, _LB,
|
|
5952
6402
|
{ [_ht]: ["POST", "/browsers", 200] }, () => ListBrowsersRequest$, () => ListBrowsersResponse$
|
|
5953
6403
|
];
|
|
6404
|
+
var ListCapacityProviders$ = [9, n0, _LCP,
|
|
6405
|
+
{ [_ht]: ["POST", "/capacity-providers", 200] }, () => ListCapacityProvidersInput$, () => ListCapacityProvidersOutput$
|
|
6406
|
+
];
|
|
5954
6407
|
var ListCodeInterpreters$ = [9, n0, _LCI,
|
|
5955
6408
|
{ [_ht]: ["POST", "/code-interpreters", 200] }, () => ListCodeInterpretersRequest$, () => ListCodeInterpretersResponse$
|
|
5956
6409
|
];
|
|
@@ -5969,9 +6422,12 @@ var ListDatasets$ = [9, n0, _LD,
|
|
|
5969
6422
|
var ListDatasetVersions$ = [9, n0, _LDV,
|
|
5970
6423
|
{ [_ht]: ["GET", "/datasets/{datasetId}/versions", 200] }, () => ListDatasetVersionsRequest$, () => ListDatasetVersionsResponse$
|
|
5971
6424
|
];
|
|
5972
|
-
var ListEvaluators$ = [9, n0,
|
|
6425
|
+
var ListEvaluators$ = [9, n0, _LEis,
|
|
5973
6426
|
{ [_ht]: ["POST", "/evaluators", 200] }, () => ListEvaluatorsRequest$, () => ListEvaluatorsResponse$
|
|
5974
6427
|
];
|
|
6428
|
+
var ListGatewayRateLimits$ = [9, n0, _LGRL,
|
|
6429
|
+
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rate-limits", 200] }, () => ListGatewayRateLimitsRequest$, () => ListGatewayRateLimitsResponse$
|
|
6430
|
+
];
|
|
5975
6431
|
var ListGatewayRules$ = [9, n0, _LGRis,
|
|
5976
6432
|
{ [_ht]: ["GET", "/gateways/{gatewayIdentifier}/rules", 200] }, () => ListGatewayRulesRequest$, () => ListGatewayRulesResponse$
|
|
5977
6433
|
];
|
|
@@ -6008,7 +6464,7 @@ var ListPaymentCredentialProviders$ = [9, n0, _LPCP,
|
|
|
6008
6464
|
var ListPaymentManagers$ = [9, n0, _LPM,
|
|
6009
6465
|
{ [_ht]: ["POST", "/payments/managers-list", 200] }, () => ListPaymentManagersRequest$, () => ListPaymentManagersResponse$
|
|
6010
6466
|
];
|
|
6011
|
-
var ListPolicies$ = [9, n0,
|
|
6467
|
+
var ListPolicies$ = [9, n0, _LPi,
|
|
6012
6468
|
{ [_ht]: ["GET", "/policy-engines/{policyEngineId}/policies", 200] }, () => ListPoliciesRequest$, () => ListPoliciesResponse$
|
|
6013
6469
|
];
|
|
6014
6470
|
var ListPolicyEngines$ = [9, n0, _LPE,
|
|
@@ -6071,6 +6527,9 @@ var UpdateAgentRuntimeEndpoint$ = [9, n0, _UARE,
|
|
|
6071
6527
|
var UpdateApiKeyCredentialProvider$ = [9, n0, _UAKCP,
|
|
6072
6528
|
{ [_ht]: ["POST", "/identities/UpdateApiKeyCredentialProvider", 200] }, () => UpdateApiKeyCredentialProviderRequest$, () => UpdateApiKeyCredentialProviderResponse$
|
|
6073
6529
|
];
|
|
6530
|
+
var UpdateCapacityProvider$ = [9, n0, _UCP,
|
|
6531
|
+
{ [_ht]: ["PUT", "/capacity-providers/{capacityProviderId}", 202] }, () => UpdateCapacityProviderInput$, () => UpdateCapacityProviderOutput$
|
|
6532
|
+
];
|
|
6074
6533
|
var UpdateConfigurationBundle$ = [9, n0, _UCB,
|
|
6075
6534
|
{ [_ht]: ["PUT", "/configuration-bundles/{bundleId}", 200] }, () => UpdateConfigurationBundleRequest$, () => UpdateConfigurationBundleResponse$
|
|
6076
6535
|
];
|
|
@@ -6086,6 +6545,9 @@ var UpdateEvaluator$ = [9, n0, _UEp,
|
|
|
6086
6545
|
var UpdateGateway$ = [9, n0, _UG,
|
|
6087
6546
|
{ [_ht]: ["PUT", "/gateways/{gatewayIdentifier}/", 202] }, () => UpdateGatewayRequest$, () => UpdateGatewayResponse$
|
|
6088
6547
|
];
|
|
6548
|
+
var UpdateGatewayRateLimit$ = [9, n0, _UGRL,
|
|
6549
|
+
{ [_ht]: ["PATCH", "/gateways/{gatewayIdentifier}/rate-limits/{rateLimitId}", 200] }, () => UpdateGatewayRateLimitRequest$, () => UpdateGatewayRateLimitResponse$
|
|
6550
|
+
];
|
|
6089
6551
|
var UpdateGatewayRule$ = [9, n0, _UGRpd,
|
|
6090
6552
|
{ [_ht]: ["PATCH", "/gateways/{gatewayIdentifier}/rules/{ruleId}", 202] }, () => UpdateGatewayRuleRequest$, () => UpdateGatewayRuleResponse$
|
|
6091
6553
|
];
|
|
@@ -6288,6 +6750,9 @@ const _mw0 = (Command, cs, config, o) => [];
|
|
|
6288
6750
|
class AddDatasetExamplesCommand extends command(_ep0, _mw0, "AddDatasetExamples", AddDatasetExamples$) {
|
|
6289
6751
|
}
|
|
6290
6752
|
|
|
6753
|
+
class BatchPutGatewayRateLimitsCommand extends command(_ep0, _mw0, "BatchPutGatewayRateLimits", BatchPutGatewayRateLimits$) {
|
|
6754
|
+
}
|
|
6755
|
+
|
|
6291
6756
|
class CreateAgentRuntimeCommand extends command(_ep0, _mw0, "CreateAgentRuntime", CreateAgentRuntime$) {
|
|
6292
6757
|
}
|
|
6293
6758
|
|
|
@@ -6303,6 +6768,9 @@ class CreateBrowserCommand extends command(_ep0, _mw0, "CreateBrowser", CreateBr
|
|
|
6303
6768
|
class CreateBrowserProfileCommand extends command(_ep0, _mw0, "CreateBrowserProfile", CreateBrowserProfile$) {
|
|
6304
6769
|
}
|
|
6305
6770
|
|
|
6771
|
+
class CreateCapacityProviderCommand extends command(_ep0, _mw0, "CreateCapacityProvider", CreateCapacityProvider$) {
|
|
6772
|
+
}
|
|
6773
|
+
|
|
6306
6774
|
class CreateCodeInterpreterCommand extends command(_ep0, _mw0, "CreateCodeInterpreter", CreateCodeInterpreter$) {
|
|
6307
6775
|
}
|
|
6308
6776
|
|
|
@@ -6321,6 +6789,9 @@ class CreateEvaluatorCommand extends command(_ep0, _mw0, "CreateEvaluator", Crea
|
|
|
6321
6789
|
class CreateGatewayCommand extends command(_ep0, _mw0, "CreateGateway", CreateGateway$) {
|
|
6322
6790
|
}
|
|
6323
6791
|
|
|
6792
|
+
class CreateGatewayRateLimitCommand extends command(_ep0, _mw0, "CreateGatewayRateLimit", CreateGatewayRateLimit$) {
|
|
6793
|
+
}
|
|
6794
|
+
|
|
6324
6795
|
class CreateGatewayRuleCommand extends command(_ep0, _mw0, "CreateGatewayRule", CreateGatewayRule$) {
|
|
6325
6796
|
}
|
|
6326
6797
|
|
|
@@ -6381,6 +6852,9 @@ class DeleteBrowserCommand extends command(_ep0, _mw0, "DeleteBrowser", DeleteBr
|
|
|
6381
6852
|
class DeleteBrowserProfileCommand extends command(_ep0, _mw0, "DeleteBrowserProfile", DeleteBrowserProfile$) {
|
|
6382
6853
|
}
|
|
6383
6854
|
|
|
6855
|
+
class DeleteCapacityProviderCommand extends command(_ep0, _mw0, "DeleteCapacityProvider", DeleteCapacityProvider$) {
|
|
6856
|
+
}
|
|
6857
|
+
|
|
6384
6858
|
class DeleteCodeInterpreterCommand extends command(_ep0, _mw0, "DeleteCodeInterpreter", DeleteCodeInterpreter$) {
|
|
6385
6859
|
}
|
|
6386
6860
|
|
|
@@ -6399,6 +6873,9 @@ class DeleteEvaluatorCommand extends command(_ep0, _mw0, "DeleteEvaluator", Dele
|
|
|
6399
6873
|
class DeleteGatewayCommand extends command(_ep0, _mw0, "DeleteGateway", DeleteGateway$) {
|
|
6400
6874
|
}
|
|
6401
6875
|
|
|
6876
|
+
class DeleteGatewayRateLimitCommand extends command(_ep0, _mw0, "DeleteGatewayRateLimit", DeleteGatewayRateLimit$) {
|
|
6877
|
+
}
|
|
6878
|
+
|
|
6402
6879
|
class DeleteGatewayRuleCommand extends command(_ep0, _mw0, "DeleteGatewayRule", DeleteGatewayRule$) {
|
|
6403
6880
|
}
|
|
6404
6881
|
|
|
@@ -6462,6 +6939,9 @@ class GetBrowserCommand extends command(_ep0, _mw0, "GetBrowser", GetBrowser$) {
|
|
|
6462
6939
|
class GetBrowserProfileCommand extends command(_ep0, _mw0, "GetBrowserProfile", GetBrowserProfile$) {
|
|
6463
6940
|
}
|
|
6464
6941
|
|
|
6942
|
+
class GetCapacityProviderCommand extends command(_ep0, _mw0, "GetCapacityProvider", GetCapacityProvider$) {
|
|
6943
|
+
}
|
|
6944
|
+
|
|
6465
6945
|
class GetCodeInterpreterCommand extends command(_ep0, _mw0, "GetCodeInterpreter", GetCodeInterpreter$) {
|
|
6466
6946
|
}
|
|
6467
6947
|
|
|
@@ -6480,6 +6960,9 @@ class GetEvaluatorCommand extends command(_ep0, _mw0, "GetEvaluator", GetEvaluat
|
|
|
6480
6960
|
class GetGatewayCommand extends command(_ep0, _mw0, "GetGateway", GetGateway$) {
|
|
6481
6961
|
}
|
|
6482
6962
|
|
|
6963
|
+
class GetGatewayRateLimitCommand extends command(_ep0, _mw0, "GetGatewayRateLimit", GetGatewayRateLimit$) {
|
|
6964
|
+
}
|
|
6965
|
+
|
|
6483
6966
|
class GetGatewayRuleCommand extends command(_ep0, _mw0, "GetGatewayRule", GetGatewayRule$) {
|
|
6484
6967
|
}
|
|
6485
6968
|
|
|
@@ -6549,6 +7032,9 @@ class ListAgentRuntimeEndpointsCommand extends command(_ep0, _mw0, "ListAgentRun
|
|
|
6549
7032
|
class ListAgentRuntimesCommand extends command(_ep0, _mw0, "ListAgentRuntimes", ListAgentRuntimes$) {
|
|
6550
7033
|
}
|
|
6551
7034
|
|
|
7035
|
+
class ListAgentRuntimeVersionsByCapacityProviderCommand extends command(_ep0, _mw0, "ListAgentRuntimeVersionsByCapacityProvider", ListAgentRuntimeVersionsByCapacityProvider$) {
|
|
7036
|
+
}
|
|
7037
|
+
|
|
6552
7038
|
class ListAgentRuntimeVersionsCommand extends command(_ep0, _mw0, "ListAgentRuntimeVersions", ListAgentRuntimeVersions$) {
|
|
6553
7039
|
}
|
|
6554
7040
|
|
|
@@ -6561,6 +7047,9 @@ class ListBrowserProfilesCommand extends command(_ep0, _mw0, "ListBrowserProfile
|
|
|
6561
7047
|
class ListBrowsersCommand extends command(_ep0, _mw0, "ListBrowsers", ListBrowsers$) {
|
|
6562
7048
|
}
|
|
6563
7049
|
|
|
7050
|
+
class ListCapacityProvidersCommand extends command(_ep0, _mw0, "ListCapacityProviders", ListCapacityProviders$) {
|
|
7051
|
+
}
|
|
7052
|
+
|
|
6564
7053
|
class ListCodeInterpretersCommand extends command(_ep0, _mw0, "ListCodeInterpreters", ListCodeInterpreters$) {
|
|
6565
7054
|
}
|
|
6566
7055
|
|
|
@@ -6582,6 +7071,9 @@ class ListDatasetVersionsCommand extends command(_ep0, _mw0, "ListDatasetVersion
|
|
|
6582
7071
|
class ListEvaluatorsCommand extends command(_ep0, _mw0, "ListEvaluators", ListEvaluators$) {
|
|
6583
7072
|
}
|
|
6584
7073
|
|
|
7074
|
+
class ListGatewayRateLimitsCommand extends command(_ep0, _mw0, "ListGatewayRateLimits", ListGatewayRateLimits$) {
|
|
7075
|
+
}
|
|
7076
|
+
|
|
6585
7077
|
class ListGatewayRulesCommand extends command(_ep0, _mw0, "ListGatewayRules", ListGatewayRules$) {
|
|
6586
7078
|
}
|
|
6587
7079
|
|
|
@@ -6681,6 +7173,9 @@ class UpdateAgentRuntimeEndpointCommand extends command(_ep0, _mw0, "UpdateAgent
|
|
|
6681
7173
|
class UpdateApiKeyCredentialProviderCommand extends command(_ep0, _mw0, "UpdateApiKeyCredentialProvider", UpdateApiKeyCredentialProvider$) {
|
|
6682
7174
|
}
|
|
6683
7175
|
|
|
7176
|
+
class UpdateCapacityProviderCommand extends command(_ep0, _mw0, "UpdateCapacityProvider", UpdateCapacityProvider$) {
|
|
7177
|
+
}
|
|
7178
|
+
|
|
6684
7179
|
class UpdateConfigurationBundleCommand extends command(_ep0, _mw0, "UpdateConfigurationBundle", UpdateConfigurationBundle$) {
|
|
6685
7180
|
}
|
|
6686
7181
|
|
|
@@ -6696,6 +7191,9 @@ class UpdateEvaluatorCommand extends command(_ep0, _mw0, "UpdateEvaluator", Upda
|
|
|
6696
7191
|
class UpdateGatewayCommand extends command(_ep0, _mw0, "UpdateGateway", UpdateGateway$) {
|
|
6697
7192
|
}
|
|
6698
7193
|
|
|
7194
|
+
class UpdateGatewayRateLimitCommand extends command(_ep0, _mw0, "UpdateGatewayRateLimit", UpdateGatewayRateLimit$) {
|
|
7195
|
+
}
|
|
7196
|
+
|
|
6699
7197
|
class UpdateGatewayRuleCommand extends command(_ep0, _mw0, "UpdateGatewayRule", UpdateGatewayRule$) {
|
|
6700
7198
|
}
|
|
6701
7199
|
|
|
@@ -6748,6 +7246,8 @@ const paginateListAgentRuntimeEndpoints = createPaginator(BedrockAgentCoreContro
|
|
|
6748
7246
|
|
|
6749
7247
|
const paginateListAgentRuntimes = createPaginator(BedrockAgentCoreControlClient, ListAgentRuntimesCommand, "nextToken", "nextToken", "maxResults");
|
|
6750
7248
|
|
|
7249
|
+
const paginateListAgentRuntimeVersionsByCapacityProvider = createPaginator(BedrockAgentCoreControlClient, ListAgentRuntimeVersionsByCapacityProviderCommand, "nextToken", "nextToken", "maxResults");
|
|
7250
|
+
|
|
6751
7251
|
const paginateListAgentRuntimeVersions = createPaginator(BedrockAgentCoreControlClient, ListAgentRuntimeVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
6752
7252
|
|
|
6753
7253
|
const paginateListApiKeyCredentialProviders = createPaginator(BedrockAgentCoreControlClient, ListApiKeyCredentialProvidersCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -6756,6 +7256,8 @@ const paginateListBrowserProfiles = createPaginator(BedrockAgentCoreControlClien
|
|
|
6756
7256
|
|
|
6757
7257
|
const paginateListBrowsers = createPaginator(BedrockAgentCoreControlClient, ListBrowsersCommand, "nextToken", "nextToken", "maxResults");
|
|
6758
7258
|
|
|
7259
|
+
const paginateListCapacityProviders = createPaginator(BedrockAgentCoreControlClient, ListCapacityProvidersCommand, "nextToken", "nextToken", "maxResults");
|
|
7260
|
+
|
|
6759
7261
|
const paginateListCodeInterpreters = createPaginator(BedrockAgentCoreControlClient, ListCodeInterpretersCommand, "nextToken", "nextToken", "maxResults");
|
|
6760
7262
|
|
|
6761
7263
|
const paginateListConfigurationBundles = createPaginator(BedrockAgentCoreControlClient, ListConfigurationBundlesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -6770,6 +7272,8 @@ const paginateListDatasetVersions = createPaginator(BedrockAgentCoreControlClien
|
|
|
6770
7272
|
|
|
6771
7273
|
const paginateListEvaluators = createPaginator(BedrockAgentCoreControlClient, ListEvaluatorsCommand, "nextToken", "nextToken", "maxResults");
|
|
6772
7274
|
|
|
7275
|
+
const paginateListGatewayRateLimits = createPaginator(BedrockAgentCoreControlClient, ListGatewayRateLimitsCommand, "nextToken", "nextToken", "maxResults");
|
|
7276
|
+
|
|
6773
7277
|
const paginateListGatewayRules = createPaginator(BedrockAgentCoreControlClient, ListGatewayRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
6774
7278
|
|
|
6775
7279
|
const paginateListGateways = createPaginator(BedrockAgentCoreControlClient, ListGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -7119,17 +7623,20 @@ const waitUntilPolicyGenerationCompleted = async (params, input) => {
|
|
|
7119
7623
|
|
|
7120
7624
|
const commands = {
|
|
7121
7625
|
AddDatasetExamplesCommand,
|
|
7626
|
+
BatchPutGatewayRateLimitsCommand,
|
|
7122
7627
|
CreateAgentRuntimeCommand,
|
|
7123
7628
|
CreateAgentRuntimeEndpointCommand,
|
|
7124
7629
|
CreateApiKeyCredentialProviderCommand,
|
|
7125
7630
|
CreateBrowserCommand,
|
|
7126
7631
|
CreateBrowserProfileCommand,
|
|
7632
|
+
CreateCapacityProviderCommand,
|
|
7127
7633
|
CreateCodeInterpreterCommand,
|
|
7128
7634
|
CreateConfigurationBundleCommand,
|
|
7129
7635
|
CreateDatasetCommand,
|
|
7130
7636
|
CreateDatasetVersionCommand,
|
|
7131
7637
|
CreateEvaluatorCommand,
|
|
7132
7638
|
CreateGatewayCommand,
|
|
7639
|
+
CreateGatewayRateLimitCommand,
|
|
7133
7640
|
CreateGatewayRuleCommand,
|
|
7134
7641
|
CreateGatewayTargetCommand,
|
|
7135
7642
|
CreateHarnessCommand,
|
|
@@ -7150,12 +7657,14 @@ const commands = {
|
|
|
7150
7657
|
DeleteApiKeyCredentialProviderCommand,
|
|
7151
7658
|
DeleteBrowserCommand,
|
|
7152
7659
|
DeleteBrowserProfileCommand,
|
|
7660
|
+
DeleteCapacityProviderCommand,
|
|
7153
7661
|
DeleteCodeInterpreterCommand,
|
|
7154
7662
|
DeleteConfigurationBundleCommand,
|
|
7155
7663
|
DeleteDatasetCommand,
|
|
7156
7664
|
DeleteDatasetExamplesCommand,
|
|
7157
7665
|
DeleteEvaluatorCommand,
|
|
7158
7666
|
DeleteGatewayCommand,
|
|
7667
|
+
DeleteGatewayRateLimitCommand,
|
|
7159
7668
|
DeleteGatewayRuleCommand,
|
|
7160
7669
|
DeleteGatewayTargetCommand,
|
|
7161
7670
|
DeleteHarnessCommand,
|
|
@@ -7177,12 +7686,14 @@ const commands = {
|
|
|
7177
7686
|
GetApiKeyCredentialProviderCommand,
|
|
7178
7687
|
GetBrowserCommand,
|
|
7179
7688
|
GetBrowserProfileCommand,
|
|
7689
|
+
GetCapacityProviderCommand,
|
|
7180
7690
|
GetCodeInterpreterCommand,
|
|
7181
7691
|
GetConfigurationBundleCommand,
|
|
7182
7692
|
GetConfigurationBundleVersionCommand,
|
|
7183
7693
|
GetDatasetCommand,
|
|
7184
7694
|
GetEvaluatorCommand,
|
|
7185
7695
|
GetGatewayCommand,
|
|
7696
|
+
GetGatewayRateLimitCommand,
|
|
7186
7697
|
GetGatewayRuleCommand,
|
|
7187
7698
|
GetGatewayTargetCommand,
|
|
7188
7699
|
GetHarnessCommand,
|
|
@@ -7207,9 +7718,11 @@ const commands = {
|
|
|
7207
7718
|
ListAgentRuntimeEndpointsCommand,
|
|
7208
7719
|
ListAgentRuntimesCommand,
|
|
7209
7720
|
ListAgentRuntimeVersionsCommand,
|
|
7721
|
+
ListAgentRuntimeVersionsByCapacityProviderCommand,
|
|
7210
7722
|
ListApiKeyCredentialProvidersCommand,
|
|
7211
7723
|
ListBrowserProfilesCommand,
|
|
7212
7724
|
ListBrowsersCommand,
|
|
7725
|
+
ListCapacityProvidersCommand,
|
|
7213
7726
|
ListCodeInterpretersCommand,
|
|
7214
7727
|
ListConfigurationBundlesCommand,
|
|
7215
7728
|
ListConfigurationBundleVersionsCommand,
|
|
@@ -7217,6 +7730,7 @@ const commands = {
|
|
|
7217
7730
|
ListDatasetsCommand,
|
|
7218
7731
|
ListDatasetVersionsCommand,
|
|
7219
7732
|
ListEvaluatorsCommand,
|
|
7733
|
+
ListGatewayRateLimitsCommand,
|
|
7220
7734
|
ListGatewayRulesCommand,
|
|
7221
7735
|
ListGatewaysCommand,
|
|
7222
7736
|
ListGatewayTargetsCommand,
|
|
@@ -7250,11 +7764,13 @@ const commands = {
|
|
|
7250
7764
|
UpdateAgentRuntimeCommand,
|
|
7251
7765
|
UpdateAgentRuntimeEndpointCommand,
|
|
7252
7766
|
UpdateApiKeyCredentialProviderCommand,
|
|
7767
|
+
UpdateCapacityProviderCommand,
|
|
7253
7768
|
UpdateConfigurationBundleCommand,
|
|
7254
7769
|
UpdateDatasetCommand,
|
|
7255
7770
|
UpdateDatasetExamplesCommand,
|
|
7256
7771
|
UpdateEvaluatorCommand,
|
|
7257
7772
|
UpdateGatewayCommand,
|
|
7773
|
+
UpdateGatewayRateLimitCommand,
|
|
7258
7774
|
UpdateGatewayRuleCommand,
|
|
7259
7775
|
UpdateGatewayTargetCommand,
|
|
7260
7776
|
UpdateHarnessCommand,
|
|
@@ -7276,9 +7792,11 @@ const paginators = {
|
|
|
7276
7792
|
paginateListAgentRuntimeEndpoints,
|
|
7277
7793
|
paginateListAgentRuntimes,
|
|
7278
7794
|
paginateListAgentRuntimeVersions,
|
|
7795
|
+
paginateListAgentRuntimeVersionsByCapacityProvider,
|
|
7279
7796
|
paginateListApiKeyCredentialProviders,
|
|
7280
7797
|
paginateListBrowserProfiles,
|
|
7281
7798
|
paginateListBrowsers,
|
|
7799
|
+
paginateListCapacityProviders,
|
|
7282
7800
|
paginateListCodeInterpreters,
|
|
7283
7801
|
paginateListConfigurationBundles,
|
|
7284
7802
|
paginateListConfigurationBundleVersions,
|
|
@@ -7286,6 +7804,7 @@ const paginators = {
|
|
|
7286
7804
|
paginateListDatasets,
|
|
7287
7805
|
paginateListDatasetVersions,
|
|
7288
7806
|
paginateListEvaluators,
|
|
7807
|
+
paginateListGatewayRateLimits,
|
|
7289
7808
|
paginateListGatewayRules,
|
|
7290
7809
|
paginateListGateways,
|
|
7291
7810
|
paginateListGatewayTargets,
|
|
@@ -7419,6 +7938,43 @@ const ResourceType = {
|
|
|
7419
7938
|
CUSTOM: "CUSTOM",
|
|
7420
7939
|
SYSTEM: "SYSTEM",
|
|
7421
7940
|
};
|
|
7941
|
+
const CapacityReservationPreference = {
|
|
7942
|
+
CAPACITY_RESERVATIONS_ONLY: "capacity-reservations-only",
|
|
7943
|
+
NONE: "none",
|
|
7944
|
+
OPEN: "open",
|
|
7945
|
+
};
|
|
7946
|
+
const EbsVolumeType = {
|
|
7947
|
+
GP2: "gp2",
|
|
7948
|
+
GP3: "gp3",
|
|
7949
|
+
IO1: "io1",
|
|
7950
|
+
IO2: "io2",
|
|
7951
|
+
SC1: "sc1",
|
|
7952
|
+
ST1: "st1",
|
|
7953
|
+
STANDARD: "standard",
|
|
7954
|
+
};
|
|
7955
|
+
const Monitoring = {
|
|
7956
|
+
BASIC: "BASIC",
|
|
7957
|
+
DETAILED: "DETAILED",
|
|
7958
|
+
};
|
|
7959
|
+
const OperatingSystem = {
|
|
7960
|
+
LINUX_ARM64: "LINUX_ARM64",
|
|
7961
|
+
LINUX_X86_64: "LINUX_X86_64",
|
|
7962
|
+
};
|
|
7963
|
+
const CapacityProviderStatus = {
|
|
7964
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
7965
|
+
CREATING: "CREATING",
|
|
7966
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
7967
|
+
DELETING: "DELETING",
|
|
7968
|
+
READY: "READY",
|
|
7969
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
7970
|
+
UPDATING: "UPDATING",
|
|
7971
|
+
};
|
|
7972
|
+
const CapacityProviderStatusCode = {
|
|
7973
|
+
INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION",
|
|
7974
|
+
QUOTA_EXCEEDED: "QUOTA_EXCEEDED",
|
|
7975
|
+
THROTTLED: "THROTTLED",
|
|
7976
|
+
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
7977
|
+
};
|
|
7422
7978
|
const CodeInterpreterNetworkMode = {
|
|
7423
7979
|
PUBLIC: "PUBLIC",
|
|
7424
7980
|
SANDBOX: "SANDBOX",
|
|
@@ -7471,6 +8027,16 @@ const EvaluatorType = {
|
|
|
7471
8027
|
CODE: "CustomCode",
|
|
7472
8028
|
CUSTOM: "Custom",
|
|
7473
8029
|
};
|
|
8030
|
+
const Period = {
|
|
8031
|
+
MINUTE: "minute",
|
|
8032
|
+
SECOND: "second",
|
|
8033
|
+
};
|
|
8034
|
+
const GatewayRateLimitStatus = {
|
|
8035
|
+
ACTIVE: "ACTIVE",
|
|
8036
|
+
CREATING: "CREATING",
|
|
8037
|
+
DELETING: "DELETING",
|
|
8038
|
+
UPDATING: "UPDATING",
|
|
8039
|
+
};
|
|
7474
8040
|
const AuthorizerType = {
|
|
7475
8041
|
AUTHENTICATE_ONLY: "AUTHENTICATE_ONLY",
|
|
7476
8042
|
AWS_IAM: "AWS_IAM",
|
|
@@ -7583,6 +8149,7 @@ const TargetType = {
|
|
|
7583
8149
|
AGENTCORE_RUNTIME: "AGENTCORE_RUNTIME",
|
|
7584
8150
|
API_GATEWAY: "API_GATEWAY",
|
|
7585
8151
|
CONNECTOR: "CONNECTOR",
|
|
8152
|
+
HTTP_CONNECTOR: "HTTP_CONNECTOR",
|
|
7586
8153
|
LAMBDA: "LAMBDA",
|
|
7587
8154
|
MCP_SERVER: "MCP_SERVER",
|
|
7588
8155
|
OPEN_API_SCHEMA: "OPEN_API_SCHEMA",
|
|
@@ -7893,6 +8460,7 @@ exports.AgentRuntimeArtifact$ = AgentRuntimeArtifact$;
|
|
|
7893
8460
|
exports.AgentRuntimeEndpoint$ = AgentRuntimeEndpoint$;
|
|
7894
8461
|
exports.AgentRuntimeEndpointStatus = AgentRuntimeEndpointStatus;
|
|
7895
8462
|
exports.AgentRuntimeStatus = AgentRuntimeStatus;
|
|
8463
|
+
exports.AgentRuntimeVersionSummary$ = AgentRuntimeVersionSummary$;
|
|
7896
8464
|
exports.AgentSkillsDescriptor$ = AgentSkillsDescriptor$;
|
|
7897
8465
|
exports.AllowedWorkloadConfiguration$ = AllowedWorkloadConfiguration$;
|
|
7898
8466
|
exports.ApiGatewayTargetConfiguration$ = ApiGatewayTargetConfiguration$;
|
|
@@ -7909,6 +8477,11 @@ exports.AuthorizationData$ = AuthorizationData$;
|
|
|
7909
8477
|
exports.AuthorizerConfiguration$ = AuthorizerConfiguration$;
|
|
7910
8478
|
exports.AuthorizerType = AuthorizerType;
|
|
7911
8479
|
exports.AuthorizingClaimMatchValueType$ = AuthorizingClaimMatchValueType$;
|
|
8480
|
+
exports.BatchPutGatewayRateLimits$ = BatchPutGatewayRateLimits$;
|
|
8481
|
+
exports.BatchPutGatewayRateLimitsCommand = BatchPutGatewayRateLimitsCommand;
|
|
8482
|
+
exports.BatchPutGatewayRateLimitsRequest$ = BatchPutGatewayRateLimitsRequest$;
|
|
8483
|
+
exports.BatchPutGatewayRateLimitsResponse$ = BatchPutGatewayRateLimitsResponse$;
|
|
8484
|
+
exports.BatchPutLimitEntry$ = BatchPutLimitEntry$;
|
|
7912
8485
|
exports.BedrockAgentCoreControl = BedrockAgentCoreControl;
|
|
7913
8486
|
exports.BedrockAgentCoreControlClient = BedrockAgentCoreControlClient;
|
|
7914
8487
|
exports.BedrockAgentCoreControlServiceException = BedrockAgentCoreControlServiceException;
|
|
@@ -7924,6 +8497,14 @@ exports.BrowserSigningConfigInput$ = BrowserSigningConfigInput$;
|
|
|
7924
8497
|
exports.BrowserSigningConfigOutput$ = BrowserSigningConfigOutput$;
|
|
7925
8498
|
exports.BrowserStatus = BrowserStatus;
|
|
7926
8499
|
exports.BrowserSummary$ = BrowserSummary$;
|
|
8500
|
+
exports.CapacityProviderConfiguration$ = CapacityProviderConfiguration$;
|
|
8501
|
+
exports.CapacityProviderStatus = CapacityProviderStatus;
|
|
8502
|
+
exports.CapacityProviderStatusCode = CapacityProviderStatusCode;
|
|
8503
|
+
exports.CapacityProviderSummary$ = CapacityProviderSummary$;
|
|
8504
|
+
exports.CapacityProviderVolumeConfiguration$ = CapacityProviderVolumeConfiguration$;
|
|
8505
|
+
exports.CapacityReservationPreference = CapacityReservationPreference;
|
|
8506
|
+
exports.CapacityReservationSpecification$ = CapacityReservationSpecification$;
|
|
8507
|
+
exports.CapacityReservationTarget$ = CapacityReservationTarget$;
|
|
7927
8508
|
exports.CategoricalScaleDefinition$ = CategoricalScaleDefinition$;
|
|
7928
8509
|
exports.CedarPolicy$ = CedarPolicy$;
|
|
7929
8510
|
exports.Certificate$ = Certificate$;
|
|
@@ -7945,6 +8526,7 @@ exports.CodeInterpreterSummary$ = CodeInterpreterSummary$;
|
|
|
7945
8526
|
exports.CoinbaseCdpConfigurationInput$ = CoinbaseCdpConfigurationInput$;
|
|
7946
8527
|
exports.CoinbaseCdpConfigurationOutput$ = CoinbaseCdpConfigurationOutput$;
|
|
7947
8528
|
exports.ComponentConfiguration$ = ComponentConfiguration$;
|
|
8529
|
+
exports.ComputeConfiguration$ = ComputeConfiguration$;
|
|
7948
8530
|
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
7949
8531
|
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
7950
8532
|
exports.Condition$ = Condition$;
|
|
@@ -7985,6 +8567,10 @@ exports.CreateBrowserProfileRequest$ = CreateBrowserProfileRequest$;
|
|
|
7985
8567
|
exports.CreateBrowserProfileResponse$ = CreateBrowserProfileResponse$;
|
|
7986
8568
|
exports.CreateBrowserRequest$ = CreateBrowserRequest$;
|
|
7987
8569
|
exports.CreateBrowserResponse$ = CreateBrowserResponse$;
|
|
8570
|
+
exports.CreateCapacityProvider$ = CreateCapacityProvider$;
|
|
8571
|
+
exports.CreateCapacityProviderCommand = CreateCapacityProviderCommand;
|
|
8572
|
+
exports.CreateCapacityProviderInput$ = CreateCapacityProviderInput$;
|
|
8573
|
+
exports.CreateCapacityProviderOutput$ = CreateCapacityProviderOutput$;
|
|
7988
8574
|
exports.CreateCodeInterpreter$ = CreateCodeInterpreter$;
|
|
7989
8575
|
exports.CreateCodeInterpreterCommand = CreateCodeInterpreterCommand;
|
|
7990
8576
|
exports.CreateCodeInterpreterRequest$ = CreateCodeInterpreterRequest$;
|
|
@@ -8007,6 +8593,10 @@ exports.CreateEvaluatorRequest$ = CreateEvaluatorRequest$;
|
|
|
8007
8593
|
exports.CreateEvaluatorResponse$ = CreateEvaluatorResponse$;
|
|
8008
8594
|
exports.CreateGateway$ = CreateGateway$;
|
|
8009
8595
|
exports.CreateGatewayCommand = CreateGatewayCommand;
|
|
8596
|
+
exports.CreateGatewayRateLimit$ = CreateGatewayRateLimit$;
|
|
8597
|
+
exports.CreateGatewayRateLimitCommand = CreateGatewayRateLimitCommand;
|
|
8598
|
+
exports.CreateGatewayRateLimitRequest$ = CreateGatewayRateLimitRequest$;
|
|
8599
|
+
exports.CreateGatewayRateLimitResponse$ = CreateGatewayRateLimitResponse$;
|
|
8010
8600
|
exports.CreateGatewayRequest$ = CreateGatewayRequest$;
|
|
8011
8601
|
exports.CreateGatewayResponse$ = CreateGatewayResponse$;
|
|
8012
8602
|
exports.CreateGatewayRule$ = CreateGatewayRule$;
|
|
@@ -8116,6 +8706,10 @@ exports.DeleteBrowserProfileRequest$ = DeleteBrowserProfileRequest$;
|
|
|
8116
8706
|
exports.DeleteBrowserProfileResponse$ = DeleteBrowserProfileResponse$;
|
|
8117
8707
|
exports.DeleteBrowserRequest$ = DeleteBrowserRequest$;
|
|
8118
8708
|
exports.DeleteBrowserResponse$ = DeleteBrowserResponse$;
|
|
8709
|
+
exports.DeleteCapacityProvider$ = DeleteCapacityProvider$;
|
|
8710
|
+
exports.DeleteCapacityProviderCommand = DeleteCapacityProviderCommand;
|
|
8711
|
+
exports.DeleteCapacityProviderInput$ = DeleteCapacityProviderInput$;
|
|
8712
|
+
exports.DeleteCapacityProviderOutput$ = DeleteCapacityProviderOutput$;
|
|
8119
8713
|
exports.DeleteCodeInterpreter$ = DeleteCodeInterpreter$;
|
|
8120
8714
|
exports.DeleteCodeInterpreterCommand = DeleteCodeInterpreterCommand;
|
|
8121
8715
|
exports.DeleteCodeInterpreterRequest$ = DeleteCodeInterpreterRequest$;
|
|
@@ -8138,6 +8732,10 @@ exports.DeleteEvaluatorRequest$ = DeleteEvaluatorRequest$;
|
|
|
8138
8732
|
exports.DeleteEvaluatorResponse$ = DeleteEvaluatorResponse$;
|
|
8139
8733
|
exports.DeleteGateway$ = DeleteGateway$;
|
|
8140
8734
|
exports.DeleteGatewayCommand = DeleteGatewayCommand;
|
|
8735
|
+
exports.DeleteGatewayRateLimit$ = DeleteGatewayRateLimit$;
|
|
8736
|
+
exports.DeleteGatewayRateLimitCommand = DeleteGatewayRateLimitCommand;
|
|
8737
|
+
exports.DeleteGatewayRateLimitRequest$ = DeleteGatewayRateLimitRequest$;
|
|
8738
|
+
exports.DeleteGatewayRateLimitResponse$ = DeleteGatewayRateLimitResponse$;
|
|
8141
8739
|
exports.DeleteGatewayRequest$ = DeleteGatewayRequest$;
|
|
8142
8740
|
exports.DeleteGatewayResponse$ = DeleteGatewayResponse$;
|
|
8143
8741
|
exports.DeleteGatewayRule$ = DeleteGatewayRule$;
|
|
@@ -8208,12 +8806,17 @@ exports.DeleteWorkloadIdentityResponse$ = DeleteWorkloadIdentityResponse$;
|
|
|
8208
8806
|
exports.DescriptorType = DescriptorType;
|
|
8209
8807
|
exports.Descriptors$ = Descriptors$;
|
|
8210
8808
|
exports.DraftStatus = DraftStatus;
|
|
8809
|
+
exports.EbsVolumeConfiguration$ = EbsVolumeConfiguration$;
|
|
8810
|
+
exports.EbsVolumeType = EbsVolumeType;
|
|
8811
|
+
exports.Ec2Configuration$ = Ec2Configuration$;
|
|
8211
8812
|
exports.EfsAccessPointConfiguration$ = EfsAccessPointConfiguration$;
|
|
8212
8813
|
exports.EfsConfiguration$ = EfsConfiguration$;
|
|
8213
8814
|
exports.EncryptionFailure = EncryptionFailure;
|
|
8214
8815
|
exports.EncryptionFailure$ = EncryptionFailure$;
|
|
8215
8816
|
exports.EndpointIpAddressType = EndpointIpAddressType;
|
|
8216
8817
|
exports.EnforcementMode = EnforcementMode;
|
|
8818
|
+
exports.EphemeralBlockDeviceMapping$ = EphemeralBlockDeviceMapping$;
|
|
8819
|
+
exports.EphemeralEBSVolumeConfiguration$ = EphemeralEBSVolumeConfiguration$;
|
|
8217
8820
|
exports.EpisodicConsolidationOverride$ = EpisodicConsolidationOverride$;
|
|
8218
8821
|
exports.EpisodicExtractionOverride$ = EpisodicExtractionOverride$;
|
|
8219
8822
|
exports.EpisodicMemoryStrategyInput$ = EpisodicMemoryStrategyInput$;
|
|
@@ -8249,6 +8852,8 @@ exports.GatewayPolicyEngineConfiguration$ = GatewayPolicyEngineConfiguration$;
|
|
|
8249
8852
|
exports.GatewayPolicyEngineMode = GatewayPolicyEngineMode;
|
|
8250
8853
|
exports.GatewayProtocolConfiguration$ = GatewayProtocolConfiguration$;
|
|
8251
8854
|
exports.GatewayProtocolType = GatewayProtocolType;
|
|
8855
|
+
exports.GatewayRateLimitDetail$ = GatewayRateLimitDetail$;
|
|
8856
|
+
exports.GatewayRateLimitStatus = GatewayRateLimitStatus;
|
|
8252
8857
|
exports.GatewayRuleDetail$ = GatewayRuleDetail$;
|
|
8253
8858
|
exports.GatewayRuleStatus = GatewayRuleStatus;
|
|
8254
8859
|
exports.GatewayStatus = GatewayStatus;
|
|
@@ -8274,6 +8879,10 @@ exports.GetBrowserProfileRequest$ = GetBrowserProfileRequest$;
|
|
|
8274
8879
|
exports.GetBrowserProfileResponse$ = GetBrowserProfileResponse$;
|
|
8275
8880
|
exports.GetBrowserRequest$ = GetBrowserRequest$;
|
|
8276
8881
|
exports.GetBrowserResponse$ = GetBrowserResponse$;
|
|
8882
|
+
exports.GetCapacityProvider$ = GetCapacityProvider$;
|
|
8883
|
+
exports.GetCapacityProviderCommand = GetCapacityProviderCommand;
|
|
8884
|
+
exports.GetCapacityProviderInput$ = GetCapacityProviderInput$;
|
|
8885
|
+
exports.GetCapacityProviderOutput$ = GetCapacityProviderOutput$;
|
|
8277
8886
|
exports.GetCodeInterpreter$ = GetCodeInterpreter$;
|
|
8278
8887
|
exports.GetCodeInterpreterCommand = GetCodeInterpreterCommand;
|
|
8279
8888
|
exports.GetCodeInterpreterRequest$ = GetCodeInterpreterRequest$;
|
|
@@ -8296,6 +8905,10 @@ exports.GetEvaluatorRequest$ = GetEvaluatorRequest$;
|
|
|
8296
8905
|
exports.GetEvaluatorResponse$ = GetEvaluatorResponse$;
|
|
8297
8906
|
exports.GetGateway$ = GetGateway$;
|
|
8298
8907
|
exports.GetGatewayCommand = GetGatewayCommand;
|
|
8908
|
+
exports.GetGatewayRateLimit$ = GetGatewayRateLimit$;
|
|
8909
|
+
exports.GetGatewayRateLimitCommand = GetGatewayRateLimitCommand;
|
|
8910
|
+
exports.GetGatewayRateLimitRequest$ = GetGatewayRateLimitRequest$;
|
|
8911
|
+
exports.GetGatewayRateLimitResponse$ = GetGatewayRateLimitResponse$;
|
|
8299
8912
|
exports.GetGatewayRequest$ = GetGatewayRequest$;
|
|
8300
8913
|
exports.GetGatewayResponse$ = GetGatewayResponse$;
|
|
8301
8914
|
exports.GetGatewayRule$ = GetGatewayRule$;
|
|
@@ -8432,6 +9045,8 @@ exports.HarnessTruncationStrategyConfiguration$ = HarnessTruncationStrategyConfi
|
|
|
8432
9045
|
exports.HarnessVersionSummary$ = HarnessVersionSummary$;
|
|
8433
9046
|
exports.HostingEnvironment$ = HostingEnvironment$;
|
|
8434
9047
|
exports.HttpApiSchemaConfiguration$ = HttpApiSchemaConfiguration$;
|
|
9048
|
+
exports.HttpConnectorSource$ = HttpConnectorSource$;
|
|
9049
|
+
exports.HttpConnectorTargetConfiguration$ = HttpConnectorTargetConfiguration$;
|
|
8435
9050
|
exports.HttpTargetConfiguration$ = HttpTargetConfiguration$;
|
|
8436
9051
|
exports.IamCredentialProvider$ = IamCredentialProvider$;
|
|
8437
9052
|
exports.IamPrincipal$ = IamPrincipal$;
|
|
@@ -8448,6 +9063,8 @@ exports.InferenceProviderTargetConfiguration$ = InferenceProviderTargetConfigura
|
|
|
8448
9063
|
exports.InferenceTargetConfiguration$ = InferenceTargetConfiguration$;
|
|
8449
9064
|
exports.InlineExamplesSource$ = InlineExamplesSource$;
|
|
8450
9065
|
exports.Insight$ = Insight$;
|
|
9066
|
+
exports.InstanceLifecycleConfiguration$ = InstanceLifecycleConfiguration$;
|
|
9067
|
+
exports.InstanceRequirements$ = InstanceRequirements$;
|
|
8451
9068
|
exports.InterceptorConfiguration$ = InterceptorConfiguration$;
|
|
8452
9069
|
exports.InterceptorInputConfiguration$ = InterceptorInputConfiguration$;
|
|
8453
9070
|
exports.InterceptorPayloadExclusion = InterceptorPayloadExclusion;
|
|
@@ -8464,7 +9081,11 @@ exports.KmsKeySourceType$ = KmsKeySourceType$;
|
|
|
8464
9081
|
exports.LambdaEvaluatorConfig$ = LambdaEvaluatorConfig$;
|
|
8465
9082
|
exports.LambdaInterceptorConfiguration$ = LambdaInterceptorConfiguration$;
|
|
8466
9083
|
exports.LambdaTransformConfiguration$ = LambdaTransformConfiguration$;
|
|
9084
|
+
exports.LaunchParameters$ = LaunchParameters$;
|
|
9085
|
+
exports.LaunchTemplateSource$ = LaunchTemplateSource$;
|
|
9086
|
+
exports.LicenseSpecification$ = LicenseSpecification$;
|
|
8467
9087
|
exports.LifecycleConfiguration$ = LifecycleConfiguration$;
|
|
9088
|
+
exports.LimitEntry$ = LimitEntry$;
|
|
8468
9089
|
exports.LinkedinOauth2ProviderConfigInput$ = LinkedinOauth2ProviderConfigInput$;
|
|
8469
9090
|
exports.LinkedinOauth2ProviderConfigOutput$ = LinkedinOauth2ProviderConfigOutput$;
|
|
8470
9091
|
exports.ListAgentRuntimeEndpoints$ = ListAgentRuntimeEndpoints$;
|
|
@@ -8472,6 +9093,10 @@ exports.ListAgentRuntimeEndpointsCommand = ListAgentRuntimeEndpointsCommand;
|
|
|
8472
9093
|
exports.ListAgentRuntimeEndpointsRequest$ = ListAgentRuntimeEndpointsRequest$;
|
|
8473
9094
|
exports.ListAgentRuntimeEndpointsResponse$ = ListAgentRuntimeEndpointsResponse$;
|
|
8474
9095
|
exports.ListAgentRuntimeVersions$ = ListAgentRuntimeVersions$;
|
|
9096
|
+
exports.ListAgentRuntimeVersionsByCapacityProvider$ = ListAgentRuntimeVersionsByCapacityProvider$;
|
|
9097
|
+
exports.ListAgentRuntimeVersionsByCapacityProviderCommand = ListAgentRuntimeVersionsByCapacityProviderCommand;
|
|
9098
|
+
exports.ListAgentRuntimeVersionsByCapacityProviderInput$ = ListAgentRuntimeVersionsByCapacityProviderInput$;
|
|
9099
|
+
exports.ListAgentRuntimeVersionsByCapacityProviderOutput$ = ListAgentRuntimeVersionsByCapacityProviderOutput$;
|
|
8475
9100
|
exports.ListAgentRuntimeVersionsCommand = ListAgentRuntimeVersionsCommand;
|
|
8476
9101
|
exports.ListAgentRuntimeVersionsRequest$ = ListAgentRuntimeVersionsRequest$;
|
|
8477
9102
|
exports.ListAgentRuntimeVersionsResponse$ = ListAgentRuntimeVersionsResponse$;
|
|
@@ -8491,6 +9116,10 @@ exports.ListBrowsers$ = ListBrowsers$;
|
|
|
8491
9116
|
exports.ListBrowsersCommand = ListBrowsersCommand;
|
|
8492
9117
|
exports.ListBrowsersRequest$ = ListBrowsersRequest$;
|
|
8493
9118
|
exports.ListBrowsersResponse$ = ListBrowsersResponse$;
|
|
9119
|
+
exports.ListCapacityProviders$ = ListCapacityProviders$;
|
|
9120
|
+
exports.ListCapacityProvidersCommand = ListCapacityProvidersCommand;
|
|
9121
|
+
exports.ListCapacityProvidersInput$ = ListCapacityProvidersInput$;
|
|
9122
|
+
exports.ListCapacityProvidersOutput$ = ListCapacityProvidersOutput$;
|
|
8494
9123
|
exports.ListCodeInterpreters$ = ListCodeInterpreters$;
|
|
8495
9124
|
exports.ListCodeInterpretersCommand = ListCodeInterpretersCommand;
|
|
8496
9125
|
exports.ListCodeInterpretersRequest$ = ListCodeInterpretersRequest$;
|
|
@@ -8519,6 +9148,10 @@ exports.ListEvaluators$ = ListEvaluators$;
|
|
|
8519
9148
|
exports.ListEvaluatorsCommand = ListEvaluatorsCommand;
|
|
8520
9149
|
exports.ListEvaluatorsRequest$ = ListEvaluatorsRequest$;
|
|
8521
9150
|
exports.ListEvaluatorsResponse$ = ListEvaluatorsResponse$;
|
|
9151
|
+
exports.ListGatewayRateLimits$ = ListGatewayRateLimits$;
|
|
9152
|
+
exports.ListGatewayRateLimitsCommand = ListGatewayRateLimitsCommand;
|
|
9153
|
+
exports.ListGatewayRateLimitsRequest$ = ListGatewayRateLimitsRequest$;
|
|
9154
|
+
exports.ListGatewayRateLimitsResponse$ = ListGatewayRateLimitsResponse$;
|
|
8522
9155
|
exports.ListGatewayRules$ = ListGatewayRules$;
|
|
8523
9156
|
exports.ListGatewayRulesCommand = ListGatewayRulesCommand;
|
|
8524
9157
|
exports.ListGatewayRulesRequest$ = ListGatewayRulesRequest$;
|
|
@@ -8651,6 +9284,7 @@ exports.ModifyMemoryStrategyInput$ = ModifyMemoryStrategyInput$;
|
|
|
8651
9284
|
exports.ModifyReflectionConfiguration$ = ModifyReflectionConfiguration$;
|
|
8652
9285
|
exports.ModifySelfManagedConfiguration$ = ModifySelfManagedConfiguration$;
|
|
8653
9286
|
exports.ModifyStrategyConfiguration$ = ModifyStrategyConfiguration$;
|
|
9287
|
+
exports.Monitoring = Monitoring;
|
|
8654
9288
|
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
8655
9289
|
exports.NetworkMode = NetworkMode;
|
|
8656
9290
|
exports.NumberValidation$ = NumberValidation$;
|
|
@@ -8669,6 +9303,7 @@ exports.OnlineEvaluationConfigStatus = OnlineEvaluationConfigStatus;
|
|
|
8669
9303
|
exports.OnlineEvaluationConfigSummary$ = OnlineEvaluationConfigSummary$;
|
|
8670
9304
|
exports.OnlineEvaluationExecutionStatus = OnlineEvaluationExecutionStatus;
|
|
8671
9305
|
exports.OpenResponsesEvaluatorModelConfig$ = OpenResponsesEvaluatorModelConfig$;
|
|
9306
|
+
exports.OperatingSystem = OperatingSystem;
|
|
8672
9307
|
exports.OutputConfig$ = OutputConfig$;
|
|
8673
9308
|
exports.OverrideType = OverrideType;
|
|
8674
9309
|
exports.PassthroughProtocolType = PassthroughProtocolType;
|
|
@@ -8684,6 +9319,8 @@ exports.PaymentManagerSummary$ = PaymentManagerSummary$;
|
|
|
8684
9319
|
exports.PaymentProviderConfigurationInput$ = PaymentProviderConfigurationInput$;
|
|
8685
9320
|
exports.PaymentProviderConfigurationOutput$ = PaymentProviderConfigurationOutput$;
|
|
8686
9321
|
exports.PaymentsAuthorizerType = PaymentsAuthorizerType;
|
|
9322
|
+
exports.Period = Period;
|
|
9323
|
+
exports.PermissionsConfiguration$ = PermissionsConfiguration$;
|
|
8687
9324
|
exports.Policy$ = Policy$;
|
|
8688
9325
|
exports.PolicyDefinition$ = PolicyDefinition$;
|
|
8689
9326
|
exports.PolicyEngine$ = PolicyEngine$;
|
|
@@ -8709,6 +9346,7 @@ exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
|
8709
9346
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
8710
9347
|
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
8711
9348
|
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
9349
|
+
exports.RateConfig$ = RateConfig$;
|
|
8712
9350
|
exports.RatingScale$ = RatingScale$;
|
|
8713
9351
|
exports.ReasoningConfiguration$ = ReasoningConfiguration$;
|
|
8714
9352
|
exports.RecordingConfig$ = RecordingConfig$;
|
|
@@ -8733,6 +9371,9 @@ exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
|
8733
9371
|
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
8734
9372
|
exports.ResourceType = ResourceType;
|
|
8735
9373
|
exports.RestApiMethod = RestApiMethod;
|
|
9374
|
+
exports.RetryableConflictException = RetryableConflictException;
|
|
9375
|
+
exports.RetryableConflictException$ = RetryableConflictException$;
|
|
9376
|
+
exports.RootVolumeConfiguration$ = RootVolumeConfiguration$;
|
|
8736
9377
|
exports.RouteToTargetAction$ = RouteToTargetAction$;
|
|
8737
9378
|
exports.Rule$ = Rule$;
|
|
8738
9379
|
exports.RuntimeMetadataConfiguration$ = RuntimeMetadataConfiguration$;
|
|
@@ -8854,6 +9495,10 @@ exports.UpdateApiKeyCredentialProvider$ = UpdateApiKeyCredentialProvider$;
|
|
|
8854
9495
|
exports.UpdateApiKeyCredentialProviderCommand = UpdateApiKeyCredentialProviderCommand;
|
|
8855
9496
|
exports.UpdateApiKeyCredentialProviderRequest$ = UpdateApiKeyCredentialProviderRequest$;
|
|
8856
9497
|
exports.UpdateApiKeyCredentialProviderResponse$ = UpdateApiKeyCredentialProviderResponse$;
|
|
9498
|
+
exports.UpdateCapacityProvider$ = UpdateCapacityProvider$;
|
|
9499
|
+
exports.UpdateCapacityProviderCommand = UpdateCapacityProviderCommand;
|
|
9500
|
+
exports.UpdateCapacityProviderInput$ = UpdateCapacityProviderInput$;
|
|
9501
|
+
exports.UpdateCapacityProviderOutput$ = UpdateCapacityProviderOutput$;
|
|
8857
9502
|
exports.UpdateConfigurationBundle$ = UpdateConfigurationBundle$;
|
|
8858
9503
|
exports.UpdateConfigurationBundleCommand = UpdateConfigurationBundleCommand;
|
|
8859
9504
|
exports.UpdateConfigurationBundleRequest$ = UpdateConfigurationBundleRequest$;
|
|
@@ -8872,6 +9517,10 @@ exports.UpdateEvaluatorRequest$ = UpdateEvaluatorRequest$;
|
|
|
8872
9517
|
exports.UpdateEvaluatorResponse$ = UpdateEvaluatorResponse$;
|
|
8873
9518
|
exports.UpdateGateway$ = UpdateGateway$;
|
|
8874
9519
|
exports.UpdateGatewayCommand = UpdateGatewayCommand;
|
|
9520
|
+
exports.UpdateGatewayRateLimit$ = UpdateGatewayRateLimit$;
|
|
9521
|
+
exports.UpdateGatewayRateLimitCommand = UpdateGatewayRateLimitCommand;
|
|
9522
|
+
exports.UpdateGatewayRateLimitRequest$ = UpdateGatewayRateLimitRequest$;
|
|
9523
|
+
exports.UpdateGatewayRateLimitResponse$ = UpdateGatewayRateLimitResponse$;
|
|
8875
9524
|
exports.UpdateGatewayRequest$ = UpdateGatewayRequest$;
|
|
8876
9525
|
exports.UpdateGatewayResponse$ = UpdateGatewayResponse$;
|
|
8877
9526
|
exports.UpdateGatewayRule$ = UpdateGatewayRule$;
|
|
@@ -8971,7 +9620,9 @@ exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
|
8971
9620
|
exports.VersionCreatedBySource$ = VersionCreatedBySource$;
|
|
8972
9621
|
exports.VersionFilter$ = VersionFilter$;
|
|
8973
9622
|
exports.VersionLineageMetadata$ = VersionLineageMetadata$;
|
|
9623
|
+
exports.VolumeConfiguration$ = VolumeConfiguration$;
|
|
8974
9624
|
exports.VpcConfig$ = VpcConfig$;
|
|
9625
|
+
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
8975
9626
|
exports.WafConfiguration$ = WafConfiguration$;
|
|
8976
9627
|
exports.WafFailureMode = WafFailureMode;
|
|
8977
9628
|
exports.WeightedOverride$ = WeightedOverride$;
|
|
@@ -8981,10 +9632,12 @@ exports.WorkloadIdentityType$ = WorkloadIdentityType$;
|
|
|
8981
9632
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
8982
9633
|
exports.paginateListAgentRuntimeEndpoints = paginateListAgentRuntimeEndpoints;
|
|
8983
9634
|
exports.paginateListAgentRuntimeVersions = paginateListAgentRuntimeVersions;
|
|
9635
|
+
exports.paginateListAgentRuntimeVersionsByCapacityProvider = paginateListAgentRuntimeVersionsByCapacityProvider;
|
|
8984
9636
|
exports.paginateListAgentRuntimes = paginateListAgentRuntimes;
|
|
8985
9637
|
exports.paginateListApiKeyCredentialProviders = paginateListApiKeyCredentialProviders;
|
|
8986
9638
|
exports.paginateListBrowserProfiles = paginateListBrowserProfiles;
|
|
8987
9639
|
exports.paginateListBrowsers = paginateListBrowsers;
|
|
9640
|
+
exports.paginateListCapacityProviders = paginateListCapacityProviders;
|
|
8988
9641
|
exports.paginateListCodeInterpreters = paginateListCodeInterpreters;
|
|
8989
9642
|
exports.paginateListConfigurationBundleVersions = paginateListConfigurationBundleVersions;
|
|
8990
9643
|
exports.paginateListConfigurationBundles = paginateListConfigurationBundles;
|
|
@@ -8992,6 +9645,7 @@ exports.paginateListDatasetExamples = paginateListDatasetExamples;
|
|
|
8992
9645
|
exports.paginateListDatasetVersions = paginateListDatasetVersions;
|
|
8993
9646
|
exports.paginateListDatasets = paginateListDatasets;
|
|
8994
9647
|
exports.paginateListEvaluators = paginateListEvaluators;
|
|
9648
|
+
exports.paginateListGatewayRateLimits = paginateListGatewayRateLimits;
|
|
8995
9649
|
exports.paginateListGatewayRules = paginateListGatewayRules;
|
|
8996
9650
|
exports.paginateListGatewayTargets = paginateListGatewayTargets;
|
|
8997
9651
|
exports.paginateListGateways = paginateListGateways;
|