@aws-sdk/client-bedrock-agentcore-control 3.940.0 → 3.943.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 +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- 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/schemas/schemas_0.js +1320 -97
- 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 +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- 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 +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- 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 +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- 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/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- 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/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- 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 +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- 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/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- 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/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 +5 -5
|
@@ -43,6 +43,31 @@ export declare const AgentManagedRuntimeType: {
|
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
45
|
export type AgentManagedRuntimeType = (typeof AgentManagedRuntimeType)[keyof typeof AgentManagedRuntimeType];
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* @enum
|
|
49
|
+
*/
|
|
50
|
+
export declare const ClaimMatchOperatorType: {
|
|
51
|
+
readonly CONTAINS: "CONTAINS";
|
|
52
|
+
readonly CONTAINS_ANY: "CONTAINS_ANY";
|
|
53
|
+
readonly EQUALS: "EQUALS";
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export type ClaimMatchOperatorType = (typeof ClaimMatchOperatorType)[keyof typeof ClaimMatchOperatorType];
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
* @enum
|
|
62
|
+
*/
|
|
63
|
+
export declare const InboundTokenClaimValueType: {
|
|
64
|
+
readonly STRING: "STRING";
|
|
65
|
+
readonly STRING_ARRAY: "STRING_ARRAY";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export type InboundTokenClaimValueType = (typeof InboundTokenClaimValueType)[keyof typeof InboundTokenClaimValueType];
|
|
46
71
|
/**
|
|
47
72
|
* @public
|
|
48
73
|
* @enum
|
|
@@ -153,6 +178,47 @@ export declare const CodeInterpreterStatus: {
|
|
|
153
178
|
* @public
|
|
154
179
|
*/
|
|
155
180
|
export type CodeInterpreterStatus = (typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
* @enum
|
|
184
|
+
*/
|
|
185
|
+
export declare const EvaluatorLevel: {
|
|
186
|
+
readonly SESSION: "SESSION";
|
|
187
|
+
readonly TOOL_CALL: "TOOL_CALL";
|
|
188
|
+
readonly TRACE: "TRACE";
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export type EvaluatorLevel = (typeof EvaluatorLevel)[keyof typeof EvaluatorLevel];
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
* @enum
|
|
197
|
+
*/
|
|
198
|
+
export declare const EvaluatorStatus: {
|
|
199
|
+
readonly ACTIVE: "ACTIVE";
|
|
200
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
201
|
+
readonly CREATING: "CREATING";
|
|
202
|
+
readonly DELETING: "DELETING";
|
|
203
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
204
|
+
readonly UPDATING: "UPDATING";
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
export type EvaluatorStatus = (typeof EvaluatorStatus)[keyof typeof EvaluatorStatus];
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* @enum
|
|
213
|
+
*/
|
|
214
|
+
export declare const EvaluatorType: {
|
|
215
|
+
readonly BUILTIN: "Builtin";
|
|
216
|
+
readonly CUSTOM: "Custom";
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export type EvaluatorType = (typeof EvaluatorType)[keyof typeof EvaluatorType];
|
|
156
222
|
/**
|
|
157
223
|
* @public
|
|
158
224
|
* @enum
|
|
@@ -189,6 +255,18 @@ export declare const GatewayInterceptionPoint: {
|
|
|
189
255
|
* @public
|
|
190
256
|
*/
|
|
191
257
|
export type GatewayInterceptionPoint = (typeof GatewayInterceptionPoint)[keyof typeof GatewayInterceptionPoint];
|
|
258
|
+
/**
|
|
259
|
+
* @public
|
|
260
|
+
* @enum
|
|
261
|
+
*/
|
|
262
|
+
export declare const GatewayPolicyEngineMode: {
|
|
263
|
+
readonly ENFORCE: "ENFORCE";
|
|
264
|
+
readonly LOG_ONLY: "LOG_ONLY";
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* @public
|
|
268
|
+
*/
|
|
269
|
+
export type GatewayPolicyEngineMode = (typeof GatewayPolicyEngineMode)[keyof typeof GatewayPolicyEngineMode];
|
|
192
270
|
/**
|
|
193
271
|
* @public
|
|
194
272
|
* @enum
|
|
@@ -239,6 +317,18 @@ export declare const ApiKeyCredentialLocation: {
|
|
|
239
317
|
* @public
|
|
240
318
|
*/
|
|
241
319
|
export type ApiKeyCredentialLocation = (typeof ApiKeyCredentialLocation)[keyof typeof ApiKeyCredentialLocation];
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
* @enum
|
|
323
|
+
*/
|
|
324
|
+
export declare const OAuthGrantType: {
|
|
325
|
+
readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
|
|
326
|
+
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
327
|
+
};
|
|
328
|
+
/**
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
export type OAuthGrantType = (typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
242
332
|
/**
|
|
243
333
|
* @public
|
|
244
334
|
* @enum
|
|
@@ -252,6 +342,23 @@ export declare const CredentialProviderType: {
|
|
|
252
342
|
* @public
|
|
253
343
|
*/
|
|
254
344
|
export type CredentialProviderType = (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
|
|
345
|
+
/**
|
|
346
|
+
* @public
|
|
347
|
+
* @enum
|
|
348
|
+
*/
|
|
349
|
+
export declare const RestApiMethod: {
|
|
350
|
+
readonly DELETE: "DELETE";
|
|
351
|
+
readonly GET: "GET";
|
|
352
|
+
readonly HEAD: "HEAD";
|
|
353
|
+
readonly OPTIONS: "OPTIONS";
|
|
354
|
+
readonly PATCH: "PATCH";
|
|
355
|
+
readonly POST: "POST";
|
|
356
|
+
readonly PUT: "PUT";
|
|
357
|
+
};
|
|
358
|
+
/**
|
|
359
|
+
* @public
|
|
360
|
+
*/
|
|
361
|
+
export type RestApiMethod = (typeof RestApiMethod)[keyof typeof RestApiMethod];
|
|
255
362
|
/**
|
|
256
363
|
* @public
|
|
257
364
|
* @enum
|
|
@@ -317,6 +424,7 @@ export type MemoryStatus = (typeof MemoryStatus)[keyof typeof MemoryStatus];
|
|
|
317
424
|
* @enum
|
|
318
425
|
*/
|
|
319
426
|
export declare const OverrideType: {
|
|
427
|
+
readonly EPISODIC_OVERRIDE: "EPISODIC_OVERRIDE";
|
|
320
428
|
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
321
429
|
readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
|
|
322
430
|
readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
|
|
@@ -346,6 +454,7 @@ export type MemoryStrategyStatus = (typeof MemoryStrategyStatus)[keyof typeof Me
|
|
|
346
454
|
*/
|
|
347
455
|
export declare const MemoryStrategyType: {
|
|
348
456
|
readonly CUSTOM: "CUSTOM";
|
|
457
|
+
readonly EPISODIC: "EPISODIC";
|
|
349
458
|
readonly SEMANTIC: "SEMANTIC";
|
|
350
459
|
readonly SUMMARIZATION: "SUMMARIZATION";
|
|
351
460
|
readonly USER_PREFERENCE: "USER_PREFERENCE";
|
|
@@ -389,3 +498,126 @@ export declare const CredentialProviderVendorType: {
|
|
|
389
498
|
* @public
|
|
390
499
|
*/
|
|
391
500
|
export type CredentialProviderVendorType = (typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
|
|
501
|
+
/**
|
|
502
|
+
* @public
|
|
503
|
+
* @enum
|
|
504
|
+
*/
|
|
505
|
+
export declare const FilterOperator: {
|
|
506
|
+
readonly CONTAINS: "Contains";
|
|
507
|
+
readonly EQUALS: "Equals";
|
|
508
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
509
|
+
readonly GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual";
|
|
510
|
+
readonly LESS_THAN: "LessThan";
|
|
511
|
+
readonly LESS_THAN_OR_EQUAL: "LessThanOrEqual";
|
|
512
|
+
readonly NOT_CONTAINS: "NotContains";
|
|
513
|
+
readonly NOT_EQUALS: "NotEquals";
|
|
514
|
+
};
|
|
515
|
+
/**
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
export type FilterOperator = (typeof FilterOperator)[keyof typeof FilterOperator];
|
|
519
|
+
/**
|
|
520
|
+
* @public
|
|
521
|
+
* @enum
|
|
522
|
+
*/
|
|
523
|
+
export declare const OnlineEvaluationExecutionStatus: {
|
|
524
|
+
readonly DISABLED: "DISABLED";
|
|
525
|
+
readonly ENABLED: "ENABLED";
|
|
526
|
+
};
|
|
527
|
+
/**
|
|
528
|
+
* @public
|
|
529
|
+
*/
|
|
530
|
+
export type OnlineEvaluationExecutionStatus = (typeof OnlineEvaluationExecutionStatus)[keyof typeof OnlineEvaluationExecutionStatus];
|
|
531
|
+
/**
|
|
532
|
+
* @public
|
|
533
|
+
* @enum
|
|
534
|
+
*/
|
|
535
|
+
export declare const OnlineEvaluationConfigStatus: {
|
|
536
|
+
readonly ACTIVE: "ACTIVE";
|
|
537
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
538
|
+
readonly CREATING: "CREATING";
|
|
539
|
+
readonly DELETING: "DELETING";
|
|
540
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
541
|
+
readonly UPDATING: "UPDATING";
|
|
542
|
+
};
|
|
543
|
+
/**
|
|
544
|
+
* @public
|
|
545
|
+
*/
|
|
546
|
+
export type OnlineEvaluationConfigStatus = (typeof OnlineEvaluationConfigStatus)[keyof typeof OnlineEvaluationConfigStatus];
|
|
547
|
+
/**
|
|
548
|
+
* @public
|
|
549
|
+
* @enum
|
|
550
|
+
*/
|
|
551
|
+
export declare const PolicyEngineStatus: {
|
|
552
|
+
readonly ACTIVE: "ACTIVE";
|
|
553
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
554
|
+
readonly CREATING: "CREATING";
|
|
555
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
556
|
+
readonly DELETING: "DELETING";
|
|
557
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
558
|
+
readonly UPDATING: "UPDATING";
|
|
559
|
+
};
|
|
560
|
+
/**
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
563
|
+
export type PolicyEngineStatus = (typeof PolicyEngineStatus)[keyof typeof PolicyEngineStatus];
|
|
564
|
+
/**
|
|
565
|
+
* @public
|
|
566
|
+
* @enum
|
|
567
|
+
*/
|
|
568
|
+
export declare const PolicyGenerationStatus: {
|
|
569
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
570
|
+
readonly GENERATED: "GENERATED";
|
|
571
|
+
readonly GENERATE_FAILED: "GENERATE_FAILED";
|
|
572
|
+
readonly GENERATING: "GENERATING";
|
|
573
|
+
};
|
|
574
|
+
/**
|
|
575
|
+
* @public
|
|
576
|
+
*/
|
|
577
|
+
export type PolicyGenerationStatus = (typeof PolicyGenerationStatus)[keyof typeof PolicyGenerationStatus];
|
|
578
|
+
/**
|
|
579
|
+
* @public
|
|
580
|
+
* @enum
|
|
581
|
+
*/
|
|
582
|
+
export declare const FindingType: {
|
|
583
|
+
readonly ALLOW_ALL: "ALLOW_ALL";
|
|
584
|
+
readonly ALLOW_NONE: "ALLOW_NONE";
|
|
585
|
+
readonly DENY_ALL: "DENY_ALL";
|
|
586
|
+
readonly DENY_NONE: "DENY_NONE";
|
|
587
|
+
readonly INVALID: "INVALID";
|
|
588
|
+
readonly NOT_TRANSLATABLE: "NOT_TRANSLATABLE";
|
|
589
|
+
readonly VALID: "VALID";
|
|
590
|
+
};
|
|
591
|
+
/**
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
export type FindingType = (typeof FindingType)[keyof typeof FindingType];
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
* @enum
|
|
598
|
+
*/
|
|
599
|
+
export declare const PolicyValidationMode: {
|
|
600
|
+
readonly FAIL_ON_ANY_FINDINGS: "FAIL_ON_ANY_FINDINGS";
|
|
601
|
+
readonly IGNORE_ALL_FINDINGS: "IGNORE_ALL_FINDINGS";
|
|
602
|
+
};
|
|
603
|
+
/**
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
export type PolicyValidationMode = (typeof PolicyValidationMode)[keyof typeof PolicyValidationMode];
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
* @enum
|
|
610
|
+
*/
|
|
611
|
+
export declare const PolicyStatus: {
|
|
612
|
+
readonly ACTIVE: "ACTIVE";
|
|
613
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
614
|
+
readonly CREATING: "CREATING";
|
|
615
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
616
|
+
readonly DELETING: "DELETING";
|
|
617
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
618
|
+
readonly UPDATING: "UPDATING";
|
|
619
|
+
};
|
|
620
|
+
/**
|
|
621
|
+
* @public
|
|
622
|
+
*/
|
|
623
|
+
export type PolicyStatus = (typeof PolicyStatus)[keyof typeof PolicyStatus];
|