@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.946.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +216 -0
- package/dist-cjs/index.js +2060 -545
- package/dist-cjs/runtimeConfig.browser.js +2 -2
- package/dist-cjs/runtimeConfig.js +3 -4
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/BedrockAgentCoreControlClient.js +2 -2
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -3
- package/dist-es/schemas/schemas_0.js +1276 -535
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +193 -1
- package/dist-types/BedrockAgentCoreControlClient.d.ts +39 -12
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +21 -3
- package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/CreateBrowserCommand.d.ts +3 -3
- package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +47 -3
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +51 -3
- package/dist-types/commands/CreateMemoryCommand.d.ts +55 -8
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/DeleteBrowserCommand.d.ts +3 -3
- package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +3 -3
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMemoryCommand.d.ts +6 -3
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +22 -3
- package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/GetBrowserCommand.d.ts +3 -3
- package/dist-types/commands/GetCodeInterpreterCommand.d.ts +3 -3
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +25 -3
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +28 -3
- package/dist-types/commands/GetMemoryCommand.d.ts +30 -8
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetTokenVaultCommand.d.ts +3 -3
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +3 -3
- package/dist-types/commands/ListAgentRuntimesCommand.d.ts +3 -3
- package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +3 -3
- package/dist-types/commands/ListBrowsersCommand.d.ts +3 -3
- package/dist-types/commands/ListCodeInterpretersCommand.d.ts +3 -3
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +3 -3
- package/dist-types/commands/ListGatewaysCommand.d.ts +3 -3
- package/dist-types/commands/ListMemoriesCommand.d.ts +3 -3
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +3 -3
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +3 -3
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +3 -3
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +28 -3
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +21 -3
- package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +3 -3
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +47 -3
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +51 -3
- package/dist-types/commands/UpdateMemoryCommand.d.ts +76 -11
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +3 -3
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/dist-types/extensionConfiguration.d.ts +4 -4
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListBrowsersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMemoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +1 -1
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +157 -1
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +165 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +13 -12
|
@@ -25,6 +25,19 @@ export declare const AgentManagedRuntimeType: {
|
|
|
25
25
|
};
|
|
26
26
|
export type AgentManagedRuntimeType =
|
|
27
27
|
(typeof AgentManagedRuntimeType)[keyof typeof AgentManagedRuntimeType];
|
|
28
|
+
export declare const ClaimMatchOperatorType: {
|
|
29
|
+
readonly CONTAINS: "CONTAINS";
|
|
30
|
+
readonly CONTAINS_ANY: "CONTAINS_ANY";
|
|
31
|
+
readonly EQUALS: "EQUALS";
|
|
32
|
+
};
|
|
33
|
+
export type ClaimMatchOperatorType =
|
|
34
|
+
(typeof ClaimMatchOperatorType)[keyof typeof ClaimMatchOperatorType];
|
|
35
|
+
export declare const InboundTokenClaimValueType: {
|
|
36
|
+
readonly STRING: "STRING";
|
|
37
|
+
readonly STRING_ARRAY: "STRING_ARRAY";
|
|
38
|
+
};
|
|
39
|
+
export type InboundTokenClaimValueType =
|
|
40
|
+
(typeof InboundTokenClaimValueType)[keyof typeof InboundTokenClaimValueType];
|
|
28
41
|
export declare const NetworkMode: {
|
|
29
42
|
readonly PUBLIC: "PUBLIC";
|
|
30
43
|
readonly VPC: "VPC";
|
|
@@ -84,6 +97,28 @@ export declare const CodeInterpreterStatus: {
|
|
|
84
97
|
};
|
|
85
98
|
export type CodeInterpreterStatus =
|
|
86
99
|
(typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
|
|
100
|
+
export declare const EvaluatorLevel: {
|
|
101
|
+
readonly SESSION: "SESSION";
|
|
102
|
+
readonly TOOL_CALL: "TOOL_CALL";
|
|
103
|
+
readonly TRACE: "TRACE";
|
|
104
|
+
};
|
|
105
|
+
export type EvaluatorLevel =
|
|
106
|
+
(typeof EvaluatorLevel)[keyof typeof EvaluatorLevel];
|
|
107
|
+
export declare const EvaluatorStatus: {
|
|
108
|
+
readonly ACTIVE: "ACTIVE";
|
|
109
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
110
|
+
readonly CREATING: "CREATING";
|
|
111
|
+
readonly DELETING: "DELETING";
|
|
112
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
113
|
+
readonly UPDATING: "UPDATING";
|
|
114
|
+
};
|
|
115
|
+
export type EvaluatorStatus =
|
|
116
|
+
(typeof EvaluatorStatus)[keyof typeof EvaluatorStatus];
|
|
117
|
+
export declare const EvaluatorType: {
|
|
118
|
+
readonly BUILTIN: "Builtin";
|
|
119
|
+
readonly CUSTOM: "Custom";
|
|
120
|
+
};
|
|
121
|
+
export type EvaluatorType = (typeof EvaluatorType)[keyof typeof EvaluatorType];
|
|
87
122
|
export declare const AuthorizerType: {
|
|
88
123
|
readonly AWS_IAM: "AWS_IAM";
|
|
89
124
|
readonly CUSTOM_JWT: "CUSTOM_JWT";
|
|
@@ -102,6 +137,12 @@ export declare const GatewayInterceptionPoint: {
|
|
|
102
137
|
};
|
|
103
138
|
export type GatewayInterceptionPoint =
|
|
104
139
|
(typeof GatewayInterceptionPoint)[keyof typeof GatewayInterceptionPoint];
|
|
140
|
+
export declare const GatewayPolicyEngineMode: {
|
|
141
|
+
readonly ENFORCE: "ENFORCE";
|
|
142
|
+
readonly LOG_ONLY: "LOG_ONLY";
|
|
143
|
+
};
|
|
144
|
+
export type GatewayPolicyEngineMode =
|
|
145
|
+
(typeof GatewayPolicyEngineMode)[keyof typeof GatewayPolicyEngineMode];
|
|
105
146
|
export declare const SearchType: {
|
|
106
147
|
readonly SEMANTIC: "SEMANTIC";
|
|
107
148
|
};
|
|
@@ -126,6 +167,12 @@ export declare const ApiKeyCredentialLocation: {
|
|
|
126
167
|
};
|
|
127
168
|
export type ApiKeyCredentialLocation =
|
|
128
169
|
(typeof ApiKeyCredentialLocation)[keyof typeof ApiKeyCredentialLocation];
|
|
170
|
+
export declare const OAuthGrantType: {
|
|
171
|
+
readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
|
|
172
|
+
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
173
|
+
};
|
|
174
|
+
export type OAuthGrantType =
|
|
175
|
+
(typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
129
176
|
export declare const CredentialProviderType: {
|
|
130
177
|
readonly API_KEY: "API_KEY";
|
|
131
178
|
readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
|
|
@@ -133,6 +180,16 @@ export declare const CredentialProviderType: {
|
|
|
133
180
|
};
|
|
134
181
|
export type CredentialProviderType =
|
|
135
182
|
(typeof CredentialProviderType)[keyof typeof CredentialProviderType];
|
|
183
|
+
export declare const RestApiMethod: {
|
|
184
|
+
readonly DELETE: "DELETE";
|
|
185
|
+
readonly GET: "GET";
|
|
186
|
+
readonly HEAD: "HEAD";
|
|
187
|
+
readonly OPTIONS: "OPTIONS";
|
|
188
|
+
readonly PATCH: "PATCH";
|
|
189
|
+
readonly POST: "POST";
|
|
190
|
+
readonly PUT: "PUT";
|
|
191
|
+
};
|
|
192
|
+
export type RestApiMethod = (typeof RestApiMethod)[keyof typeof RestApiMethod];
|
|
136
193
|
export declare const SchemaType: {
|
|
137
194
|
readonly ARRAY: "array";
|
|
138
195
|
readonly BOOLEAN: "boolean";
|
|
@@ -166,6 +223,7 @@ export declare const MemoryStatus: {
|
|
|
166
223
|
};
|
|
167
224
|
export type MemoryStatus = (typeof MemoryStatus)[keyof typeof MemoryStatus];
|
|
168
225
|
export declare const OverrideType: {
|
|
226
|
+
readonly EPISODIC_OVERRIDE: "EPISODIC_OVERRIDE";
|
|
169
227
|
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
170
228
|
readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
|
|
171
229
|
readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
|
|
@@ -182,6 +240,7 @@ export type MemoryStrategyStatus =
|
|
|
182
240
|
(typeof MemoryStrategyStatus)[keyof typeof MemoryStrategyStatus];
|
|
183
241
|
export declare const MemoryStrategyType: {
|
|
184
242
|
readonly CUSTOM: "CUSTOM";
|
|
243
|
+
readonly EPISODIC: "EPISODIC";
|
|
185
244
|
readonly SEMANTIC: "SEMANTIC";
|
|
186
245
|
readonly SUMMARIZATION: "SUMMARIZATION";
|
|
187
246
|
readonly USER_PREFERENCE: "USER_PREFERENCE";
|
|
@@ -217,3 +276,76 @@ export declare const CredentialProviderVendorType: {
|
|
|
217
276
|
};
|
|
218
277
|
export type CredentialProviderVendorType =
|
|
219
278
|
(typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
|
|
279
|
+
export declare const FilterOperator: {
|
|
280
|
+
readonly CONTAINS: "Contains";
|
|
281
|
+
readonly EQUALS: "Equals";
|
|
282
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
283
|
+
readonly GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual";
|
|
284
|
+
readonly LESS_THAN: "LessThan";
|
|
285
|
+
readonly LESS_THAN_OR_EQUAL: "LessThanOrEqual";
|
|
286
|
+
readonly NOT_CONTAINS: "NotContains";
|
|
287
|
+
readonly NOT_EQUALS: "NotEquals";
|
|
288
|
+
};
|
|
289
|
+
export type FilterOperator =
|
|
290
|
+
(typeof FilterOperator)[keyof typeof FilterOperator];
|
|
291
|
+
export declare const OnlineEvaluationExecutionStatus: {
|
|
292
|
+
readonly DISABLED: "DISABLED";
|
|
293
|
+
readonly ENABLED: "ENABLED";
|
|
294
|
+
};
|
|
295
|
+
export type OnlineEvaluationExecutionStatus =
|
|
296
|
+
(typeof OnlineEvaluationExecutionStatus)[keyof typeof OnlineEvaluationExecutionStatus];
|
|
297
|
+
export declare const OnlineEvaluationConfigStatus: {
|
|
298
|
+
readonly ACTIVE: "ACTIVE";
|
|
299
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
300
|
+
readonly CREATING: "CREATING";
|
|
301
|
+
readonly DELETING: "DELETING";
|
|
302
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
303
|
+
readonly UPDATING: "UPDATING";
|
|
304
|
+
};
|
|
305
|
+
export type OnlineEvaluationConfigStatus =
|
|
306
|
+
(typeof OnlineEvaluationConfigStatus)[keyof typeof OnlineEvaluationConfigStatus];
|
|
307
|
+
export declare const PolicyEngineStatus: {
|
|
308
|
+
readonly ACTIVE: "ACTIVE";
|
|
309
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
310
|
+
readonly CREATING: "CREATING";
|
|
311
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
312
|
+
readonly DELETING: "DELETING";
|
|
313
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
314
|
+
readonly UPDATING: "UPDATING";
|
|
315
|
+
};
|
|
316
|
+
export type PolicyEngineStatus =
|
|
317
|
+
(typeof PolicyEngineStatus)[keyof typeof PolicyEngineStatus];
|
|
318
|
+
export declare const PolicyGenerationStatus: {
|
|
319
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
320
|
+
readonly GENERATED: "GENERATED";
|
|
321
|
+
readonly GENERATE_FAILED: "GENERATE_FAILED";
|
|
322
|
+
readonly GENERATING: "GENERATING";
|
|
323
|
+
};
|
|
324
|
+
export type PolicyGenerationStatus =
|
|
325
|
+
(typeof PolicyGenerationStatus)[keyof typeof PolicyGenerationStatus];
|
|
326
|
+
export declare const FindingType: {
|
|
327
|
+
readonly ALLOW_ALL: "ALLOW_ALL";
|
|
328
|
+
readonly ALLOW_NONE: "ALLOW_NONE";
|
|
329
|
+
readonly DENY_ALL: "DENY_ALL";
|
|
330
|
+
readonly DENY_NONE: "DENY_NONE";
|
|
331
|
+
readonly INVALID: "INVALID";
|
|
332
|
+
readonly NOT_TRANSLATABLE: "NOT_TRANSLATABLE";
|
|
333
|
+
readonly VALID: "VALID";
|
|
334
|
+
};
|
|
335
|
+
export type FindingType = (typeof FindingType)[keyof typeof FindingType];
|
|
336
|
+
export declare const PolicyValidationMode: {
|
|
337
|
+
readonly FAIL_ON_ANY_FINDINGS: "FAIL_ON_ANY_FINDINGS";
|
|
338
|
+
readonly IGNORE_ALL_FINDINGS: "IGNORE_ALL_FINDINGS";
|
|
339
|
+
};
|
|
340
|
+
export type PolicyValidationMode =
|
|
341
|
+
(typeof PolicyValidationMode)[keyof typeof PolicyValidationMode];
|
|
342
|
+
export declare const PolicyStatus: {
|
|
343
|
+
readonly ACTIVE: "ACTIVE";
|
|
344
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
345
|
+
readonly CREATING: "CREATING";
|
|
346
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
347
|
+
readonly DELETING: "DELETING";
|
|
348
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
349
|
+
readonly UPDATING: "UPDATING";
|
|
350
|
+
};
|
|
351
|
+
export type PolicyStatus = (typeof PolicyStatus)[keyof typeof PolicyStatus];
|