@aws-sdk/client-bedrock-agentcore-control 3.1037.0 → 3.1039.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 +217 -2
- package/dist-cjs/schemas/schemas_0.js +529 -98
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/CreateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/CreateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/DeleteGatewayRuleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/GetConfigurationBundleVersionCommand.js +16 -0
- package/dist-es/commands/GetGatewayRuleCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundleVersionsCommand.js +16 -0
- package/dist-es/commands/ListConfigurationBundlesCommand.js +16 -0
- package/dist-es/commands/ListGatewayRulesCommand.js +16 -0
- package/dist-es/commands/UpdateConfigurationBundleCommand.js +16 -0
- package/dist-es/commands/UpdateGatewayRuleCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +30 -0
- package/dist-es/pagination/ListConfigurationBundleVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListConfigurationBundlesPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +516 -86
- package/dist-es/waiters/waitForMemoryCreated.js +1 -1
- package/dist-es/waiters/waitForPolicyActive.js +1 -1
- package/dist-es/waiters/waitForPolicyDeleted.js +2 -2
- package/dist-es/waiters/waitForPolicyEngineActive.js +1 -1
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +2 -2
- package/dist-types/BedrockAgentCoreControl.d.ts +113 -6
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +111 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/CreateGatewayRuleCommand.d.ts +232 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConfigurationBundleCommand.d.ts +93 -0
- package/dist-types/commands/DeleteGatewayRuleCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +112 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +2 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayRuleCommand.d.ts +162 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundleVersionsCommand.d.ts +115 -0
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +95 -0
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayRulesCommand.d.ts +168 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +2 -2
- package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -2
- package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGatewayRuleCommand.d.ts +230 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +17 -4
- package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +70 -0
- package/dist-types/models/models_0.d.ts +2866 -2901
- package/dist-types/models/models_1.d.ts +1406 -4
- package/dist-types/pagination/ListConfigurationBundleVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConfigurationBundlesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +61 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +233 -6
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConfigurationBundleVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetGatewayRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConfigurationBundleVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationBundlesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListGatewayRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConfigurationBundleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +405 -571
- package/dist-types/ts3.4/models/models_1.d.ts +592 -7
- package/dist-types/ts3.4/pagination/ListConfigurationBundleVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConfigurationBundlesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRulesPaginator.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 +61 -0
- package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +10 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +12 -3
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -3
- package/dist-types/waiters/waitForMemoryCreated.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +4 -3
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +5 -3
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +4 -3
- package/package.json +8 -8
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ClaimMatchOperatorType,
|
|
13
13
|
CodeInterpreterNetworkMode,
|
|
14
14
|
CodeInterpreterStatus,
|
|
15
|
+
ConfigurationBundleStatus,
|
|
15
16
|
ContentLevel,
|
|
16
17
|
ContentType,
|
|
17
18
|
CredentialProviderType,
|
|
@@ -23,20 +24,18 @@ import {
|
|
|
23
24
|
GatewayInterceptionPoint,
|
|
24
25
|
GatewayPolicyEngineMode,
|
|
25
26
|
GatewayProtocolType,
|
|
27
|
+
GatewayRuleStatus,
|
|
26
28
|
GatewayStatus,
|
|
27
29
|
HarnessStatus,
|
|
28
30
|
HarnessToolType,
|
|
29
31
|
HarnessTruncationStrategy,
|
|
30
32
|
InboundTokenClaimValueType,
|
|
33
|
+
IncludedData,
|
|
31
34
|
KeyType,
|
|
32
35
|
ListingMode,
|
|
33
|
-
MemoryStatus,
|
|
34
|
-
MemoryStrategyStatus,
|
|
35
|
-
MemoryStrategyType,
|
|
36
|
-
MemoryView,
|
|
37
36
|
NetworkMode,
|
|
38
37
|
OAuthGrantType,
|
|
39
|
-
|
|
38
|
+
PrincipalMatchOperator,
|
|
40
39
|
ResourceType,
|
|
41
40
|
RestApiMethod,
|
|
42
41
|
SearchType,
|
|
@@ -50,6 +49,115 @@ export interface AgentCardDefinition {
|
|
|
50
49
|
export interface A2aDescriptor {
|
|
51
50
|
agentCard?: AgentCardDefinition | undefined;
|
|
52
51
|
}
|
|
52
|
+
export interface StaticOverride {
|
|
53
|
+
bundleArn: string | undefined;
|
|
54
|
+
bundleVersion: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface ConfigurationBundleReference {
|
|
57
|
+
bundleArn: string | undefined;
|
|
58
|
+
bundleVersion: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface TrafficSplitEntry {
|
|
61
|
+
name: string | undefined;
|
|
62
|
+
weight: number | undefined;
|
|
63
|
+
configurationBundle: ConfigurationBundleReference | undefined;
|
|
64
|
+
description?: string | undefined;
|
|
65
|
+
metadata?: Record<string, string> | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface WeightedOverride {
|
|
68
|
+
trafficSplit: TrafficSplitEntry[] | undefined;
|
|
69
|
+
}
|
|
70
|
+
export type ConfigurationBundleAction =
|
|
71
|
+
| ConfigurationBundleAction.StaticOverrideMember
|
|
72
|
+
| ConfigurationBundleAction.WeightedOverrideMember
|
|
73
|
+
| ConfigurationBundleAction.$UnknownMember;
|
|
74
|
+
export declare namespace ConfigurationBundleAction {
|
|
75
|
+
interface StaticOverrideMember {
|
|
76
|
+
staticOverride: StaticOverride;
|
|
77
|
+
weightedOverride?: never;
|
|
78
|
+
$unknown?: never;
|
|
79
|
+
}
|
|
80
|
+
interface WeightedOverrideMember {
|
|
81
|
+
staticOverride?: never;
|
|
82
|
+
weightedOverride: WeightedOverride;
|
|
83
|
+
$unknown?: never;
|
|
84
|
+
}
|
|
85
|
+
interface $UnknownMember {
|
|
86
|
+
staticOverride?: never;
|
|
87
|
+
weightedOverride?: never;
|
|
88
|
+
$unknown: [string, any];
|
|
89
|
+
}
|
|
90
|
+
interface Visitor<T> {
|
|
91
|
+
staticOverride: (value: StaticOverride) => T;
|
|
92
|
+
weightedOverride: (value: WeightedOverride) => T;
|
|
93
|
+
_: (name: string, value: any) => T;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
export interface StaticRoute {
|
|
97
|
+
targetName: string | undefined;
|
|
98
|
+
}
|
|
99
|
+
export interface TargetTrafficSplitEntry {
|
|
100
|
+
name: string | undefined;
|
|
101
|
+
weight: number | undefined;
|
|
102
|
+
targetName: string | undefined;
|
|
103
|
+
description?: string | undefined;
|
|
104
|
+
metadata?: Record<string, string> | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface WeightedRoute {
|
|
107
|
+
trafficSplit: TargetTrafficSplitEntry[] | undefined;
|
|
108
|
+
}
|
|
109
|
+
export type RouteToTargetAction =
|
|
110
|
+
| RouteToTargetAction.StaticRouteMember
|
|
111
|
+
| RouteToTargetAction.WeightedRouteMember
|
|
112
|
+
| RouteToTargetAction.$UnknownMember;
|
|
113
|
+
export declare namespace RouteToTargetAction {
|
|
114
|
+
interface StaticRouteMember {
|
|
115
|
+
staticRoute: StaticRoute;
|
|
116
|
+
weightedRoute?: never;
|
|
117
|
+
$unknown?: never;
|
|
118
|
+
}
|
|
119
|
+
interface WeightedRouteMember {
|
|
120
|
+
staticRoute?: never;
|
|
121
|
+
weightedRoute: WeightedRoute;
|
|
122
|
+
$unknown?: never;
|
|
123
|
+
}
|
|
124
|
+
interface $UnknownMember {
|
|
125
|
+
staticRoute?: never;
|
|
126
|
+
weightedRoute?: never;
|
|
127
|
+
$unknown: [string, any];
|
|
128
|
+
}
|
|
129
|
+
interface Visitor<T> {
|
|
130
|
+
staticRoute: (value: StaticRoute) => T;
|
|
131
|
+
weightedRoute: (value: WeightedRoute) => T;
|
|
132
|
+
_: (name: string, value: any) => T;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
export type Action =
|
|
136
|
+
| Action.ConfigurationBundleMember
|
|
137
|
+
| Action.RouteToTargetMember
|
|
138
|
+
| Action.$UnknownMember;
|
|
139
|
+
export declare namespace Action {
|
|
140
|
+
interface ConfigurationBundleMember {
|
|
141
|
+
configurationBundle: ConfigurationBundleAction;
|
|
142
|
+
routeToTarget?: never;
|
|
143
|
+
$unknown?: never;
|
|
144
|
+
}
|
|
145
|
+
interface RouteToTargetMember {
|
|
146
|
+
configurationBundle?: never;
|
|
147
|
+
routeToTarget: RouteToTargetAction;
|
|
148
|
+
$unknown?: never;
|
|
149
|
+
}
|
|
150
|
+
interface $UnknownMember {
|
|
151
|
+
configurationBundle?: never;
|
|
152
|
+
routeToTarget?: never;
|
|
153
|
+
$unknown: [string, any];
|
|
154
|
+
}
|
|
155
|
+
interface Visitor<T> {
|
|
156
|
+
configurationBundle: (value: ConfigurationBundleAction) => T;
|
|
157
|
+
routeToTarget: (value: RouteToTargetAction) => T;
|
|
158
|
+
_: (name: string, value: any) => T;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
53
161
|
export interface CreateAgentRuntimeEndpointRequest {
|
|
54
162
|
agentRuntimeId: string | undefined;
|
|
55
163
|
name: string | undefined;
|
|
@@ -776,6 +884,125 @@ export interface ListCodeInterpretersResponse {
|
|
|
776
884
|
codeInterpreterSummaries: CodeInterpreterSummary[] | undefined;
|
|
777
885
|
nextToken?: string | undefined;
|
|
778
886
|
}
|
|
887
|
+
export interface ComponentConfiguration {
|
|
888
|
+
configuration: __DocumentType | undefined;
|
|
889
|
+
}
|
|
890
|
+
export interface VersionCreatedBySource {
|
|
891
|
+
name: string | undefined;
|
|
892
|
+
arn?: string | undefined;
|
|
893
|
+
}
|
|
894
|
+
export interface CreateConfigurationBundleRequest {
|
|
895
|
+
clientToken?: string | undefined;
|
|
896
|
+
bundleName: string | undefined;
|
|
897
|
+
description?: string | undefined;
|
|
898
|
+
components: Record<string, ComponentConfiguration> | undefined;
|
|
899
|
+
branchName?: string | undefined;
|
|
900
|
+
commitMessage?: string | undefined;
|
|
901
|
+
createdBy?: VersionCreatedBySource | undefined;
|
|
902
|
+
tags?: Record<string, string> | undefined;
|
|
903
|
+
}
|
|
904
|
+
export interface CreateConfigurationBundleResponse {
|
|
905
|
+
bundleArn: string | undefined;
|
|
906
|
+
bundleId: string | undefined;
|
|
907
|
+
versionId: string | undefined;
|
|
908
|
+
createdAt: Date | undefined;
|
|
909
|
+
}
|
|
910
|
+
export interface DeleteConfigurationBundleRequest {
|
|
911
|
+
bundleId: string | undefined;
|
|
912
|
+
}
|
|
913
|
+
export interface DeleteConfigurationBundleResponse {
|
|
914
|
+
bundleId: string | undefined;
|
|
915
|
+
status: ConfigurationBundleStatus | undefined;
|
|
916
|
+
}
|
|
917
|
+
export interface GetConfigurationBundleRequest {
|
|
918
|
+
bundleId: string | undefined;
|
|
919
|
+
branchName?: string | undefined;
|
|
920
|
+
}
|
|
921
|
+
export interface VersionLineageMetadata {
|
|
922
|
+
parentVersionIds?: string[] | undefined;
|
|
923
|
+
branchName?: string | undefined;
|
|
924
|
+
createdBy?: VersionCreatedBySource | undefined;
|
|
925
|
+
commitMessage?: string | undefined;
|
|
926
|
+
}
|
|
927
|
+
export interface GetConfigurationBundleResponse {
|
|
928
|
+
bundleArn: string | undefined;
|
|
929
|
+
bundleId: string | undefined;
|
|
930
|
+
bundleName: string | undefined;
|
|
931
|
+
description?: string | undefined;
|
|
932
|
+
versionId: string | undefined;
|
|
933
|
+
components: Record<string, ComponentConfiguration> | undefined;
|
|
934
|
+
lineageMetadata?: VersionLineageMetadata | undefined;
|
|
935
|
+
createdAt: Date | undefined;
|
|
936
|
+
updatedAt: Date | undefined;
|
|
937
|
+
}
|
|
938
|
+
export interface GetConfigurationBundleVersionRequest {
|
|
939
|
+
bundleId: string | undefined;
|
|
940
|
+
versionId: string | undefined;
|
|
941
|
+
}
|
|
942
|
+
export interface GetConfigurationBundleVersionResponse {
|
|
943
|
+
bundleArn: string | undefined;
|
|
944
|
+
bundleId: string | undefined;
|
|
945
|
+
bundleName: string | undefined;
|
|
946
|
+
description?: string | undefined;
|
|
947
|
+
versionId: string | undefined;
|
|
948
|
+
components: Record<string, ComponentConfiguration> | undefined;
|
|
949
|
+
lineageMetadata?: VersionLineageMetadata | undefined;
|
|
950
|
+
createdAt: Date | undefined;
|
|
951
|
+
versionCreatedAt: Date | undefined;
|
|
952
|
+
}
|
|
953
|
+
export interface ListConfigurationBundlesRequest {
|
|
954
|
+
nextToken?: string | undefined;
|
|
955
|
+
maxResults?: number | undefined;
|
|
956
|
+
}
|
|
957
|
+
export interface ConfigurationBundleSummary {
|
|
958
|
+
bundleArn: string | undefined;
|
|
959
|
+
bundleId: string | undefined;
|
|
960
|
+
bundleName: string | undefined;
|
|
961
|
+
description?: string | undefined;
|
|
962
|
+
}
|
|
963
|
+
export interface ListConfigurationBundlesResponse {
|
|
964
|
+
bundles: ConfigurationBundleSummary[] | undefined;
|
|
965
|
+
nextToken?: string | undefined;
|
|
966
|
+
}
|
|
967
|
+
export interface VersionFilter {
|
|
968
|
+
branchName?: string | undefined;
|
|
969
|
+
createdByName?: string | undefined;
|
|
970
|
+
latestPerBranch?: boolean | undefined;
|
|
971
|
+
}
|
|
972
|
+
export interface ListConfigurationBundleVersionsRequest {
|
|
973
|
+
bundleId: string | undefined;
|
|
974
|
+
nextToken?: string | undefined;
|
|
975
|
+
maxResults?: number | undefined;
|
|
976
|
+
filter?: VersionFilter | undefined;
|
|
977
|
+
}
|
|
978
|
+
export interface ConfigurationBundleVersionSummary {
|
|
979
|
+
bundleArn: string | undefined;
|
|
980
|
+
bundleId: string | undefined;
|
|
981
|
+
versionId: string | undefined;
|
|
982
|
+
lineageMetadata?: VersionLineageMetadata | undefined;
|
|
983
|
+
versionCreatedAt: Date | undefined;
|
|
984
|
+
}
|
|
985
|
+
export interface ListConfigurationBundleVersionsResponse {
|
|
986
|
+
versions: ConfigurationBundleVersionSummary[] | undefined;
|
|
987
|
+
nextToken?: string | undefined;
|
|
988
|
+
}
|
|
989
|
+
export interface UpdateConfigurationBundleRequest {
|
|
990
|
+
clientToken?: string | undefined;
|
|
991
|
+
bundleId: string | undefined;
|
|
992
|
+
bundleName?: string | undefined;
|
|
993
|
+
description?: string | undefined;
|
|
994
|
+
components?: Record<string, ComponentConfiguration> | undefined;
|
|
995
|
+
parentVersionIds?: string[] | undefined;
|
|
996
|
+
branchName?: string | undefined;
|
|
997
|
+
commitMessage?: string | undefined;
|
|
998
|
+
createdBy?: VersionCreatedBySource | undefined;
|
|
999
|
+
}
|
|
1000
|
+
export interface UpdateConfigurationBundleResponse {
|
|
1001
|
+
bundleArn: string | undefined;
|
|
1002
|
+
bundleId: string | undefined;
|
|
1003
|
+
versionId: string | undefined;
|
|
1004
|
+
updatedAt: Date | undefined;
|
|
1005
|
+
}
|
|
779
1006
|
export interface DeleteResourcePolicyRequest {
|
|
780
1007
|
resourceArn: string | undefined;
|
|
781
1008
|
}
|
|
@@ -901,6 +1128,7 @@ export interface CreateEvaluatorRequest {
|
|
|
901
1128
|
description?: string | undefined;
|
|
902
1129
|
evaluatorConfig: EvaluatorConfig | undefined;
|
|
903
1130
|
level: EvaluatorLevel | undefined;
|
|
1131
|
+
kmsKeyArn?: string | undefined;
|
|
904
1132
|
tags?: Record<string, string> | undefined;
|
|
905
1133
|
}
|
|
906
1134
|
export interface CreateEvaluatorResponse {
|
|
@@ -919,6 +1147,7 @@ export interface DeleteEvaluatorResponse {
|
|
|
919
1147
|
}
|
|
920
1148
|
export interface GetEvaluatorRequest {
|
|
921
1149
|
evaluatorId: string | undefined;
|
|
1150
|
+
includedData?: IncludedData | undefined;
|
|
922
1151
|
}
|
|
923
1152
|
export interface GetEvaluatorResponse {
|
|
924
1153
|
evaluatorArn: string | undefined;
|
|
@@ -931,6 +1160,7 @@ export interface GetEvaluatorResponse {
|
|
|
931
1160
|
createdAt: Date | undefined;
|
|
932
1161
|
updatedAt: Date | undefined;
|
|
933
1162
|
lockedForModification?: boolean | undefined;
|
|
1163
|
+
kmsKeyArn?: string | undefined;
|
|
934
1164
|
}
|
|
935
1165
|
export interface ListEvaluatorsRequest {
|
|
936
1166
|
nextToken?: string | undefined;
|
|
@@ -947,6 +1177,7 @@ export interface EvaluatorSummary {
|
|
|
947
1177
|
createdAt: Date | undefined;
|
|
948
1178
|
updatedAt: Date | undefined;
|
|
949
1179
|
lockedForModification?: boolean | undefined;
|
|
1180
|
+
kmsKeyArn?: string | undefined;
|
|
950
1181
|
}
|
|
951
1182
|
export interface ListEvaluatorsResponse {
|
|
952
1183
|
evaluators: EvaluatorSummary[] | undefined;
|
|
@@ -958,6 +1189,7 @@ export interface UpdateEvaluatorRequest {
|
|
|
958
1189
|
description?: string | undefined;
|
|
959
1190
|
evaluatorConfig?: EvaluatorConfig | undefined;
|
|
960
1191
|
level?: EvaluatorLevel | undefined;
|
|
1192
|
+
kmsKeyArn?: string | undefined;
|
|
961
1193
|
}
|
|
962
1194
|
export interface UpdateEvaluatorResponse {
|
|
963
1195
|
evaluatorArn: string | undefined;
|
|
@@ -1024,7 +1256,7 @@ export interface CreateGatewayRequest {
|
|
|
1024
1256
|
description?: string | undefined;
|
|
1025
1257
|
clientToken?: string | undefined;
|
|
1026
1258
|
roleArn: string | undefined;
|
|
1027
|
-
protocolType
|
|
1259
|
+
protocolType?: GatewayProtocolType | undefined;
|
|
1028
1260
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
1029
1261
|
authorizerType: AuthorizerType | undefined;
|
|
1030
1262
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
@@ -1045,7 +1277,7 @@ export interface CreateGatewayResponse {
|
|
|
1045
1277
|
name: string | undefined;
|
|
1046
1278
|
description?: string | undefined;
|
|
1047
1279
|
roleArn?: string | undefined;
|
|
1048
|
-
protocolType
|
|
1280
|
+
protocolType?: GatewayProtocolType | undefined;
|
|
1049
1281
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
1050
1282
|
authorizerType: AuthorizerType | undefined;
|
|
1051
1283
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
@@ -1077,7 +1309,7 @@ export interface GetGatewayResponse {
|
|
|
1077
1309
|
name: string | undefined;
|
|
1078
1310
|
description?: string | undefined;
|
|
1079
1311
|
roleArn?: string | undefined;
|
|
1080
|
-
protocolType
|
|
1312
|
+
protocolType?: GatewayProtocolType | undefined;
|
|
1081
1313
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
1082
1314
|
authorizerType: AuthorizerType | undefined;
|
|
1083
1315
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
@@ -1099,7 +1331,7 @@ export interface GatewaySummary {
|
|
|
1099
1331
|
createdAt: Date | undefined;
|
|
1100
1332
|
updatedAt: Date | undefined;
|
|
1101
1333
|
authorizerType: AuthorizerType | undefined;
|
|
1102
|
-
protocolType
|
|
1334
|
+
protocolType?: GatewayProtocolType | undefined;
|
|
1103
1335
|
}
|
|
1104
1336
|
export interface ListGatewaysResponse {
|
|
1105
1337
|
items: GatewaySummary[] | undefined;
|
|
@@ -1110,7 +1342,7 @@ export interface UpdateGatewayRequest {
|
|
|
1110
1342
|
name: string | undefined;
|
|
1111
1343
|
description?: string | undefined;
|
|
1112
1344
|
roleArn: string | undefined;
|
|
1113
|
-
protocolType
|
|
1345
|
+
protocolType?: GatewayProtocolType | undefined;
|
|
1114
1346
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
1115
1347
|
authorizerType: AuthorizerType | undefined;
|
|
1116
1348
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
@@ -1130,7 +1362,7 @@ export interface UpdateGatewayResponse {
|
|
|
1130
1362
|
name: string | undefined;
|
|
1131
1363
|
description?: string | undefined;
|
|
1132
1364
|
roleArn?: string | undefined;
|
|
1133
|
-
protocolType
|
|
1365
|
+
protocolType?: GatewayProtocolType | undefined;
|
|
1134
1366
|
protocolConfiguration?: GatewayProtocolConfiguration | undefined;
|
|
1135
1367
|
authorizerType: AuthorizerType | undefined;
|
|
1136
1368
|
authorizerConfiguration?: AuthorizerConfiguration | undefined;
|
|
@@ -1140,6 +1372,146 @@ export interface UpdateGatewayResponse {
|
|
|
1140
1372
|
workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
|
|
1141
1373
|
exceptionLevel?: ExceptionLevel | undefined;
|
|
1142
1374
|
}
|
|
1375
|
+
export interface MatchPaths {
|
|
1376
|
+
anyOf: string[] | undefined;
|
|
1377
|
+
}
|
|
1378
|
+
export interface IamPrincipal {
|
|
1379
|
+
arn: string | undefined;
|
|
1380
|
+
operator?: PrincipalMatchOperator | undefined;
|
|
1381
|
+
}
|
|
1382
|
+
export type MatchPrincipalEntry =
|
|
1383
|
+
| MatchPrincipalEntry.IamPrincipalMember
|
|
1384
|
+
| MatchPrincipalEntry.$UnknownMember;
|
|
1385
|
+
export declare namespace MatchPrincipalEntry {
|
|
1386
|
+
interface IamPrincipalMember {
|
|
1387
|
+
iamPrincipal: IamPrincipal;
|
|
1388
|
+
$unknown?: never;
|
|
1389
|
+
}
|
|
1390
|
+
interface $UnknownMember {
|
|
1391
|
+
iamPrincipal?: never;
|
|
1392
|
+
$unknown: [string, any];
|
|
1393
|
+
}
|
|
1394
|
+
interface Visitor<T> {
|
|
1395
|
+
iamPrincipal: (value: IamPrincipal) => T;
|
|
1396
|
+
_: (name: string, value: any) => T;
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
export interface MatchPrincipals {
|
|
1400
|
+
anyOf: MatchPrincipalEntry[] | undefined;
|
|
1401
|
+
}
|
|
1402
|
+
export type Condition =
|
|
1403
|
+
| Condition.MatchPathsMember
|
|
1404
|
+
| Condition.MatchPrincipalsMember
|
|
1405
|
+
| Condition.$UnknownMember;
|
|
1406
|
+
export declare namespace Condition {
|
|
1407
|
+
interface MatchPrincipalsMember {
|
|
1408
|
+
matchPrincipals: MatchPrincipals;
|
|
1409
|
+
matchPaths?: never;
|
|
1410
|
+
$unknown?: never;
|
|
1411
|
+
}
|
|
1412
|
+
interface MatchPathsMember {
|
|
1413
|
+
matchPrincipals?: never;
|
|
1414
|
+
matchPaths: MatchPaths;
|
|
1415
|
+
$unknown?: never;
|
|
1416
|
+
}
|
|
1417
|
+
interface $UnknownMember {
|
|
1418
|
+
matchPrincipals?: never;
|
|
1419
|
+
matchPaths?: never;
|
|
1420
|
+
$unknown: [string, any];
|
|
1421
|
+
}
|
|
1422
|
+
interface Visitor<T> {
|
|
1423
|
+
matchPrincipals: (value: MatchPrincipals) => T;
|
|
1424
|
+
matchPaths: (value: MatchPaths) => T;
|
|
1425
|
+
_: (name: string, value: any) => T;
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
export interface CreateGatewayRuleRequest {
|
|
1429
|
+
gatewayIdentifier: string | undefined;
|
|
1430
|
+
clientToken?: string | undefined;
|
|
1431
|
+
priority: number | undefined;
|
|
1432
|
+
conditions?: Condition[] | undefined;
|
|
1433
|
+
actions: Action[] | undefined;
|
|
1434
|
+
description?: string | undefined;
|
|
1435
|
+
}
|
|
1436
|
+
export interface SystemManagedBlock {
|
|
1437
|
+
managedBy: string | undefined;
|
|
1438
|
+
}
|
|
1439
|
+
export interface CreateGatewayRuleResponse {
|
|
1440
|
+
ruleId: string | undefined;
|
|
1441
|
+
gatewayArn: string | undefined;
|
|
1442
|
+
priority: number | undefined;
|
|
1443
|
+
conditions?: Condition[] | undefined;
|
|
1444
|
+
actions: Action[] | undefined;
|
|
1445
|
+
description?: string | undefined;
|
|
1446
|
+
createdAt: Date | undefined;
|
|
1447
|
+
status: GatewayRuleStatus | undefined;
|
|
1448
|
+
system?: SystemManagedBlock | undefined;
|
|
1449
|
+
}
|
|
1450
|
+
export interface DeleteGatewayRuleRequest {
|
|
1451
|
+
gatewayIdentifier: string | undefined;
|
|
1452
|
+
ruleId: string | undefined;
|
|
1453
|
+
}
|
|
1454
|
+
export interface DeleteGatewayRuleResponse {
|
|
1455
|
+
ruleId: string | undefined;
|
|
1456
|
+
status: GatewayRuleStatus | undefined;
|
|
1457
|
+
}
|
|
1458
|
+
export interface GetGatewayRuleRequest {
|
|
1459
|
+
gatewayIdentifier: string | undefined;
|
|
1460
|
+
ruleId: string | undefined;
|
|
1461
|
+
}
|
|
1462
|
+
export interface GetGatewayRuleResponse {
|
|
1463
|
+
ruleId: string | undefined;
|
|
1464
|
+
gatewayArn: string | undefined;
|
|
1465
|
+
priority: number | undefined;
|
|
1466
|
+
conditions?: Condition[] | undefined;
|
|
1467
|
+
actions: Action[] | undefined;
|
|
1468
|
+
description?: string | undefined;
|
|
1469
|
+
createdAt: Date | undefined;
|
|
1470
|
+
status: GatewayRuleStatus | undefined;
|
|
1471
|
+
system?: SystemManagedBlock | undefined;
|
|
1472
|
+
updatedAt?: Date | undefined;
|
|
1473
|
+
}
|
|
1474
|
+
export interface ListGatewayRulesRequest {
|
|
1475
|
+
gatewayIdentifier: string | undefined;
|
|
1476
|
+
maxResults?: number | undefined;
|
|
1477
|
+
nextToken?: string | undefined;
|
|
1478
|
+
}
|
|
1479
|
+
export interface GatewayRuleDetail {
|
|
1480
|
+
ruleId: string | undefined;
|
|
1481
|
+
gatewayArn: string | undefined;
|
|
1482
|
+
priority: number | undefined;
|
|
1483
|
+
conditions?: Condition[] | undefined;
|
|
1484
|
+
actions: Action[] | undefined;
|
|
1485
|
+
description?: string | undefined;
|
|
1486
|
+
createdAt: Date | undefined;
|
|
1487
|
+
status: GatewayRuleStatus | undefined;
|
|
1488
|
+
system?: SystemManagedBlock | undefined;
|
|
1489
|
+
updatedAt?: Date | undefined;
|
|
1490
|
+
}
|
|
1491
|
+
export interface ListGatewayRulesResponse {
|
|
1492
|
+
gatewayRules: GatewayRuleDetail[] | undefined;
|
|
1493
|
+
nextToken?: string | undefined;
|
|
1494
|
+
}
|
|
1495
|
+
export interface UpdateGatewayRuleRequest {
|
|
1496
|
+
gatewayIdentifier: string | undefined;
|
|
1497
|
+
ruleId: string | undefined;
|
|
1498
|
+
priority?: number | undefined;
|
|
1499
|
+
conditions?: Condition[] | undefined;
|
|
1500
|
+
actions?: Action[] | undefined;
|
|
1501
|
+
description?: string | undefined;
|
|
1502
|
+
}
|
|
1503
|
+
export interface UpdateGatewayRuleResponse {
|
|
1504
|
+
ruleId: string | undefined;
|
|
1505
|
+
gatewayArn: string | undefined;
|
|
1506
|
+
priority: number | undefined;
|
|
1507
|
+
conditions?: Condition[] | undefined;
|
|
1508
|
+
actions: Action[] | undefined;
|
|
1509
|
+
description?: string | undefined;
|
|
1510
|
+
createdAt: Date | undefined;
|
|
1511
|
+
status: GatewayRuleStatus | undefined;
|
|
1512
|
+
system?: SystemManagedBlock | undefined;
|
|
1513
|
+
updatedAt?: Date | undefined;
|
|
1514
|
+
}
|
|
1143
1515
|
export interface GatewayApiKeyCredentialProvider {
|
|
1144
1516
|
providerArn: string | undefined;
|
|
1145
1517
|
credentialParameterName?: string | undefined;
|
|
@@ -1203,6 +1575,27 @@ export interface MetadataConfiguration {
|
|
|
1203
1575
|
allowedQueryParameters?: string[] | undefined;
|
|
1204
1576
|
allowedResponseHeaders?: string[] | undefined;
|
|
1205
1577
|
}
|
|
1578
|
+
export interface RuntimeTargetConfiguration {
|
|
1579
|
+
arn: string | undefined;
|
|
1580
|
+
qualifier?: string | undefined;
|
|
1581
|
+
}
|
|
1582
|
+
export type HttpTargetConfiguration =
|
|
1583
|
+
| HttpTargetConfiguration.AgentcoreRuntimeMember
|
|
1584
|
+
| HttpTargetConfiguration.$UnknownMember;
|
|
1585
|
+
export declare namespace HttpTargetConfiguration {
|
|
1586
|
+
interface AgentcoreRuntimeMember {
|
|
1587
|
+
agentcoreRuntime: RuntimeTargetConfiguration;
|
|
1588
|
+
$unknown?: never;
|
|
1589
|
+
}
|
|
1590
|
+
interface $UnknownMember {
|
|
1591
|
+
agentcoreRuntime?: never;
|
|
1592
|
+
$unknown: [string, any];
|
|
1593
|
+
}
|
|
1594
|
+
interface Visitor<T> {
|
|
1595
|
+
agentcoreRuntime: (value: RuntimeTargetConfiguration) => T;
|
|
1596
|
+
_: (name: string, value: any) => T;
|
|
1597
|
+
}
|
|
1598
|
+
}
|
|
1206
1599
|
export interface ApiGatewayToolFilter {
|
|
1207
1600
|
filterPath: string | undefined;
|
|
1208
1601
|
methods: RestApiMethod[] | undefined;
|
|
@@ -1255,8 +1648,8 @@ export declare namespace McpToolSchemaConfiguration {
|
|
|
1255
1648
|
export interface McpServerTargetConfiguration {
|
|
1256
1649
|
endpoint: string | undefined;
|
|
1257
1650
|
mcpToolSchema?: McpToolSchemaConfiguration | undefined;
|
|
1258
|
-
resourcePriority?: number | undefined;
|
|
1259
1651
|
listingMode?: ListingMode | undefined;
|
|
1652
|
+
resourcePriority?: number | undefined;
|
|
1260
1653
|
}
|
|
1261
1654
|
export type ApiSchemaConfiguration =
|
|
1262
1655
|
| ApiSchemaConfiguration.InlinePayloadMember
|
|
@@ -2219,562 +2612,3 @@ export declare namespace CustomConsolidationConfiguration {
|
|
|
2219
2612
|
_: (name: string, value: any) => T;
|
|
2220
2613
|
}
|
|
2221
2614
|
}
|
|
2222
|
-
export type ConsolidationConfiguration =
|
|
2223
|
-
| ConsolidationConfiguration.CustomConsolidationConfigurationMember
|
|
2224
|
-
| ConsolidationConfiguration.$UnknownMember;
|
|
2225
|
-
export declare namespace ConsolidationConfiguration {
|
|
2226
|
-
interface CustomConsolidationConfigurationMember {
|
|
2227
|
-
customConsolidationConfiguration: CustomConsolidationConfiguration;
|
|
2228
|
-
$unknown?: never;
|
|
2229
|
-
}
|
|
2230
|
-
interface $UnknownMember {
|
|
2231
|
-
customConsolidationConfiguration?: never;
|
|
2232
|
-
$unknown: [string, any];
|
|
2233
|
-
}
|
|
2234
|
-
interface Visitor<T> {
|
|
2235
|
-
customConsolidationConfiguration: (
|
|
2236
|
-
value: CustomConsolidationConfiguration
|
|
2237
|
-
) => T;
|
|
2238
|
-
_: (name: string, value: any) => T;
|
|
2239
|
-
}
|
|
2240
|
-
}
|
|
2241
|
-
export interface EpisodicExtractionOverride {
|
|
2242
|
-
appendToPrompt: string | undefined;
|
|
2243
|
-
modelId: string | undefined;
|
|
2244
|
-
}
|
|
2245
|
-
export interface SemanticExtractionOverride {
|
|
2246
|
-
appendToPrompt: string | undefined;
|
|
2247
|
-
modelId: string | undefined;
|
|
2248
|
-
}
|
|
2249
|
-
export interface UserPreferenceExtractionOverride {
|
|
2250
|
-
appendToPrompt: string | undefined;
|
|
2251
|
-
modelId: string | undefined;
|
|
2252
|
-
}
|
|
2253
|
-
export type CustomExtractionConfiguration =
|
|
2254
|
-
| CustomExtractionConfiguration.EpisodicExtractionOverrideMember
|
|
2255
|
-
| CustomExtractionConfiguration.SemanticExtractionOverrideMember
|
|
2256
|
-
| CustomExtractionConfiguration.UserPreferenceExtractionOverrideMember
|
|
2257
|
-
| CustomExtractionConfiguration.$UnknownMember;
|
|
2258
|
-
export declare namespace CustomExtractionConfiguration {
|
|
2259
|
-
interface SemanticExtractionOverrideMember {
|
|
2260
|
-
semanticExtractionOverride: SemanticExtractionOverride;
|
|
2261
|
-
userPreferenceExtractionOverride?: never;
|
|
2262
|
-
episodicExtractionOverride?: never;
|
|
2263
|
-
$unknown?: never;
|
|
2264
|
-
}
|
|
2265
|
-
interface UserPreferenceExtractionOverrideMember {
|
|
2266
|
-
semanticExtractionOverride?: never;
|
|
2267
|
-
userPreferenceExtractionOverride: UserPreferenceExtractionOverride;
|
|
2268
|
-
episodicExtractionOverride?: never;
|
|
2269
|
-
$unknown?: never;
|
|
2270
|
-
}
|
|
2271
|
-
interface EpisodicExtractionOverrideMember {
|
|
2272
|
-
semanticExtractionOverride?: never;
|
|
2273
|
-
userPreferenceExtractionOverride?: never;
|
|
2274
|
-
episodicExtractionOverride: EpisodicExtractionOverride;
|
|
2275
|
-
$unknown?: never;
|
|
2276
|
-
}
|
|
2277
|
-
interface $UnknownMember {
|
|
2278
|
-
semanticExtractionOverride?: never;
|
|
2279
|
-
userPreferenceExtractionOverride?: never;
|
|
2280
|
-
episodicExtractionOverride?: never;
|
|
2281
|
-
$unknown: [string, any];
|
|
2282
|
-
}
|
|
2283
|
-
interface Visitor<T> {
|
|
2284
|
-
semanticExtractionOverride: (value: SemanticExtractionOverride) => T;
|
|
2285
|
-
userPreferenceExtractionOverride: (
|
|
2286
|
-
value: UserPreferenceExtractionOverride
|
|
2287
|
-
) => T;
|
|
2288
|
-
episodicExtractionOverride: (value: EpisodicExtractionOverride) => T;
|
|
2289
|
-
_: (name: string, value: any) => T;
|
|
2290
|
-
}
|
|
2291
|
-
}
|
|
2292
|
-
export type ExtractionConfiguration =
|
|
2293
|
-
| ExtractionConfiguration.CustomExtractionConfigurationMember
|
|
2294
|
-
| ExtractionConfiguration.$UnknownMember;
|
|
2295
|
-
export declare namespace ExtractionConfiguration {
|
|
2296
|
-
interface CustomExtractionConfigurationMember {
|
|
2297
|
-
customExtractionConfiguration: CustomExtractionConfiguration;
|
|
2298
|
-
$unknown?: never;
|
|
2299
|
-
}
|
|
2300
|
-
interface $UnknownMember {
|
|
2301
|
-
customExtractionConfiguration?: never;
|
|
2302
|
-
$unknown: [string, any];
|
|
2303
|
-
}
|
|
2304
|
-
interface Visitor<T> {
|
|
2305
|
-
customExtractionConfiguration: (value: CustomExtractionConfiguration) => T;
|
|
2306
|
-
_: (name: string, value: any) => T;
|
|
2307
|
-
}
|
|
2308
|
-
}
|
|
2309
|
-
export interface EpisodicReflectionOverride {
|
|
2310
|
-
appendToPrompt: string | undefined;
|
|
2311
|
-
modelId: string | undefined;
|
|
2312
|
-
namespaces?: string[] | undefined;
|
|
2313
|
-
namespaceTemplates?: string[] | undefined;
|
|
2314
|
-
}
|
|
2315
|
-
export type CustomReflectionConfiguration =
|
|
2316
|
-
| CustomReflectionConfiguration.EpisodicReflectionOverrideMember
|
|
2317
|
-
| CustomReflectionConfiguration.$UnknownMember;
|
|
2318
|
-
export declare namespace CustomReflectionConfiguration {
|
|
2319
|
-
interface EpisodicReflectionOverrideMember {
|
|
2320
|
-
episodicReflectionOverride: EpisodicReflectionOverride;
|
|
2321
|
-
$unknown?: never;
|
|
2322
|
-
}
|
|
2323
|
-
interface $UnknownMember {
|
|
2324
|
-
episodicReflectionOverride?: never;
|
|
2325
|
-
$unknown: [string, any];
|
|
2326
|
-
}
|
|
2327
|
-
interface Visitor<T> {
|
|
2328
|
-
episodicReflectionOverride: (value: EpisodicReflectionOverride) => T;
|
|
2329
|
-
_: (name: string, value: any) => T;
|
|
2330
|
-
}
|
|
2331
|
-
}
|
|
2332
|
-
export interface EpisodicReflectionConfiguration {
|
|
2333
|
-
namespaces?: string[] | undefined;
|
|
2334
|
-
namespaceTemplates?: string[] | undefined;
|
|
2335
|
-
}
|
|
2336
|
-
export type ReflectionConfiguration =
|
|
2337
|
-
| ReflectionConfiguration.CustomReflectionConfigurationMember
|
|
2338
|
-
| ReflectionConfiguration.EpisodicReflectionConfigurationMember
|
|
2339
|
-
| ReflectionConfiguration.$UnknownMember;
|
|
2340
|
-
export declare namespace ReflectionConfiguration {
|
|
2341
|
-
interface CustomReflectionConfigurationMember {
|
|
2342
|
-
customReflectionConfiguration: CustomReflectionConfiguration;
|
|
2343
|
-
episodicReflectionConfiguration?: never;
|
|
2344
|
-
$unknown?: never;
|
|
2345
|
-
}
|
|
2346
|
-
interface EpisodicReflectionConfigurationMember {
|
|
2347
|
-
customReflectionConfiguration?: never;
|
|
2348
|
-
episodicReflectionConfiguration: EpisodicReflectionConfiguration;
|
|
2349
|
-
$unknown?: never;
|
|
2350
|
-
}
|
|
2351
|
-
interface $UnknownMember {
|
|
2352
|
-
customReflectionConfiguration?: never;
|
|
2353
|
-
episodicReflectionConfiguration?: never;
|
|
2354
|
-
$unknown: [string, any];
|
|
2355
|
-
}
|
|
2356
|
-
interface Visitor<T> {
|
|
2357
|
-
customReflectionConfiguration: (value: CustomReflectionConfiguration) => T;
|
|
2358
|
-
episodicReflectionConfiguration: (
|
|
2359
|
-
value: EpisodicReflectionConfiguration
|
|
2360
|
-
) => T;
|
|
2361
|
-
_: (name: string, value: any) => T;
|
|
2362
|
-
}
|
|
2363
|
-
}
|
|
2364
|
-
export interface InvocationConfiguration {
|
|
2365
|
-
topicArn: string | undefined;
|
|
2366
|
-
payloadDeliveryBucketName: string | undefined;
|
|
2367
|
-
}
|
|
2368
|
-
export interface MessageBasedTrigger {
|
|
2369
|
-
messageCount?: number | undefined;
|
|
2370
|
-
}
|
|
2371
|
-
export interface TimeBasedTrigger {
|
|
2372
|
-
idleSessionTimeout?: number | undefined;
|
|
2373
|
-
}
|
|
2374
|
-
export interface TokenBasedTrigger {
|
|
2375
|
-
tokenCount?: number | undefined;
|
|
2376
|
-
}
|
|
2377
|
-
export type TriggerCondition =
|
|
2378
|
-
| TriggerCondition.MessageBasedTriggerMember
|
|
2379
|
-
| TriggerCondition.TimeBasedTriggerMember
|
|
2380
|
-
| TriggerCondition.TokenBasedTriggerMember
|
|
2381
|
-
| TriggerCondition.$UnknownMember;
|
|
2382
|
-
export declare namespace TriggerCondition {
|
|
2383
|
-
interface MessageBasedTriggerMember {
|
|
2384
|
-
messageBasedTrigger: MessageBasedTrigger;
|
|
2385
|
-
tokenBasedTrigger?: never;
|
|
2386
|
-
timeBasedTrigger?: never;
|
|
2387
|
-
$unknown?: never;
|
|
2388
|
-
}
|
|
2389
|
-
interface TokenBasedTriggerMember {
|
|
2390
|
-
messageBasedTrigger?: never;
|
|
2391
|
-
tokenBasedTrigger: TokenBasedTrigger;
|
|
2392
|
-
timeBasedTrigger?: never;
|
|
2393
|
-
$unknown?: never;
|
|
2394
|
-
}
|
|
2395
|
-
interface TimeBasedTriggerMember {
|
|
2396
|
-
messageBasedTrigger?: never;
|
|
2397
|
-
tokenBasedTrigger?: never;
|
|
2398
|
-
timeBasedTrigger: TimeBasedTrigger;
|
|
2399
|
-
$unknown?: never;
|
|
2400
|
-
}
|
|
2401
|
-
interface $UnknownMember {
|
|
2402
|
-
messageBasedTrigger?: never;
|
|
2403
|
-
tokenBasedTrigger?: never;
|
|
2404
|
-
timeBasedTrigger?: never;
|
|
2405
|
-
$unknown: [string, any];
|
|
2406
|
-
}
|
|
2407
|
-
interface Visitor<T> {
|
|
2408
|
-
messageBasedTrigger: (value: MessageBasedTrigger) => T;
|
|
2409
|
-
tokenBasedTrigger: (value: TokenBasedTrigger) => T;
|
|
2410
|
-
timeBasedTrigger: (value: TimeBasedTrigger) => T;
|
|
2411
|
-
_: (name: string, value: any) => T;
|
|
2412
|
-
}
|
|
2413
|
-
}
|
|
2414
|
-
export interface SelfManagedConfiguration {
|
|
2415
|
-
triggerConditions: TriggerCondition[] | undefined;
|
|
2416
|
-
invocationConfiguration: InvocationConfiguration | undefined;
|
|
2417
|
-
historicalContextWindowSize: number | undefined;
|
|
2418
|
-
}
|
|
2419
|
-
export interface StrategyConfiguration {
|
|
2420
|
-
type?: OverrideType | undefined;
|
|
2421
|
-
extraction?: ExtractionConfiguration | undefined;
|
|
2422
|
-
consolidation?: ConsolidationConfiguration | undefined;
|
|
2423
|
-
reflection?: ReflectionConfiguration | undefined;
|
|
2424
|
-
selfManagedConfiguration?: SelfManagedConfiguration | undefined;
|
|
2425
|
-
}
|
|
2426
|
-
export interface MemoryStrategy {
|
|
2427
|
-
strategyId: string | undefined;
|
|
2428
|
-
name: string | undefined;
|
|
2429
|
-
description?: string | undefined;
|
|
2430
|
-
configuration?: StrategyConfiguration | undefined;
|
|
2431
|
-
type: MemoryStrategyType | undefined;
|
|
2432
|
-
namespaces: string[] | undefined;
|
|
2433
|
-
namespaceTemplates: string[] | undefined;
|
|
2434
|
-
createdAt?: Date | undefined;
|
|
2435
|
-
updatedAt?: Date | undefined;
|
|
2436
|
-
status?: MemoryStrategyStatus | undefined;
|
|
2437
|
-
}
|
|
2438
|
-
export interface Memory {
|
|
2439
|
-
arn: string | undefined;
|
|
2440
|
-
id: string | undefined;
|
|
2441
|
-
name: string | undefined;
|
|
2442
|
-
description?: string | undefined;
|
|
2443
|
-
encryptionKeyArn?: string | undefined;
|
|
2444
|
-
memoryExecutionRoleArn?: string | undefined;
|
|
2445
|
-
eventExpiryDuration: number | undefined;
|
|
2446
|
-
status: MemoryStatus | undefined;
|
|
2447
|
-
failureReason?: string | undefined;
|
|
2448
|
-
createdAt: Date | undefined;
|
|
2449
|
-
updatedAt: Date | undefined;
|
|
2450
|
-
strategies?: MemoryStrategy[] | undefined;
|
|
2451
|
-
streamDeliveryResources?: StreamDeliveryResources | undefined;
|
|
2452
|
-
}
|
|
2453
|
-
export interface CreateMemoryOutput {
|
|
2454
|
-
memory?: Memory | undefined;
|
|
2455
|
-
}
|
|
2456
|
-
export interface DeleteMemoryInput {
|
|
2457
|
-
clientToken?: string | undefined;
|
|
2458
|
-
memoryId: string | undefined;
|
|
2459
|
-
}
|
|
2460
|
-
export interface DeleteMemoryOutput {
|
|
2461
|
-
memoryId: string | undefined;
|
|
2462
|
-
status?: MemoryStatus | undefined;
|
|
2463
|
-
}
|
|
2464
|
-
export interface GetMemoryInput {
|
|
2465
|
-
memoryId: string | undefined;
|
|
2466
|
-
view?: MemoryView | undefined;
|
|
2467
|
-
}
|
|
2468
|
-
export interface GetMemoryOutput {
|
|
2469
|
-
memory: Memory | undefined;
|
|
2470
|
-
}
|
|
2471
|
-
export interface ListMemoriesInput {
|
|
2472
|
-
maxResults?: number | undefined;
|
|
2473
|
-
nextToken?: string | undefined;
|
|
2474
|
-
}
|
|
2475
|
-
export interface MemorySummary {
|
|
2476
|
-
arn?: string | undefined;
|
|
2477
|
-
id?: string | undefined;
|
|
2478
|
-
status?: MemoryStatus | undefined;
|
|
2479
|
-
createdAt: Date | undefined;
|
|
2480
|
-
updatedAt: Date | undefined;
|
|
2481
|
-
}
|
|
2482
|
-
export interface ListMemoriesOutput {
|
|
2483
|
-
memories: MemorySummary[] | undefined;
|
|
2484
|
-
nextToken?: string | undefined;
|
|
2485
|
-
}
|
|
2486
|
-
export interface DeleteMemoryStrategyInput {
|
|
2487
|
-
memoryStrategyId: string | undefined;
|
|
2488
|
-
}
|
|
2489
|
-
export type CustomConsolidationConfigurationInput =
|
|
2490
|
-
| CustomConsolidationConfigurationInput.EpisodicConsolidationOverrideMember
|
|
2491
|
-
| CustomConsolidationConfigurationInput.SemanticConsolidationOverrideMember
|
|
2492
|
-
| CustomConsolidationConfigurationInput.SummaryConsolidationOverrideMember
|
|
2493
|
-
| CustomConsolidationConfigurationInput.UserPreferenceConsolidationOverrideMember
|
|
2494
|
-
| CustomConsolidationConfigurationInput.$UnknownMember;
|
|
2495
|
-
export declare namespace CustomConsolidationConfigurationInput {
|
|
2496
|
-
interface SemanticConsolidationOverrideMember {
|
|
2497
|
-
semanticConsolidationOverride: SemanticOverrideConsolidationConfigurationInput;
|
|
2498
|
-
summaryConsolidationOverride?: never;
|
|
2499
|
-
userPreferenceConsolidationOverride?: never;
|
|
2500
|
-
episodicConsolidationOverride?: never;
|
|
2501
|
-
$unknown?: never;
|
|
2502
|
-
}
|
|
2503
|
-
interface SummaryConsolidationOverrideMember {
|
|
2504
|
-
semanticConsolidationOverride?: never;
|
|
2505
|
-
summaryConsolidationOverride: SummaryOverrideConsolidationConfigurationInput;
|
|
2506
|
-
userPreferenceConsolidationOverride?: never;
|
|
2507
|
-
episodicConsolidationOverride?: never;
|
|
2508
|
-
$unknown?: never;
|
|
2509
|
-
}
|
|
2510
|
-
interface UserPreferenceConsolidationOverrideMember {
|
|
2511
|
-
semanticConsolidationOverride?: never;
|
|
2512
|
-
summaryConsolidationOverride?: never;
|
|
2513
|
-
userPreferenceConsolidationOverride: UserPreferenceOverrideConsolidationConfigurationInput;
|
|
2514
|
-
episodicConsolidationOverride?: never;
|
|
2515
|
-
$unknown?: never;
|
|
2516
|
-
}
|
|
2517
|
-
interface EpisodicConsolidationOverrideMember {
|
|
2518
|
-
semanticConsolidationOverride?: never;
|
|
2519
|
-
summaryConsolidationOverride?: never;
|
|
2520
|
-
userPreferenceConsolidationOverride?: never;
|
|
2521
|
-
episodicConsolidationOverride: EpisodicOverrideConsolidationConfigurationInput;
|
|
2522
|
-
$unknown?: never;
|
|
2523
|
-
}
|
|
2524
|
-
interface $UnknownMember {
|
|
2525
|
-
semanticConsolidationOverride?: never;
|
|
2526
|
-
summaryConsolidationOverride?: never;
|
|
2527
|
-
userPreferenceConsolidationOverride?: never;
|
|
2528
|
-
episodicConsolidationOverride?: never;
|
|
2529
|
-
$unknown: [string, any];
|
|
2530
|
-
}
|
|
2531
|
-
interface Visitor<T> {
|
|
2532
|
-
semanticConsolidationOverride: (
|
|
2533
|
-
value: SemanticOverrideConsolidationConfigurationInput
|
|
2534
|
-
) => T;
|
|
2535
|
-
summaryConsolidationOverride: (
|
|
2536
|
-
value: SummaryOverrideConsolidationConfigurationInput
|
|
2537
|
-
) => T;
|
|
2538
|
-
userPreferenceConsolidationOverride: (
|
|
2539
|
-
value: UserPreferenceOverrideConsolidationConfigurationInput
|
|
2540
|
-
) => T;
|
|
2541
|
-
episodicConsolidationOverride: (
|
|
2542
|
-
value: EpisodicOverrideConsolidationConfigurationInput
|
|
2543
|
-
) => T;
|
|
2544
|
-
_: (name: string, value: any) => T;
|
|
2545
|
-
}
|
|
2546
|
-
}
|
|
2547
|
-
export type ModifyConsolidationConfiguration =
|
|
2548
|
-
| ModifyConsolidationConfiguration.CustomConsolidationConfigurationMember
|
|
2549
|
-
| ModifyConsolidationConfiguration.$UnknownMember;
|
|
2550
|
-
export declare namespace ModifyConsolidationConfiguration {
|
|
2551
|
-
interface CustomConsolidationConfigurationMember {
|
|
2552
|
-
customConsolidationConfiguration: CustomConsolidationConfigurationInput;
|
|
2553
|
-
$unknown?: never;
|
|
2554
|
-
}
|
|
2555
|
-
interface $UnknownMember {
|
|
2556
|
-
customConsolidationConfiguration?: never;
|
|
2557
|
-
$unknown: [string, any];
|
|
2558
|
-
}
|
|
2559
|
-
interface Visitor<T> {
|
|
2560
|
-
customConsolidationConfiguration: (
|
|
2561
|
-
value: CustomConsolidationConfigurationInput
|
|
2562
|
-
) => T;
|
|
2563
|
-
_: (name: string, value: any) => T;
|
|
2564
|
-
}
|
|
2565
|
-
}
|
|
2566
|
-
export type CustomExtractionConfigurationInput =
|
|
2567
|
-
| CustomExtractionConfigurationInput.EpisodicExtractionOverrideMember
|
|
2568
|
-
| CustomExtractionConfigurationInput.SemanticExtractionOverrideMember
|
|
2569
|
-
| CustomExtractionConfigurationInput.UserPreferenceExtractionOverrideMember
|
|
2570
|
-
| CustomExtractionConfigurationInput.$UnknownMember;
|
|
2571
|
-
export declare namespace CustomExtractionConfigurationInput {
|
|
2572
|
-
interface SemanticExtractionOverrideMember {
|
|
2573
|
-
semanticExtractionOverride: SemanticOverrideExtractionConfigurationInput;
|
|
2574
|
-
userPreferenceExtractionOverride?: never;
|
|
2575
|
-
episodicExtractionOverride?: never;
|
|
2576
|
-
$unknown?: never;
|
|
2577
|
-
}
|
|
2578
|
-
interface UserPreferenceExtractionOverrideMember {
|
|
2579
|
-
semanticExtractionOverride?: never;
|
|
2580
|
-
userPreferenceExtractionOverride: UserPreferenceOverrideExtractionConfigurationInput;
|
|
2581
|
-
episodicExtractionOverride?: never;
|
|
2582
|
-
$unknown?: never;
|
|
2583
|
-
}
|
|
2584
|
-
interface EpisodicExtractionOverrideMember {
|
|
2585
|
-
semanticExtractionOverride?: never;
|
|
2586
|
-
userPreferenceExtractionOverride?: never;
|
|
2587
|
-
episodicExtractionOverride: EpisodicOverrideExtractionConfigurationInput;
|
|
2588
|
-
$unknown?: never;
|
|
2589
|
-
}
|
|
2590
|
-
interface $UnknownMember {
|
|
2591
|
-
semanticExtractionOverride?: never;
|
|
2592
|
-
userPreferenceExtractionOverride?: never;
|
|
2593
|
-
episodicExtractionOverride?: never;
|
|
2594
|
-
$unknown: [string, any];
|
|
2595
|
-
}
|
|
2596
|
-
interface Visitor<T> {
|
|
2597
|
-
semanticExtractionOverride: (
|
|
2598
|
-
value: SemanticOverrideExtractionConfigurationInput
|
|
2599
|
-
) => T;
|
|
2600
|
-
userPreferenceExtractionOverride: (
|
|
2601
|
-
value: UserPreferenceOverrideExtractionConfigurationInput
|
|
2602
|
-
) => T;
|
|
2603
|
-
episodicExtractionOverride: (
|
|
2604
|
-
value: EpisodicOverrideExtractionConfigurationInput
|
|
2605
|
-
) => T;
|
|
2606
|
-
_: (name: string, value: any) => T;
|
|
2607
|
-
}
|
|
2608
|
-
}
|
|
2609
|
-
export type ModifyExtractionConfiguration =
|
|
2610
|
-
| ModifyExtractionConfiguration.CustomExtractionConfigurationMember
|
|
2611
|
-
| ModifyExtractionConfiguration.$UnknownMember;
|
|
2612
|
-
export declare namespace ModifyExtractionConfiguration {
|
|
2613
|
-
interface CustomExtractionConfigurationMember {
|
|
2614
|
-
customExtractionConfiguration: CustomExtractionConfigurationInput;
|
|
2615
|
-
$unknown?: never;
|
|
2616
|
-
}
|
|
2617
|
-
interface $UnknownMember {
|
|
2618
|
-
customExtractionConfiguration?: never;
|
|
2619
|
-
$unknown: [string, any];
|
|
2620
|
-
}
|
|
2621
|
-
interface Visitor<T> {
|
|
2622
|
-
customExtractionConfiguration: (
|
|
2623
|
-
value: CustomExtractionConfigurationInput
|
|
2624
|
-
) => T;
|
|
2625
|
-
_: (name: string, value: any) => T;
|
|
2626
|
-
}
|
|
2627
|
-
}
|
|
2628
|
-
export type CustomReflectionConfigurationInput =
|
|
2629
|
-
| CustomReflectionConfigurationInput.EpisodicReflectionOverrideMember
|
|
2630
|
-
| CustomReflectionConfigurationInput.$UnknownMember;
|
|
2631
|
-
export declare namespace CustomReflectionConfigurationInput {
|
|
2632
|
-
interface EpisodicReflectionOverrideMember {
|
|
2633
|
-
episodicReflectionOverride: EpisodicOverrideReflectionConfigurationInput;
|
|
2634
|
-
$unknown?: never;
|
|
2635
|
-
}
|
|
2636
|
-
interface $UnknownMember {
|
|
2637
|
-
episodicReflectionOverride?: never;
|
|
2638
|
-
$unknown: [string, any];
|
|
2639
|
-
}
|
|
2640
|
-
interface Visitor<T> {
|
|
2641
|
-
episodicReflectionOverride: (
|
|
2642
|
-
value: EpisodicOverrideReflectionConfigurationInput
|
|
2643
|
-
) => T;
|
|
2644
|
-
_: (name: string, value: any) => T;
|
|
2645
|
-
}
|
|
2646
|
-
}
|
|
2647
|
-
export type ModifyReflectionConfiguration =
|
|
2648
|
-
| ModifyReflectionConfiguration.CustomReflectionConfigurationMember
|
|
2649
|
-
| ModifyReflectionConfiguration.EpisodicReflectionConfigurationMember
|
|
2650
|
-
| ModifyReflectionConfiguration.$UnknownMember;
|
|
2651
|
-
export declare namespace ModifyReflectionConfiguration {
|
|
2652
|
-
interface EpisodicReflectionConfigurationMember {
|
|
2653
|
-
episodicReflectionConfiguration: EpisodicReflectionConfigurationInput;
|
|
2654
|
-
customReflectionConfiguration?: never;
|
|
2655
|
-
$unknown?: never;
|
|
2656
|
-
}
|
|
2657
|
-
interface CustomReflectionConfigurationMember {
|
|
2658
|
-
episodicReflectionConfiguration?: never;
|
|
2659
|
-
customReflectionConfiguration: CustomReflectionConfigurationInput;
|
|
2660
|
-
$unknown?: never;
|
|
2661
|
-
}
|
|
2662
|
-
interface $UnknownMember {
|
|
2663
|
-
episodicReflectionConfiguration?: never;
|
|
2664
|
-
customReflectionConfiguration?: never;
|
|
2665
|
-
$unknown: [string, any];
|
|
2666
|
-
}
|
|
2667
|
-
interface Visitor<T> {
|
|
2668
|
-
episodicReflectionConfiguration: (
|
|
2669
|
-
value: EpisodicReflectionConfigurationInput
|
|
2670
|
-
) => T;
|
|
2671
|
-
customReflectionConfiguration: (
|
|
2672
|
-
value: CustomReflectionConfigurationInput
|
|
2673
|
-
) => T;
|
|
2674
|
-
_: (name: string, value: any) => T;
|
|
2675
|
-
}
|
|
2676
|
-
}
|
|
2677
|
-
export interface ModifyInvocationConfigurationInput {
|
|
2678
|
-
topicArn?: string | undefined;
|
|
2679
|
-
payloadDeliveryBucketName?: string | undefined;
|
|
2680
|
-
}
|
|
2681
|
-
export interface ModifySelfManagedConfiguration {
|
|
2682
|
-
triggerConditions?: TriggerConditionInput[] | undefined;
|
|
2683
|
-
invocationConfiguration?: ModifyInvocationConfigurationInput | undefined;
|
|
2684
|
-
historicalContextWindowSize?: number | undefined;
|
|
2685
|
-
}
|
|
2686
|
-
export interface ModifyStrategyConfiguration {
|
|
2687
|
-
extraction?: ModifyExtractionConfiguration | undefined;
|
|
2688
|
-
consolidation?: ModifyConsolidationConfiguration | undefined;
|
|
2689
|
-
reflection?: ModifyReflectionConfiguration | undefined;
|
|
2690
|
-
selfManagedConfiguration?: ModifySelfManagedConfiguration | undefined;
|
|
2691
|
-
}
|
|
2692
|
-
export interface ModifyMemoryStrategyInput {
|
|
2693
|
-
memoryStrategyId: string | undefined;
|
|
2694
|
-
description?: string | undefined;
|
|
2695
|
-
namespaces?: string[] | undefined;
|
|
2696
|
-
namespaceTemplates?: string[] | undefined;
|
|
2697
|
-
configuration?: ModifyStrategyConfiguration | undefined;
|
|
2698
|
-
}
|
|
2699
|
-
export interface ModifyMemoryStrategies {
|
|
2700
|
-
addMemoryStrategies?: MemoryStrategyInput[] | undefined;
|
|
2701
|
-
modifyMemoryStrategies?: ModifyMemoryStrategyInput[] | undefined;
|
|
2702
|
-
deleteMemoryStrategies?: DeleteMemoryStrategyInput[] | undefined;
|
|
2703
|
-
}
|
|
2704
|
-
export interface UpdateMemoryInput {
|
|
2705
|
-
clientToken?: string | undefined;
|
|
2706
|
-
memoryId: string | undefined;
|
|
2707
|
-
description?: string | undefined;
|
|
2708
|
-
eventExpiryDuration?: number | undefined;
|
|
2709
|
-
memoryExecutionRoleArn?: string | undefined;
|
|
2710
|
-
memoryStrategies?: ModifyMemoryStrategies | undefined;
|
|
2711
|
-
streamDeliveryResources?: StreamDeliveryResources | undefined;
|
|
2712
|
-
}
|
|
2713
|
-
export interface UpdateMemoryOutput {
|
|
2714
|
-
memory?: Memory | undefined;
|
|
2715
|
-
}
|
|
2716
|
-
export interface AtlassianOauth2ProviderConfigInput {
|
|
2717
|
-
clientId: string | undefined;
|
|
2718
|
-
clientSecret: string | undefined;
|
|
2719
|
-
}
|
|
2720
|
-
export interface Oauth2AuthorizationServerMetadata {
|
|
2721
|
-
issuer: string | undefined;
|
|
2722
|
-
authorizationEndpoint: string | undefined;
|
|
2723
|
-
tokenEndpoint: string | undefined;
|
|
2724
|
-
responseTypes?: string[] | undefined;
|
|
2725
|
-
tokenEndpointAuthMethods?: string[] | undefined;
|
|
2726
|
-
}
|
|
2727
|
-
export type Oauth2Discovery =
|
|
2728
|
-
| Oauth2Discovery.AuthorizationServerMetadataMember
|
|
2729
|
-
| Oauth2Discovery.DiscoveryUrlMember
|
|
2730
|
-
| Oauth2Discovery.$UnknownMember;
|
|
2731
|
-
export declare namespace Oauth2Discovery {
|
|
2732
|
-
interface DiscoveryUrlMember {
|
|
2733
|
-
discoveryUrl: string;
|
|
2734
|
-
authorizationServerMetadata?: never;
|
|
2735
|
-
$unknown?: never;
|
|
2736
|
-
}
|
|
2737
|
-
interface AuthorizationServerMetadataMember {
|
|
2738
|
-
discoveryUrl?: never;
|
|
2739
|
-
authorizationServerMetadata: Oauth2AuthorizationServerMetadata;
|
|
2740
|
-
$unknown?: never;
|
|
2741
|
-
}
|
|
2742
|
-
interface $UnknownMember {
|
|
2743
|
-
discoveryUrl?: never;
|
|
2744
|
-
authorizationServerMetadata?: never;
|
|
2745
|
-
$unknown: [string, any];
|
|
2746
|
-
}
|
|
2747
|
-
interface Visitor<T> {
|
|
2748
|
-
discoveryUrl: (value: string) => T;
|
|
2749
|
-
authorizationServerMetadata: (
|
|
2750
|
-
value: Oauth2AuthorizationServerMetadata
|
|
2751
|
-
) => T;
|
|
2752
|
-
_: (name: string, value: any) => T;
|
|
2753
|
-
}
|
|
2754
|
-
}
|
|
2755
|
-
export interface CustomOauth2ProviderConfigInput {
|
|
2756
|
-
oauthDiscovery: Oauth2Discovery | undefined;
|
|
2757
|
-
clientId: string | undefined;
|
|
2758
|
-
clientSecret: string | undefined;
|
|
2759
|
-
privateEndpoint?: PrivateEndpoint | undefined;
|
|
2760
|
-
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
2761
|
-
}
|
|
2762
|
-
export interface GithubOauth2ProviderConfigInput {
|
|
2763
|
-
clientId: string | undefined;
|
|
2764
|
-
clientSecret: string | undefined;
|
|
2765
|
-
}
|
|
2766
|
-
export interface GoogleOauth2ProviderConfigInput {
|
|
2767
|
-
clientId: string | undefined;
|
|
2768
|
-
clientSecret: string | undefined;
|
|
2769
|
-
}
|
|
2770
|
-
export interface IncludedOauth2ProviderConfigInput {
|
|
2771
|
-
clientId: string | undefined;
|
|
2772
|
-
clientSecret: string | undefined;
|
|
2773
|
-
issuer?: string | undefined;
|
|
2774
|
-
authorizationEndpoint?: string | undefined;
|
|
2775
|
-
tokenEndpoint?: string | undefined;
|
|
2776
|
-
}
|
|
2777
|
-
export interface LinkedinOauth2ProviderConfigInput {
|
|
2778
|
-
clientId: string | undefined;
|
|
2779
|
-
clientSecret: string | undefined;
|
|
2780
|
-
}
|