@aws-sdk/client-bedrock-agentcore-control 3.1039.0 → 3.1040.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/dist-cjs/index.js +24 -0
- package/dist-cjs/schemas/schemas_0.js +154 -49
- package/dist-es/models/enums.js +20 -0
- package/dist-es/schemas/schemas_0.js +144 -40
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/CreateHarnessCommand.d.ts +2 -2
- package/dist-types/commands/CreateMemoryCommand.d.ts +233 -2
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +22 -2
- package/dist-types/commands/DeleteHarnessCommand.d.ts +1 -1
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +1 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +69 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +10 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHarnessCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMemoryCommand.d.ts +235 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +22 -2
- package/dist-types/models/enums.d.ts +60 -0
- package/dist-types/models/models_0.d.ts +240 -250
- package/dist-types/models/models_1.d.ts +340 -4
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/enums.d.ts +28 -0
- package/dist-types/ts3.4/models/models_0.d.ts +90 -103
- package/dist-types/ts3.4/models/models_1.d.ts +130 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +1 -1
package/dist-es/models/enums.js
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export const ActorTokenContentType = {
|
|
2
|
+
AWS_IAM_ID_TOKEN_JWT: "AWS_IAM_ID_TOKEN_JWT",
|
|
3
|
+
M2M: "M2M",
|
|
4
|
+
NONE: "NONE",
|
|
5
|
+
};
|
|
1
6
|
export const AgentRuntimeEndpointStatus = {
|
|
2
7
|
CREATE_FAILED: "CREATE_FAILED",
|
|
3
8
|
CREATING: "CREATING",
|
|
@@ -170,6 +175,7 @@ export const ApiKeyCredentialLocation = {
|
|
|
170
175
|
export const OAuthGrantType = {
|
|
171
176
|
AUTHORIZATION_CODE: "AUTHORIZATION_CODE",
|
|
172
177
|
CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",
|
|
178
|
+
TOKEN_EXCHANGE: "TOKEN_EXCHANGE",
|
|
173
179
|
};
|
|
174
180
|
export const CredentialProviderType = {
|
|
175
181
|
API_KEY: "API_KEY",
|
|
@@ -241,6 +247,11 @@ export const HarnessStatus = {
|
|
|
241
247
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
242
248
|
UPDATING: "UPDATING",
|
|
243
249
|
};
|
|
250
|
+
export const MetadataValueType = {
|
|
251
|
+
NUMBER: "NUMBER",
|
|
252
|
+
STRING: "STRING",
|
|
253
|
+
STRINGLIST: "STRINGLIST",
|
|
254
|
+
};
|
|
244
255
|
export const ContentLevel = {
|
|
245
256
|
FULL_CONTENT: "FULL_CONTENT",
|
|
246
257
|
METADATA_ONLY: "METADATA_ONLY",
|
|
@@ -305,6 +316,15 @@ export const CredentialProviderVendorType = {
|
|
|
305
316
|
YandexOauth2: "YandexOauth2",
|
|
306
317
|
ZoomOauth2: "ZoomOauth2",
|
|
307
318
|
};
|
|
319
|
+
export const ClientAuthenticationMethodType = {
|
|
320
|
+
AWS_IAM_ID_TOKEN_JWT: "AWS_IAM_ID_TOKEN_JWT",
|
|
321
|
+
CLIENT_SECRET_BASIC: "CLIENT_SECRET_BASIC",
|
|
322
|
+
CLIENT_SECRET_POST: "CLIENT_SECRET_POST",
|
|
323
|
+
};
|
|
324
|
+
export const OnBehalfOfTokenExchangeGrantTypeType = {
|
|
325
|
+
JWT_AUTHORIZATION_GRANT: "JWT_AUTHORIZATION_GRANT",
|
|
326
|
+
TOKEN_EXCHANGE: "TOKEN_EXCHANGE",
|
|
327
|
+
};
|
|
308
328
|
export const Status = {
|
|
309
329
|
CREATE_FAILED: "CREATE_FAILED",
|
|
310
330
|
CREATING: "CREATING",
|
|
@@ -146,7 +146,7 @@ const _Co = "Conditions";
|
|
|
146
146
|
const _Cod = "Code";
|
|
147
147
|
const _Con = "Condition";
|
|
148
148
|
const _Cont = "Content";
|
|
149
|
-
const _D = "
|
|
149
|
+
const _D = "Definition";
|
|
150
150
|
const _DAKCP = "DeleteApiKeyCredentialProvider";
|
|
151
151
|
const _DAKCPR = "DeleteApiKeyCredentialProviderRequest";
|
|
152
152
|
const _DAKCPRe = "DeleteApiKeyCredentialProviderResponse";
|
|
@@ -168,6 +168,7 @@ const _DCBRe = "DeleteConfigurationBundleResponse";
|
|
|
168
168
|
const _DCI = "DeleteCodeInterpreter";
|
|
169
169
|
const _DCIR = "DeleteCodeInterpreterRequest";
|
|
170
170
|
const _DCIRe = "DeleteCodeInterpreterResponse";
|
|
171
|
+
const _DCST = "DefaultClientSecretType";
|
|
171
172
|
const _DE = "DeleteEvaluator";
|
|
172
173
|
const _DER = "DeleteEvaluatorRequest";
|
|
173
174
|
const _DERe = "DeleteEvaluatorResponse";
|
|
@@ -214,11 +215,13 @@ const _DSC = "DataSourceConfig";
|
|
|
214
215
|
const _DWI = "DeleteWorkloadIdentity";
|
|
215
216
|
const _DWIR = "DeleteWorkloadIdentityRequest";
|
|
216
217
|
const _DWIRe = "DeleteWorkloadIdentityResponse";
|
|
217
|
-
const _De = "
|
|
218
|
+
const _De = "Description";
|
|
219
|
+
const _Des = "Descriptors";
|
|
218
220
|
const _EC = "EvaluatorConfig";
|
|
219
221
|
const _ECD = "EvaluationConfigDescription";
|
|
220
222
|
const _ECO = "EpisodicConsolidationOverride";
|
|
221
|
-
const _ECx = "
|
|
223
|
+
const _ECx = "ExtractionConfig";
|
|
224
|
+
const _ECxt = "ExtractionConfiguration";
|
|
222
225
|
const _ED = "EvaluatorDescription";
|
|
223
226
|
const _EEO = "EpisodicExtractionOverride";
|
|
224
227
|
const _EF = "EncryptionFailure";
|
|
@@ -378,6 +381,8 @@ const _ICP = "IamCredentialProvider";
|
|
|
378
381
|
const _ICn = "InvocationConfiguration";
|
|
379
382
|
const _ICnt = "InterceptorConfiguration";
|
|
380
383
|
const _IIC = "InterceptorInputConfiguration";
|
|
384
|
+
const _IK = "IndexedKey";
|
|
385
|
+
const _IKL = "IndexedKeysList";
|
|
381
386
|
const _IOPCI = "IncludedOauth2ProviderConfigInput";
|
|
382
387
|
const _IOPCO = "IncludedOauth2ProviderConfigOutput";
|
|
383
388
|
const _IP = "InlinePayload";
|
|
@@ -416,6 +421,8 @@ const _LCIR = "ListCodeInterpretersRequest";
|
|
|
416
421
|
const _LCIRi = "ListCodeInterpretersResponse";
|
|
417
422
|
const _LE = "ListEvaluators";
|
|
418
423
|
const _LEC = "LambdaEvaluatorConfig";
|
|
424
|
+
const _LECl = "LlmExtractionConfig";
|
|
425
|
+
const _LEI = "LlmExtractionInstruction";
|
|
419
426
|
const _LER = "ListEvaluatorsRequest";
|
|
420
427
|
const _LERi = "ListEvaluatorsResponse";
|
|
421
428
|
const _LG = "ListGateways";
|
|
@@ -487,12 +494,15 @@ const _MPEa = "MatchPrincipalEntry";
|
|
|
487
494
|
const _MPa = "MatchPrincipals";
|
|
488
495
|
const _MRC = "ModifyReflectionConfiguration";
|
|
489
496
|
const _MRD = "ManagedResourceDetails";
|
|
497
|
+
const _MRS = "MemoryRecordSchema";
|
|
490
498
|
const _MS = "MemoryStrategy";
|
|
491
499
|
const _MSC = "ModifyStrategyConfiguration";
|
|
500
|
+
const _MSE = "MetadataSchemaEntry";
|
|
492
501
|
const _MSI = "MemoryStrategyInput";
|
|
493
502
|
const _MSIL = "MemoryStrategyInputList";
|
|
494
503
|
const _MSL = "MemoryStrategyList";
|
|
495
504
|
const _MSLe = "MemorySummaryList";
|
|
505
|
+
const _MSLet = "MetadataSchemaList";
|
|
496
506
|
const _MSMC = "ModifySelfManagedConfiguration";
|
|
497
507
|
const _MSTC = "McpServerTargetConfiguration";
|
|
498
508
|
const _MSe = "MemorySummary";
|
|
@@ -502,11 +512,13 @@ const _MVR = "ManagedVpcResource";
|
|
|
502
512
|
const _NC = "NetworkConfiguration";
|
|
503
513
|
const _NSD = "NumericalScaleDefinition";
|
|
504
514
|
const _NSDu = "NumericalScaleDefinitions";
|
|
515
|
+
const _NV = "NumberValidation";
|
|
505
516
|
const _OAAD = "OAuth2AuthorizationData";
|
|
506
517
|
const _OACP = "OAuthCredentialProvider";
|
|
507
518
|
const _OACPV = "OAuthCustomParametersValue";
|
|
508
519
|
const _OACPu = "OAuthCustomParameters";
|
|
509
520
|
const _OASM = "Oauth2AuthorizationServerMetadata";
|
|
521
|
+
const _OBOTECT = "OnBehalfOfTokenExchangeConfigType";
|
|
510
522
|
const _OC = "OutputConfig";
|
|
511
523
|
const _OCP = "Oauth2CredentialProviders";
|
|
512
524
|
const _OCPI = "Oauth2CredentialProviderItem";
|
|
@@ -576,6 +588,7 @@ const _SGTR = "SynchronizeGatewayTargetsRequest";
|
|
|
576
588
|
const _SGTRy = "SynchronizeGatewayTargetsResponse";
|
|
577
589
|
const _SJ = "SensitiveJson";
|
|
578
590
|
const _SL = "S3Location";
|
|
591
|
+
const _SLV = "StringListValidation";
|
|
579
592
|
const _SMB = "SystemManagedBlock";
|
|
580
593
|
const _SMC = "SelfManagedConfiguration";
|
|
581
594
|
const _SMCI = "SelfManagedConfigurationInput";
|
|
@@ -608,6 +621,7 @@ const _ST = "SensitiveText";
|
|
|
608
621
|
const _STVCMK = "SetTokenVaultCMK";
|
|
609
622
|
const _STVCMKR = "SetTokenVaultCMKRequest";
|
|
610
623
|
const _STVCMKRe = "SetTokenVaultCMKResponse";
|
|
624
|
+
const _SV = "StringValidation";
|
|
611
625
|
const _TBT = "TimeBasedTrigger";
|
|
612
626
|
const _TBTI = "TimeBasedTriggerInput";
|
|
613
627
|
const _TBTIo = "TokenBasedTriggerInput";
|
|
@@ -622,6 +636,7 @@ const _TDo = "ToolDefinition";
|
|
|
622
636
|
const _TDoo = "ToolsDefinition";
|
|
623
637
|
const _TDool = "ToolDefinitions";
|
|
624
638
|
const _TE = "ThrottledException";
|
|
639
|
+
const _TEGTCT = "TokenExchangeGrantTypeConfigType";
|
|
625
640
|
const _TEh = "ThrottlingException";
|
|
626
641
|
const _TN = "TargetName";
|
|
627
642
|
const _TR = "TagResource";
|
|
@@ -717,6 +732,7 @@ const _UTD = "UpdatedToolsDefinition";
|
|
|
717
732
|
const _UWI = "UpdateWorkloadIdentity";
|
|
718
733
|
const _UWIR = "UpdateWorkloadIdentityRequest";
|
|
719
734
|
const _UWIRp = "UpdateWorkloadIdentityResponse";
|
|
735
|
+
const _V = "Validation";
|
|
720
736
|
const _VC = "VpcConfig";
|
|
721
737
|
const _VCBS = "VersionCreatedBySource";
|
|
722
738
|
const _VE = "ValidationException";
|
|
@@ -747,6 +763,7 @@ const _aE = "authorizationEndpoint";
|
|
|
747
763
|
const _aG = "apiGateway";
|
|
748
764
|
const _aGTC = "apiGatewayToolConfiguration";
|
|
749
765
|
const _aI = "actorId";
|
|
766
|
+
const _aIK = "addIndexedKeys";
|
|
750
767
|
const _aIw = "awsIam";
|
|
751
768
|
const _aK = "apiKey";
|
|
752
769
|
const _aKA = "apiKeyArn";
|
|
@@ -772,9 +789,12 @@ const _aS = "allowedScopes";
|
|
|
772
789
|
const _aSM = "authorizationServerMetadata";
|
|
773
790
|
const _aSg = "agentSkills";
|
|
774
791
|
const _aT = "authorizerType";
|
|
792
|
+
const _aTC = "actorTokenContent";
|
|
775
793
|
const _aTP = "appendToPrompt";
|
|
794
|
+
const _aTS = "actorTokenScopes";
|
|
776
795
|
const _aTl = "allowedTools";
|
|
777
796
|
const _aU = "authorizationUrl";
|
|
797
|
+
const _aV = "allowedValues";
|
|
778
798
|
const _aa = "a2a";
|
|
779
799
|
const _ar = "arn";
|
|
780
800
|
const _b = "bundles";
|
|
@@ -794,6 +814,7 @@ const _bVo = "booleanValue";
|
|
|
794
814
|
const _bu = "bucket";
|
|
795
815
|
const _c = "client";
|
|
796
816
|
const _cA = "createdAt";
|
|
817
|
+
const _cAM = "clientAuthenticationMethod";
|
|
797
818
|
const _cB = "createdBy";
|
|
798
819
|
const _cBN = "createdByName";
|
|
799
820
|
const _cBo = "configurationBundle";
|
|
@@ -860,6 +881,7 @@ const _eA = "evaluatorArn";
|
|
|
860
881
|
const _eAn = "environmentArtifact";
|
|
861
882
|
const _eC = "evaluatorConfig";
|
|
862
883
|
const _eCO = "episodicConsolidationOverride";
|
|
884
|
+
const _eCx = "extractionConfig";
|
|
863
885
|
const _eED = "eventExpiryDuration";
|
|
864
886
|
const _eEO = "episodicExtractionOverride";
|
|
865
887
|
const _eERA = "evaluationExecutionRoleArn";
|
|
@@ -920,6 +942,7 @@ const _iCnt = "interceptorConfigurations";
|
|
|
920
942
|
const _iCnv = "invocationConfiguration";
|
|
921
943
|
const _iD = "includedData";
|
|
922
944
|
const _iF = "inlineFunction";
|
|
945
|
+
const _iK = "indexedKeys";
|
|
923
946
|
const _iOPC = "includedOauth2ProviderConfig";
|
|
924
947
|
const _iP = "interceptionPoints";
|
|
925
948
|
const _iPa = "iamPrincipal";
|
|
@@ -944,6 +967,8 @@ const _lA = "lambdaArn";
|
|
|
944
967
|
const _lAAJ = "llmAsAJudge";
|
|
945
968
|
const _lC = "lifecycleConfiguration";
|
|
946
969
|
const _lCa = "lambdaConfig";
|
|
970
|
+
const _lEC = "llmExtractionConfig";
|
|
971
|
+
const _lEI = "llmExtractionInstruction";
|
|
947
972
|
const _lFM = "lockedForModification";
|
|
948
973
|
const _lGN = "logGroupNames";
|
|
949
974
|
const _lGNo = "logGroupName";
|
|
@@ -973,6 +998,7 @@ const _mCo = "modelConfig";
|
|
|
973
998
|
const _mERA = "memoryExecutionRoleArn";
|
|
974
999
|
const _mI = "modelId";
|
|
975
1000
|
const _mIa = "maxIterations";
|
|
1001
|
+
const _mIax = "maxItems";
|
|
976
1002
|
const _mIe = "memoryId";
|
|
977
1003
|
const _mL = "maxLifetime";
|
|
978
1004
|
const _mMS = "modifyMemoryStrategies";
|
|
@@ -981,14 +1007,18 @@ const _mP = "mountPath";
|
|
|
981
1007
|
const _mPa = "matchPrincipals";
|
|
982
1008
|
const _mPat = "matchPaths";
|
|
983
1009
|
const _mR = "maxResults";
|
|
1010
|
+
const _mRS = "memoryRecordSchema";
|
|
984
1011
|
const _mS = "memoryStrategies";
|
|
985
1012
|
const _mSI = "memoryStrategyId";
|
|
986
1013
|
const _mSc = "mcpServer";
|
|
1014
|
+
const _mSe = "metadataSchema";
|
|
987
1015
|
const _mT = "maxTokens";
|
|
988
1016
|
const _mTS = "mcpToolSchema";
|
|
1017
|
+
const _mV = "minValue";
|
|
989
1018
|
const _mVR = "managedVpcResource";
|
|
990
1019
|
const _mVS = "matchValueString";
|
|
991
1020
|
const _mVSL = "matchValueStringList";
|
|
1021
|
+
const _mVa = "maxValue";
|
|
992
1022
|
const _mc = "mcp";
|
|
993
1023
|
const _me = "methods";
|
|
994
1024
|
const _mem = "memory";
|
|
@@ -1003,6 +1033,7 @@ const _nM = "networkMode";
|
|
|
1003
1033
|
const _nMC = "networkModeConfig";
|
|
1004
1034
|
const _nT = "namespaceTemplates";
|
|
1005
1035
|
const _nTe = "nextToken";
|
|
1036
|
+
const _nV = "numberValidation";
|
|
1006
1037
|
const _na = "namespaces";
|
|
1007
1038
|
const _no = "none";
|
|
1008
1039
|
const _nu = "numerical";
|
|
@@ -1010,6 +1041,7 @@ const _o = "operator";
|
|
|
1010
1041
|
const _oA = "outboundAuth";
|
|
1011
1042
|
const _oAMC = "openAiModelConfig";
|
|
1012
1043
|
const _oAS = "openApiSchema";
|
|
1044
|
+
const _oBOTEC = "onBehalfOfTokenExchangeConfig";
|
|
1013
1045
|
const _oC = "outputConfig";
|
|
1014
1046
|
const _oCP = "oauthCredentialProvider";
|
|
1015
1047
|
const _oD = "oauthDiscovery";
|
|
@@ -1109,6 +1141,7 @@ const _sGI = "securityGroupIds";
|
|
|
1109
1141
|
const _sI = "strategyId";
|
|
1110
1142
|
const _sIu = "subnetIds";
|
|
1111
1143
|
const _sL = "s3Location";
|
|
1144
|
+
const _sLV = "stringListValidation";
|
|
1112
1145
|
const _sM = "skillMd";
|
|
1113
1146
|
const _sMC = "selfManagedConfiguration";
|
|
1114
1147
|
const _sMLR = "selfManagedLatticeResource";
|
|
@@ -1137,6 +1170,7 @@ const _sTM = "sessionTimeoutMinutes";
|
|
|
1137
1170
|
const _sTe = "searchType";
|
|
1138
1171
|
const _sV = "schemaVersion";
|
|
1139
1172
|
const _sVt = "stringValue";
|
|
1173
|
+
const _sVtr = "stringValidation";
|
|
1140
1174
|
const _sVu = "supportedVersions";
|
|
1141
1175
|
const _sW = "slidingWindow";
|
|
1142
1176
|
const _s_ = "s3";
|
|
@@ -1161,6 +1195,7 @@ const _tCo = "tokenCount";
|
|
|
1161
1195
|
const _tCr = "triggerConditions";
|
|
1162
1196
|
const _tE = "tokenEndpoint";
|
|
1163
1197
|
const _tEAM = "tokenEndpointAuthMethods";
|
|
1198
|
+
const _tEGTC = "tokenExchangeGrantTypeConfig";
|
|
1164
1199
|
const _tF = "toolFilters";
|
|
1165
1200
|
const _tI = "targetId";
|
|
1166
1201
|
const _tIL = "targetIdList";
|
|
@@ -1197,6 +1232,7 @@ const _vCA = "versionCreatedAt";
|
|
|
1197
1232
|
const _vI = "versionId";
|
|
1198
1233
|
const _vIp = "vpcIdentifier";
|
|
1199
1234
|
const _vM = "validationMode";
|
|
1235
|
+
const _va = "validation";
|
|
1200
1236
|
const _ve = "version";
|
|
1201
1237
|
const _ver = "versions";
|
|
1202
1238
|
const _vi = "view";
|
|
@@ -1305,7 +1341,9 @@ export const errorTypeRegistries = [
|
|
|
1305
1341
|
var ApiKeyType = [0, n0, _AKT, 8, 0];
|
|
1306
1342
|
var ClientSecretType = [0, n0, _CST, 8, 0];
|
|
1307
1343
|
var ConfigurationBundleDescription = [0, n0, _CBD, 8, 0];
|
|
1308
|
-
var
|
|
1344
|
+
var DefaultClientSecretType = [0, n0, _DCST, 8, 0];
|
|
1345
|
+
var Definition = [0, n0, _D, 8, 0];
|
|
1346
|
+
var Description = [0, n0, _De, 8, 0];
|
|
1309
1347
|
var EndpointName = [0, n0, _EN, 8, 0];
|
|
1310
1348
|
var EvaluationConfigDescription = [0, n0, _ECD, 8, 0];
|
|
1311
1349
|
var EvaluatorDescription = [0, n0, _ED, 8, 0];
|
|
@@ -1315,6 +1353,7 @@ var GatewayName = [0, n0, _GN, 8, 0];
|
|
|
1315
1353
|
var HarnessInlineFunctionDescription = [0, n0, _HIFD, 8, 0];
|
|
1316
1354
|
var HarnessRemoteMcpUrl = [0, n0, _HRMU, 8, 0];
|
|
1317
1355
|
var InlinePayload = [0, n0, _IP, 8, 0];
|
|
1356
|
+
var LlmExtractionInstruction = [0, n0, _LEI, 8, 0];
|
|
1318
1357
|
var OAuthCustomParametersValue = [0, n0, _OACPV, 8, 0];
|
|
1319
1358
|
var Prompt = [0, n0, _P, 8, 0];
|
|
1320
1359
|
var SensitiveJson = [0, n0, _SJ, 8, 15];
|
|
@@ -1618,8 +1657,8 @@ export var CreateHarnessResponse$ = [3, n0, _CHRr,
|
|
|
1618
1657
|
];
|
|
1619
1658
|
export var CreateMemoryInput$ = [3, n0, _CMI,
|
|
1620
1659
|
0,
|
|
1621
|
-
[_n, _eED, _cTl, _d, _eKA, _mERA, _mS, _sDR, _ta],
|
|
1622
|
-
[0, 1, [0, 4], [() => Description, 0], 0, 0, [() => MemoryStrategyInputList, 0], () => StreamDeliveryResources$, 128 | 0], 2
|
|
1660
|
+
[_n, _eED, _cTl, _d, _eKA, _mERA, _mS, _iK, _sDR, _ta],
|
|
1661
|
+
[0, 1, [0, 4], [() => Description, 0], 0, 0, [() => MemoryStrategyInputList, 0], () => IndexedKeysList, () => StreamDeliveryResources$, 128 | 0], 2
|
|
1623
1662
|
];
|
|
1624
1663
|
export var CreateMemoryOutput$ = [3, n0, _CMO,
|
|
1625
1664
|
0,
|
|
@@ -1718,18 +1757,18 @@ export var CustomJWTAuthorizerConfiguration$ = [3, n0, _CJWTAC,
|
|
|
1718
1757
|
];
|
|
1719
1758
|
export var CustomMemoryStrategyInput$ = [3, n0, _CMSI,
|
|
1720
1759
|
0,
|
|
1721
|
-
[_n, _d, _na, _nT, _con],
|
|
1722
|
-
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => CustomConfigurationInput$, 0]], 1
|
|
1760
|
+
[_n, _d, _na, _nT, _con, _mRS],
|
|
1761
|
+
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => CustomConfigurationInput$, 0], [() => MemoryRecordSchema$, 0]], 1
|
|
1723
1762
|
];
|
|
1724
1763
|
export var CustomOauth2ProviderConfigInput$ = [3, n0, _COPCI,
|
|
1725
1764
|
0,
|
|
1726
|
-
[_oD, _cI, _cS, _pE, _pEO],
|
|
1727
|
-
[() => Oauth2Discovery$, 0, [() =>
|
|
1765
|
+
[_oD, _cI, _cS, _pE, _pEO, _oBOTEC, _cAM],
|
|
1766
|
+
[() => Oauth2Discovery$, 0, [() => DefaultClientSecretType, 0], () => PrivateEndpoint$, () => PrivateEndpointOverrides, () => OnBehalfOfTokenExchangeConfigType$, 0], 1
|
|
1728
1767
|
];
|
|
1729
1768
|
export var CustomOauth2ProviderConfigOutput$ = [3, n0, _COPCO,
|
|
1730
1769
|
0,
|
|
1731
|
-
[_oD, _cI, _pE, _pEO],
|
|
1732
|
-
[() => Oauth2Discovery$, 0, () => PrivateEndpoint$, () => PrivateEndpointOverrides], 1
|
|
1770
|
+
[_oD, _cI, _pE, _pEO, _oBOTEC, _cAM],
|
|
1771
|
+
[() => Oauth2Discovery$, 0, () => PrivateEndpoint$, () => PrivateEndpointOverrides, () => OnBehalfOfTokenExchangeConfigType$, 0], 1
|
|
1733
1772
|
];
|
|
1734
1773
|
export var DeleteAgentRuntimeEndpointRequest$ = [3, n0, _DARER,
|
|
1735
1774
|
0,
|
|
@@ -1946,7 +1985,7 @@ export var DeleteWorkloadIdentityResponse$ = [3, n0, _DWIRe,
|
|
|
1946
1985
|
[],
|
|
1947
1986
|
[]
|
|
1948
1987
|
];
|
|
1949
|
-
export var Descriptors$ = [3, n0,
|
|
1988
|
+
export var Descriptors$ = [3, n0, _Des,
|
|
1950
1989
|
0,
|
|
1951
1990
|
[_mc, _aa, _cu, _aSg],
|
|
1952
1991
|
[() => McpDescriptor$, () => A2aDescriptor$, () => CustomDescriptor$, () => AgentSkillsDescriptor$]
|
|
@@ -1963,8 +2002,8 @@ export var EpisodicExtractionOverride$ = [3, n0, _EEO,
|
|
|
1963
2002
|
];
|
|
1964
2003
|
export var EpisodicMemoryStrategyInput$ = [3, n0, _EMSI,
|
|
1965
2004
|
0,
|
|
1966
|
-
[_n, _d, _na, _nT, _rC],
|
|
1967
|
-
[0, [() => Description, 0], 64 | 0, 64 | 0, () => EpisodicReflectionConfigurationInput
|
|
2005
|
+
[_n, _d, _na, _nT, _rC, _mRS],
|
|
2006
|
+
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => EpisodicReflectionConfigurationInput$, 0], [() => MemoryRecordSchema$, 0]], 1
|
|
1968
2007
|
];
|
|
1969
2008
|
export var EpisodicOverrideConfigurationInput$ = [3, n0, _EOCI,
|
|
1970
2009
|
0,
|
|
@@ -1983,23 +2022,23 @@ export var EpisodicOverrideExtractionConfigurationInput$ = [3, n0, _EOECI,
|
|
|
1983
2022
|
];
|
|
1984
2023
|
export var EpisodicOverrideReflectionConfigurationInput$ = [3, n0, _EORCI,
|
|
1985
2024
|
0,
|
|
1986
|
-
[_aTP, _mI, _na, _nT],
|
|
1987
|
-
[[() => Prompt, 0], 0, 64 | 0, 64 | 0], 2
|
|
2025
|
+
[_aTP, _mI, _na, _nT, _mRS],
|
|
2026
|
+
[[() => Prompt, 0], 0, 64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]], 2
|
|
1988
2027
|
];
|
|
1989
2028
|
export var EpisodicReflectionConfiguration$ = [3, n0, _ERC,
|
|
1990
2029
|
0,
|
|
1991
|
-
[_na, _nT],
|
|
1992
|
-
[64 | 0, 64 | 0]
|
|
2030
|
+
[_na, _nT, _mRS],
|
|
2031
|
+
[64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]]
|
|
1993
2032
|
];
|
|
1994
2033
|
export var EpisodicReflectionConfigurationInput$ = [3, n0, _ERCI,
|
|
1995
2034
|
0,
|
|
1996
|
-
[_na, _nT],
|
|
1997
|
-
[64 | 0, 64 | 0]
|
|
2035
|
+
[_na, _nT, _mRS],
|
|
2036
|
+
[64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]]
|
|
1998
2037
|
];
|
|
1999
2038
|
export var EpisodicReflectionOverride$ = [3, n0, _ERO,
|
|
2000
2039
|
0,
|
|
2001
|
-
[_aTP, _mI, _na, _nT],
|
|
2002
|
-
[[() => Prompt, 0], 0, 64 | 0, 64 | 0], 2
|
|
2040
|
+
[_aTP, _mI, _na, _nT, _mRS],
|
|
2041
|
+
[[() => Prompt, 0], 0, 64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]], 2
|
|
2003
2042
|
];
|
|
2004
2043
|
export var EvaluatorSummary$ = [3, n0, _ES,
|
|
2005
2044
|
0,
|
|
@@ -2421,6 +2460,11 @@ export var IncludedOauth2ProviderConfigOutput$ = [3, n0, _IOPCO,
|
|
|
2421
2460
|
[_oD, _cI],
|
|
2422
2461
|
[() => Oauth2Discovery$, 0], 1
|
|
2423
2462
|
];
|
|
2463
|
+
export var IndexedKey$ = [3, n0, _IK,
|
|
2464
|
+
0,
|
|
2465
|
+
[_k, _t],
|
|
2466
|
+
[0, 0], 2
|
|
2467
|
+
];
|
|
2424
2468
|
export var InferenceConfiguration$ = [3, n0, _IC,
|
|
2425
2469
|
0,
|
|
2426
2470
|
[_mT, _te, _tP, _sS],
|
|
@@ -2731,6 +2775,11 @@ export var LlmAsAJudgeEvaluatorConfig$ = [3, n0, _LAAJEC,
|
|
|
2731
2775
|
[_ins, _rSa, _mCo],
|
|
2732
2776
|
[[() => EvaluatorInstructions, 0], [() => RatingScale$, 0], () => EvaluatorModelConfig$], 3
|
|
2733
2777
|
];
|
|
2778
|
+
export var LlmExtractionConfig$ = [3, n0, _LECl,
|
|
2779
|
+
0,
|
|
2780
|
+
[_de, _lEI, _va],
|
|
2781
|
+
[[() => Definition, 0], [() => LlmExtractionInstruction, 0], () => Validation$], 1
|
|
2782
|
+
];
|
|
2734
2783
|
export var ManagedResourceDetails$ = [3, n0, _MRD,
|
|
2735
2784
|
0,
|
|
2736
2785
|
[_do, _rGA, _rAA],
|
|
@@ -2773,13 +2822,18 @@ export var McpServerTargetConfiguration$ = [3, n0, _MSTC,
|
|
|
2773
2822
|
];
|
|
2774
2823
|
export var Memory$ = [3, n0, _M,
|
|
2775
2824
|
0,
|
|
2776
|
-
[_ar, _i, _n, _eED, _st, _cA, _uA, _d, _eKA, _mERA, _fR, _stra, _sDR],
|
|
2777
|
-
[0, 0, 0, 1, 0, 4, 4, [() => Description, 0], 0, 0, 0, [() => MemoryStrategyList, 0], () => StreamDeliveryResources$], 7
|
|
2825
|
+
[_ar, _i, _n, _eED, _st, _cA, _uA, _d, _eKA, _mERA, _fR, _stra, _iK, _sDR],
|
|
2826
|
+
[0, 0, 0, 1, 0, 4, 4, [() => Description, 0], 0, 0, 0, [() => MemoryStrategyList, 0], () => IndexedKeysList, () => StreamDeliveryResources$], 7
|
|
2827
|
+
];
|
|
2828
|
+
export var MemoryRecordSchema$ = [3, n0, _MRS,
|
|
2829
|
+
0,
|
|
2830
|
+
[_mSe],
|
|
2831
|
+
[[() => MetadataSchemaList, 0]]
|
|
2778
2832
|
];
|
|
2779
2833
|
export var MemoryStrategy$ = [3, n0, _MS,
|
|
2780
2834
|
0,
|
|
2781
|
-
[_sI, _n, _t, _na, _nT, _d, _con, _cA, _uA, _st],
|
|
2782
|
-
[0, 0, 0, 64 | 0, 64 | 0, [() => Description, 0], [() => StrategyConfiguration$, 0], 4, 4, 0], 5
|
|
2835
|
+
[_sI, _n, _t, _na, _nT, _d, _con, _cA, _uA, _st, _mRS],
|
|
2836
|
+
[0, 0, 0, 64 | 0, 64 | 0, [() => Description, 0], [() => StrategyConfiguration$, 0], 4, 4, 0, [() => MemoryRecordSchema$, 0]], 5
|
|
2783
2837
|
];
|
|
2784
2838
|
export var MemorySummary$ = [3, n0, _MSe,
|
|
2785
2839
|
0,
|
|
@@ -2801,6 +2855,11 @@ export var MetadataConfiguration$ = [3, n0, _MC,
|
|
|
2801
2855
|
[_aRH, _aQP, _aRHl],
|
|
2802
2856
|
[64 | 0, 64 | 0, 64 | 0]
|
|
2803
2857
|
];
|
|
2858
|
+
export var MetadataSchemaEntry$ = [3, n0, _MSE,
|
|
2859
|
+
0,
|
|
2860
|
+
[_k, _t, _eCx],
|
|
2861
|
+
[0, 0, [() => ExtractionConfig$, 0]], 1
|
|
2862
|
+
];
|
|
2804
2863
|
export var MicrosoftOauth2ProviderConfigInput$ = [3, n0, _MOPCI,
|
|
2805
2864
|
0,
|
|
2806
2865
|
[_cI, _cS, _tIe],
|
|
@@ -2823,8 +2882,8 @@ export var ModifyMemoryStrategies$ = [3, n0, _MMS,
|
|
|
2823
2882
|
];
|
|
2824
2883
|
export var ModifyMemoryStrategyInput$ = [3, n0, _MMSI,
|
|
2825
2884
|
0,
|
|
2826
|
-
[_mSI, _d, _na, _nT, _con],
|
|
2827
|
-
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => ModifyStrategyConfiguration$, 0]], 1
|
|
2885
|
+
[_mSI, _d, _na, _nT, _con, _mRS],
|
|
2886
|
+
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => ModifyStrategyConfiguration$, 0], [() => MemoryRecordSchema$, 0]], 1
|
|
2828
2887
|
];
|
|
2829
2888
|
export var ModifySelfManagedConfiguration$ = [3, n0, _MSMC,
|
|
2830
2889
|
0,
|
|
@@ -2841,6 +2900,11 @@ export var NetworkConfiguration$ = [3, n0, _NC,
|
|
|
2841
2900
|
[_nM, _nMC],
|
|
2842
2901
|
[0, () => VpcConfig$], 1
|
|
2843
2902
|
];
|
|
2903
|
+
export var NumberValidation$ = [3, n0, _NV,
|
|
2904
|
+
0,
|
|
2905
|
+
[_mV, _mVa],
|
|
2906
|
+
[1, 1]
|
|
2907
|
+
];
|
|
2844
2908
|
export var NumericalScaleDefinition$ = [3, n0, _NSD,
|
|
2845
2909
|
0,
|
|
2846
2910
|
[_de, _v, _la],
|
|
@@ -2866,6 +2930,11 @@ export var OAuthCredentialProvider$ = [3, n0, _OACP,
|
|
|
2866
2930
|
[_pAr, _sc, _cPu, _gT, _dRU],
|
|
2867
2931
|
[0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0], 2
|
|
2868
2932
|
];
|
|
2933
|
+
export var OnBehalfOfTokenExchangeConfigType$ = [3, n0, _OBOTECT,
|
|
2934
|
+
0,
|
|
2935
|
+
[_gT, _tEGTC],
|
|
2936
|
+
[0, () => TokenExchangeGrantTypeConfigType$], 1
|
|
2937
|
+
];
|
|
2869
2938
|
export var OnlineEvaluationConfigSummary$ = [3, n0, _OECS,
|
|
2870
2939
|
0,
|
|
2871
2940
|
[_oECA, _oECI, _oECN, _st, _eS, _cA, _uA, _d, _fR],
|
|
@@ -3028,8 +3097,8 @@ export var SemanticExtractionOverride$ = [3, n0, _SEO,
|
|
|
3028
3097
|
];
|
|
3029
3098
|
export var SemanticMemoryStrategyInput$ = [3, n0, _SMSI,
|
|
3030
3099
|
0,
|
|
3031
|
-
[_n, _d, _na, _nT],
|
|
3032
|
-
[0, [() => Description, 0], 64 | 0, 64 | 0], 1
|
|
3100
|
+
[_n, _d, _na, _nT, _mRS],
|
|
3101
|
+
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]], 1
|
|
3033
3102
|
];
|
|
3034
3103
|
export var SemanticOverrideConfigurationInput$ = [3, n0, _SOCI,
|
|
3035
3104
|
0,
|
|
@@ -3121,6 +3190,16 @@ export var StreamDeliveryResources$ = [3, n0, _SDR,
|
|
|
3121
3190
|
[_reso],
|
|
3122
3191
|
[() => StreamDeliveryResourcesList], 1
|
|
3123
3192
|
];
|
|
3193
|
+
export var StringListValidation$ = [3, n0, _SLV,
|
|
3194
|
+
0,
|
|
3195
|
+
[_aV, _mIax],
|
|
3196
|
+
[64 | 0, 1]
|
|
3197
|
+
];
|
|
3198
|
+
export var StringValidation$ = [3, n0, _SV,
|
|
3199
|
+
0,
|
|
3200
|
+
[_aV],
|
|
3201
|
+
[64 | 0], 1
|
|
3202
|
+
];
|
|
3124
3203
|
export var SubmitRegistryRecordForApprovalRequest$ = [3, n0, _SRRFAR,
|
|
3125
3204
|
0,
|
|
3126
3205
|
[_rIe, _rIec],
|
|
@@ -3138,8 +3217,8 @@ export var SummaryConsolidationOverride$ = [3, n0, _SCOu,
|
|
|
3138
3217
|
];
|
|
3139
3218
|
export var SummaryMemoryStrategyInput$ = [3, n0, _SMSIu,
|
|
3140
3219
|
0,
|
|
3141
|
-
[_n, _d, _na, _nT],
|
|
3142
|
-
[0, [() => Description, 0], 64 | 0, 64 | 0], 1
|
|
3220
|
+
[_n, _d, _na, _nT, _mRS],
|
|
3221
|
+
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]], 1
|
|
3143
3222
|
];
|
|
3144
3223
|
export var SummaryOverrideConfigurationInput$ = [3, n0, _SOCIu,
|
|
3145
3224
|
0,
|
|
@@ -3211,6 +3290,11 @@ export var TokenBasedTriggerInput$ = [3, n0, _TBTIo,
|
|
|
3211
3290
|
[_tCo],
|
|
3212
3291
|
[1]
|
|
3213
3292
|
];
|
|
3293
|
+
export var TokenExchangeGrantTypeConfigType$ = [3, n0, _TEGTCT,
|
|
3294
|
+
0,
|
|
3295
|
+
[_aTC, _aTS],
|
|
3296
|
+
[0, 64 | 0], 1
|
|
3297
|
+
];
|
|
3214
3298
|
export var ToolDefinition$ = [3, n0, _TDo,
|
|
3215
3299
|
0,
|
|
3216
3300
|
[_n, _d, _iS, _oS],
|
|
@@ -3423,8 +3507,8 @@ export var UpdateHarnessResponse$ = [3, n0, _UHRp,
|
|
|
3423
3507
|
];
|
|
3424
3508
|
export var UpdateMemoryInput$ = [3, n0, _UMI,
|
|
3425
3509
|
0,
|
|
3426
|
-
[_mIe, _cTl, _d, _eED, _mERA, _mS, _sDR],
|
|
3427
|
-
[[0, 1], [0, 4], [() => Description, 0], 1, 0, [() => ModifyMemoryStrategies$, 0], () => StreamDeliveryResources$], 1
|
|
3510
|
+
[_mIe, _cTl, _d, _eED, _mERA, _mS, _aIK, _sDR],
|
|
3511
|
+
[[0, 1], [0, 4], [() => Description, 0], 1, 0, [() => ModifyMemoryStrategies$, 0], () => IndexedKeysList, () => StreamDeliveryResources$], 1
|
|
3428
3512
|
];
|
|
3429
3513
|
export var UpdateMemoryOutput$ = [3, n0, _UMO,
|
|
3430
3514
|
0,
|
|
@@ -3523,8 +3607,8 @@ export var UserPreferenceExtractionOverride$ = [3, n0, _UPEO,
|
|
|
3523
3607
|
];
|
|
3524
3608
|
export var UserPreferenceMemoryStrategyInput$ = [3, n0, _UPMSI,
|
|
3525
3609
|
0,
|
|
3526
|
-
[_n, _d, _na, _nT],
|
|
3527
|
-
[0, [() => Description, 0], 64 | 0, 64 | 0], 1
|
|
3610
|
+
[_n, _d, _na, _nT, _mRS],
|
|
3611
|
+
[0, [() => Description, 0], 64 | 0, 64 | 0, [() => MemoryRecordSchema$, 0]], 1
|
|
3528
3612
|
];
|
|
3529
3613
|
export var UserPreferenceOverrideConfigurationInput$ = [3, n0, _UPOCI,
|
|
3530
3614
|
0,
|
|
@@ -3605,6 +3689,8 @@ var AllowedQueryParameters = 64 | 0;
|
|
|
3605
3689
|
var AllowedRequestHeaders = 64 | 0;
|
|
3606
3690
|
var AllowedResponseHeaders = 64 | 0;
|
|
3607
3691
|
var AllowedScopesType = 64 | 0;
|
|
3692
|
+
var AllowedStringListValuesList = 64 | 0;
|
|
3693
|
+
var AllowedStringValuesList = 64 | 0;
|
|
3608
3694
|
var ApiGatewayToolFilters = [1, n0, _AGTFp,
|
|
3609
3695
|
0, () => ApiGatewayToolFilter$
|
|
3610
3696
|
];
|
|
@@ -3707,6 +3793,9 @@ var HarnessTools = [1, n0, _HTa,
|
|
|
3707
3793
|
0, [() => HarnessTool$,
|
|
3708
3794
|
0]
|
|
3709
3795
|
];
|
|
3796
|
+
var IndexedKeysList = [1, n0, _IKL,
|
|
3797
|
+
0, () => IndexedKey$
|
|
3798
|
+
];
|
|
3710
3799
|
var LogGroupNamesList = 64 | 0;
|
|
3711
3800
|
var MatchPathPatterns = 64 | 0;
|
|
3712
3801
|
var MatchPrincipalEntries = [1, n0, _MPE,
|
|
@@ -3725,6 +3814,10 @@ var MemoryStrategyList = [1, n0, _MSL,
|
|
|
3725
3814
|
var MemorySummaryList = [1, n0, _MSLe,
|
|
3726
3815
|
0, () => MemorySummary$
|
|
3727
3816
|
];
|
|
3817
|
+
var MetadataSchemaList = [1, n0, _MSLet,
|
|
3818
|
+
0, [() => MetadataSchemaEntry$,
|
|
3819
|
+
0]
|
|
3820
|
+
];
|
|
3728
3821
|
var ModifyMemoryStrategiesList = [1, n0, _MMSL,
|
|
3729
3822
|
0, [() => ModifyMemoryStrategyInput$,
|
|
3730
3823
|
0]
|
|
@@ -3780,6 +3873,7 @@ var ResourceOauth2ReturnUrlListType = 64 | 0;
|
|
|
3780
3873
|
var ResponseListType = 64 | 0;
|
|
3781
3874
|
var RestApiMethods = 64 | 0;
|
|
3782
3875
|
var ScopeList = 64 | 0;
|
|
3876
|
+
var ScopesListType = 64 | 0;
|
|
3783
3877
|
var SecurityGroupIds = 64 | 0;
|
|
3784
3878
|
var SecurityGroups = 64 | 0;
|
|
3785
3879
|
var ServiceNamesList = 64 | 0;
|
|
@@ -3970,7 +4064,12 @@ export var EvaluatorReference$ = [4, n0, _ER,
|
|
|
3970
4064
|
[_eI],
|
|
3971
4065
|
[0]
|
|
3972
4066
|
];
|
|
3973
|
-
export var
|
|
4067
|
+
export var ExtractionConfig$ = [4, n0, _ECx,
|
|
4068
|
+
0,
|
|
4069
|
+
[_lEC],
|
|
4070
|
+
[[() => LlmExtractionConfig$, 0]]
|
|
4071
|
+
];
|
|
4072
|
+
export var ExtractionConfiguration$ = [4, n0, _ECxt,
|
|
3974
4073
|
0,
|
|
3975
4074
|
[_cEC],
|
|
3976
4075
|
[[() => CustomExtractionConfiguration$, 0]]
|
|
@@ -4083,7 +4182,7 @@ export var ModifyExtractionConfiguration$ = [4, n0, _MEC,
|
|
|
4083
4182
|
export var ModifyReflectionConfiguration$ = [4, n0, _MRC,
|
|
4084
4183
|
0,
|
|
4085
4184
|
[_eRC, _cRC],
|
|
4086
|
-
[() => EpisodicReflectionConfigurationInput$, [() => CustomReflectionConfigurationInput$, 0]]
|
|
4185
|
+
[[() => EpisodicReflectionConfigurationInput$, 0], [() => CustomReflectionConfigurationInput$, 0]]
|
|
4087
4186
|
];
|
|
4088
4187
|
export var Oauth2Discovery$ = [4, n0, _OD,
|
|
4089
4188
|
0,
|
|
@@ -4118,7 +4217,7 @@ export var RatingScale$ = [4, n0, _RSa,
|
|
|
4118
4217
|
export var ReflectionConfiguration$ = [4, n0, _RCe,
|
|
4119
4218
|
0,
|
|
4120
4219
|
[_cRC, _eRC],
|
|
4121
|
-
[[() => CustomReflectionConfiguration$, 0], () => EpisodicReflectionConfiguration
|
|
4220
|
+
[[() => CustomReflectionConfiguration$, 0], [() => EpisodicReflectionConfiguration$, 0]]
|
|
4122
4221
|
];
|
|
4123
4222
|
export var RegistryRecordCredentialProviderUnion$ = [4, n0, _RRCPU,
|
|
4124
4223
|
0,
|
|
@@ -4175,6 +4274,11 @@ export var TriggerConditionInput$ = [4, n0, _TCI,
|
|
|
4175
4274
|
[_mBT, _tBT, _tBTi],
|
|
4176
4275
|
[() => MessageBasedTriggerInput$, () => TokenBasedTriggerInput$, () => TimeBasedTriggerInput$]
|
|
4177
4276
|
];
|
|
4277
|
+
export var Validation$ = [4, n0, _V,
|
|
4278
|
+
0,
|
|
4279
|
+
[_sVtr, _sLV, _nV],
|
|
4280
|
+
[() => StringValidation$, () => StringListValidation$, () => NumberValidation$]
|
|
4281
|
+
];
|
|
4178
4282
|
export var CreateAgentRuntime$ = [9, n0, _CAR,
|
|
4179
4283
|
{ [_ht]: ["PUT", "/runtimes/", 202] }, () => CreateAgentRuntimeRequest$, () => CreateAgentRuntimeResponse$
|
|
4180
4284
|
];
|
|
@@ -148,7 +148,7 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
148
148
|
* customParameters: { // OAuthCustomParameters
|
|
149
149
|
* "<keys>": "STRING_VALUE",
|
|
150
150
|
* },
|
|
151
|
-
* grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE",
|
|
151
|
+
* grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "TOKEN_EXCHANGE",
|
|
152
152
|
* defaultReturnUrl: "STRING_VALUE",
|
|
153
153
|
* },
|
|
154
154
|
* apiKeyCredentialProvider: { // GatewayApiKeyCredentialProvider
|
|
@@ -315,7 +315,7 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
315
315
|
* // customParameters: { // OAuthCustomParameters
|
|
316
316
|
* // "<keys>": "STRING_VALUE",
|
|
317
317
|
* // },
|
|
318
|
-
* // grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE",
|
|
318
|
+
* // grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "TOKEN_EXCHANGE",
|
|
319
319
|
* // defaultReturnUrl: "STRING_VALUE",
|
|
320
320
|
* // },
|
|
321
321
|
* // apiKeyCredentialProvider: { // GatewayApiKeyCredentialProvider
|
|
@@ -201,7 +201,7 @@ declare const CreateHarnessCommand_base: {
|
|
|
201
201
|
* customParameters: { // OAuthCustomParameters
|
|
202
202
|
* "<keys>": "STRING_VALUE",
|
|
203
203
|
* },
|
|
204
|
-
* grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE",
|
|
204
|
+
* grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "TOKEN_EXCHANGE",
|
|
205
205
|
* defaultReturnUrl: "STRING_VALUE",
|
|
206
206
|
* },
|
|
207
207
|
* },
|
|
@@ -322,7 +322,7 @@ declare const CreateHarnessCommand_base: {
|
|
|
322
322
|
* // customParameters: { // OAuthCustomParameters
|
|
323
323
|
* // "<keys>": "STRING_VALUE",
|
|
324
324
|
* // },
|
|
325
|
-
* // grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE",
|
|
325
|
+
* // grantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "TOKEN_EXCHANGE",
|
|
326
326
|
* // defaultReturnUrl: "STRING_VALUE",
|
|
327
327
|
* // },
|
|
328
328
|
* // },
|