@aws-sdk/client-bedrock-agentcore-control 3.1021.0 → 3.1023.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.
Files changed (27) hide show
  1. package/dist-cjs/index.js +8 -0
  2. package/dist-cjs/schemas/schemas_0.js +105 -30
  3. package/dist-es/models/enums.js +7 -0
  4. package/dist-es/schemas/schemas_0.js +98 -23
  5. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +74 -1
  6. package/dist-types/commands/CreatePolicyEngineCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +2 -2
  8. package/dist-types/commands/DeletePolicyEngineCommand.d.ts +1 -1
  9. package/dist-types/commands/GetGatewayTargetCommand.d.ts +44 -1
  10. package/dist-types/commands/GetPolicyEngineCommand.d.ts +1 -1
  11. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -1
  12. package/dist-types/commands/ListPolicyEnginesCommand.d.ts +1 -1
  13. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +45 -2
  14. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +75 -2
  15. package/dist-types/models/enums.d.ts +15 -0
  16. package/dist-types/models/models_0.d.ts +266 -253
  17. package/dist-types/models/models_1.d.ts +322 -1
  18. package/dist-types/schemas/schemas_0.d.ts +8 -0
  19. package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +2 -4
  20. package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +1 -1
  23. package/dist-types/ts3.4/models/enums.d.ts +9 -0
  24. package/dist-types/ts3.4/models/models_0.d.ts +120 -59
  25. package/dist-types/ts3.4/models/models_1.d.ts +75 -0
  26. package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
  27. package/package.json +1 -1
@@ -1,5 +1,256 @@
1
1
  import type { FindingType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, SchemaType, TargetStatus } from "./enums";
2
- import type { ApiGatewayTargetConfiguration, ApiSchemaConfiguration, CredentialProviderConfiguration, KmsConfiguration, McpServerTargetConfiguration, MetadataConfiguration, S3Configuration } from "./models_0";
2
+ import type { ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, CredentialProviderConfiguration, KmsConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface CreatePolicyEngineResponse {
7
+ /**
8
+ * <p>The unique identifier for the created policy engine. This system-generated identifier consists of the user name plus a 10-character generated suffix and is used for all subsequent policy engine operations.</p>
9
+ * @public
10
+ */
11
+ policyEngineId: string | undefined;
12
+ /**
13
+ * <p>The customer-assigned name of the created policy engine. This matches the name provided in the request and serves as the human-readable identifier.</p>
14
+ * @public
15
+ */
16
+ name: string | undefined;
17
+ /**
18
+ * <p>A human-readable description of the policy engine's purpose.</p>
19
+ * @public
20
+ */
21
+ description?: string | undefined;
22
+ /**
23
+ * <p>The timestamp when the policy engine was created. This is automatically set by the service and used for auditing and lifecycle management.</p>
24
+ * @public
25
+ */
26
+ createdAt: Date | undefined;
27
+ /**
28
+ * <p>The timestamp when the policy engine was last updated. For newly created policy engines, this matches the <code>createdAt</code> timestamp.</p>
29
+ * @public
30
+ */
31
+ updatedAt: Date | undefined;
32
+ /**
33
+ * <p>The Amazon Resource Name (ARN) of the created policy engine. This globally unique identifier can be used for cross-service references and IAM policy statements.</p>
34
+ * @public
35
+ */
36
+ policyEngineArn: string | undefined;
37
+ /**
38
+ * <p>The current status of the policy engine. A status of <code>ACTIVE</code> indicates the policy engine is ready for use.</p>
39
+ * @public
40
+ */
41
+ status: PolicyEngineStatus | undefined;
42
+ /**
43
+ * <p>Additional information about the policy engine status. This provides details about any failures or the current state of the policy engine creation process.</p>
44
+ * @public
45
+ */
46
+ statusReasons: string[] | undefined;
47
+ /**
48
+ * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the policy engine data.</p>
49
+ * @public
50
+ */
51
+ encryptionKeyArn?: string | undefined;
52
+ }
53
+ /**
54
+ * @public
55
+ */
56
+ export interface DeletePolicyEngineRequest {
57
+ /**
58
+ * <p>The unique identifier of the policy engine to be deleted. This must be a valid policy engine ID that exists within the account.</p>
59
+ * @public
60
+ */
61
+ policyEngineId: string | undefined;
62
+ }
63
+ /**
64
+ * @public
65
+ */
66
+ export interface DeletePolicyEngineResponse {
67
+ /**
68
+ * <p>The unique identifier of the policy engine being deleted. This confirms which policy engine the deletion operation targets.</p>
69
+ * @public
70
+ */
71
+ policyEngineId: string | undefined;
72
+ /**
73
+ * <p>The customer-assigned name of the deleted policy engine.</p>
74
+ * @public
75
+ */
76
+ name: string | undefined;
77
+ /**
78
+ * <p>The human-readable description of the deleted policy engine.</p>
79
+ * @public
80
+ */
81
+ description?: string | undefined;
82
+ /**
83
+ * <p>The timestamp when the deleted policy engine was originally created.</p>
84
+ * @public
85
+ */
86
+ createdAt: Date | undefined;
87
+ /**
88
+ * <p>The timestamp when the deleted policy engine was last modified before deletion. This tracks the final state of the policy engine before it was removed from the system.</p>
89
+ * @public
90
+ */
91
+ updatedAt: Date | undefined;
92
+ /**
93
+ * <p>The Amazon Resource Name (ARN) of the deleted policy engine. This globally unique identifier confirms which policy engine resource was successfully removed.</p>
94
+ * @public
95
+ */
96
+ policyEngineArn: string | undefined;
97
+ /**
98
+ * <p>The status of the policy engine deletion operation. This provides status about any issues that occurred during the deletion process.</p>
99
+ * @public
100
+ */
101
+ status: PolicyEngineStatus | undefined;
102
+ /**
103
+ * <p>Additional information about the deletion status. This provides details about the deletion process or any issues that may have occurred.</p>
104
+ * @public
105
+ */
106
+ statusReasons: string[] | undefined;
107
+ /**
108
+ * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the policy engine data.</p>
109
+ * @public
110
+ */
111
+ encryptionKeyArn?: string | undefined;
112
+ }
113
+ /**
114
+ * @public
115
+ */
116
+ export interface GetPolicyEngineRequest {
117
+ /**
118
+ * <p>The unique identifier of the policy engine to be retrieved. This must be a valid policy engine ID that exists within the account.</p>
119
+ * @public
120
+ */
121
+ policyEngineId: string | undefined;
122
+ }
123
+ /**
124
+ * @public
125
+ */
126
+ export interface GetPolicyEngineResponse {
127
+ /**
128
+ * <p>The unique identifier of the retrieved policy engine. This matches the policy engine ID provided in the request and serves as the system identifier.</p>
129
+ * @public
130
+ */
131
+ policyEngineId: string | undefined;
132
+ /**
133
+ * <p>The customer-assigned name of the policy engine. This is the human-readable identifier that was specified when the policy engine was created.</p>
134
+ * @public
135
+ */
136
+ name: string | undefined;
137
+ /**
138
+ * <p>The human-readable description of the policy engine's purpose and scope. This helps administrators understand the policy engine's role in governance.</p>
139
+ * @public
140
+ */
141
+ description?: string | undefined;
142
+ /**
143
+ * <p>The timestamp when the policy engine was originally created.</p>
144
+ * @public
145
+ */
146
+ createdAt: Date | undefined;
147
+ /**
148
+ * <p>The timestamp when the policy engine was last modified. This tracks the most recent changes to the policy engine configuration.</p>
149
+ * @public
150
+ */
151
+ updatedAt: Date | undefined;
152
+ /**
153
+ * <p>The Amazon Resource Name (ARN) of the policy engine. This globally unique identifier can be used for cross-service references and IAM policy statements.</p>
154
+ * @public
155
+ */
156
+ policyEngineArn: string | undefined;
157
+ /**
158
+ * <p>The current status of the policy engine.</p>
159
+ * @public
160
+ */
161
+ status: PolicyEngineStatus | undefined;
162
+ /**
163
+ * <p>Additional information about the policy engine status. This provides details about any failures or the current state of the policy engine.</p>
164
+ * @public
165
+ */
166
+ statusReasons: string[] | undefined;
167
+ /**
168
+ * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the policy engine data.</p>
169
+ * @public
170
+ */
171
+ encryptionKeyArn?: string | undefined;
172
+ }
173
+ /**
174
+ * @public
175
+ */
176
+ export interface ListPolicyEnginesRequest {
177
+ /**
178
+ * <p>A pagination token returned from a previous <a href="https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyEngines.html">ListPolicyEngines</a> call. Use this token to retrieve the next page of results when the response is paginated.</p>
179
+ * @public
180
+ */
181
+ nextToken?: string | undefined;
182
+ /**
183
+ * <p>The maximum number of policy engines to return in a single response. If not specified, the default is 10 policy engines per page, with a maximum of 100 per page.</p>
184
+ * @public
185
+ */
186
+ maxResults?: number | undefined;
187
+ }
188
+ /**
189
+ * <p>Represents a policy engine resource within the AgentCore Policy system. Policy engines serve as containers for grouping related policies and provide the execution context for policy evaluation and management. Each policy engine can be associated with one Gateway (one engine per Gateway), where it intercepts all agent tool calls and evaluates them against the contained policies before allowing tools to execute. The policy engine maintains the Cedar schema generated from the Gateway's tool manifest, ensuring that policies are validated against the actual tools and parameters available. Policy engines support two enforcement modes that can be configured when associating with a Gateway: log-only mode for testing (evaluates decisions without blocking) and enforce mode for production (actively allows or denies based on policy evaluation).</p>
190
+ * @public
191
+ */
192
+ export interface PolicyEngine {
193
+ /**
194
+ * <p>The unique identifier for the policy engine. This system-generated identifier consists of the user name plus a 10-character generated suffix and serves as the primary key for policy engine operations.</p>
195
+ * @public
196
+ */
197
+ policyEngineId: string | undefined;
198
+ /**
199
+ * <p>The customer-assigned immutable name for the policy engine. This human-readable identifier must be unique within the account and cannot exceed 48 characters.</p>
200
+ * @public
201
+ */
202
+ name: string | undefined;
203
+ /**
204
+ * <p>A human-readable description of the policy engine's purpose and scope. Limited to 4,096 characters, this helps administrators understand the policy engine's role in the overall governance strategy.</p>
205
+ * @public
206
+ */
207
+ description?: string | undefined;
208
+ /**
209
+ * <p>The timestamp when the policy engine was originally created. This is automatically set by the service and used for auditing and lifecycle management.</p>
210
+ * @public
211
+ */
212
+ createdAt: Date | undefined;
213
+ /**
214
+ * <p>The timestamp when the policy engine was last modified. This tracks the most recent changes to the policy engine configuration or metadata.</p>
215
+ * @public
216
+ */
217
+ updatedAt: Date | undefined;
218
+ /**
219
+ * <p>The Amazon Resource Name (ARN) of the policy engine. This globally unique identifier can be used for cross-service references and IAM policy statements.</p>
220
+ * @public
221
+ */
222
+ policyEngineArn: string | undefined;
223
+ /**
224
+ * <p>The current status of the policy engine.</p>
225
+ * @public
226
+ */
227
+ status: PolicyEngineStatus | undefined;
228
+ /**
229
+ * <p>Additional information about the policy engine status. This provides details about any failures or the current state of the policy engine lifecycle.</p>
230
+ * @public
231
+ */
232
+ statusReasons: string[] | undefined;
233
+ /**
234
+ * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the policy engine data.</p>
235
+ * @public
236
+ */
237
+ encryptionKeyArn?: string | undefined;
238
+ }
239
+ /**
240
+ * @public
241
+ */
242
+ export interface ListPolicyEnginesResponse {
243
+ /**
244
+ * <p>An array of policy engine objects that exist in the account. Each policy engine object contains the engine metadata, status, and key identifiers for further operations.</p>
245
+ * @public
246
+ */
247
+ policyEngines: PolicyEngine[] | undefined;
248
+ /**
249
+ * <p>A pagination token that can be used in subsequent <a href="https://docs.aws.amazon.com/bedrock-agentcore-control/latest/APIReference/API_ListPolicyEngines.html">ListPolicyEngines</a> calls to retrieve additional results. This token is only present when there are more results available. </p>
250
+ * @public
251
+ */
252
+ nextToken?: string | undefined;
253
+ }
3
254
  /**
4
255
  * Wrapper for updating an optional Description field with PATCH semantics.
5
256
  * When present in an update request, the description is replaced with optionalValue.
@@ -1525,6 +1776,11 @@ export interface CreateGatewayTargetRequest {
1525
1776
  * @public
1526
1777
  */
1527
1778
  metadataConfiguration?: MetadataConfiguration | undefined;
1779
+ /**
1780
+ * <p>The private endpoint configuration for the gateway target. Use this to connect the gateway to private resources in your VPC.</p>
1781
+ * @public
1782
+ */
1783
+ privateEndpoint?: PrivateEndpoint | undefined;
1528
1784
  }
1529
1785
  /**
1530
1786
  * @public
@@ -1590,6 +1846,21 @@ export interface CreateGatewayTargetResponse {
1590
1846
  * @public
1591
1847
  */
1592
1848
  metadataConfiguration?: MetadataConfiguration | undefined;
1849
+ /**
1850
+ * <p>The private endpoint configuration for the gateway target.</p>
1851
+ * @public
1852
+ */
1853
+ privateEndpoint?: PrivateEndpoint | undefined;
1854
+ /**
1855
+ * <p>The managed resources created by the gateway for private endpoint connectivity.</p>
1856
+ * @public
1857
+ */
1858
+ privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
1859
+ /**
1860
+ * <p>OAuth2 authorization data for the created gateway target. This data is returned when the target requires user authorization through an authorization code grant type.</p>
1861
+ * @public
1862
+ */
1863
+ authorizationData?: AuthorizationData | undefined;
1593
1864
  }
1594
1865
  /**
1595
1866
  * <p>The gateway target.</p>
@@ -1656,6 +1927,21 @@ export interface GatewayTarget {
1656
1927
  * @public
1657
1928
  */
1658
1929
  metadataConfiguration?: MetadataConfiguration | undefined;
1930
+ /**
1931
+ * <p>The private endpoint configuration for a gateway target. Defines how the gateway connects to private resources in your VPC.</p>
1932
+ * @public
1933
+ */
1934
+ privateEndpoint?: PrivateEndpoint | undefined;
1935
+ /**
1936
+ * <p>A list of managed resources created by the gateway for private endpoint connectivity. These resources are created in your account when you use a managed VPC Lattice resource configuration.</p>
1937
+ * @public
1938
+ */
1939
+ privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
1940
+ /**
1941
+ * <p>OAuth2 authorization data for the gateway target. This data is returned when a target is configured with a credential provider with authorization code grant type and requires user federation.</p>
1942
+ * @public
1943
+ */
1944
+ authorizationData?: AuthorizationData | undefined;
1659
1945
  }
1660
1946
  /**
1661
1947
  * @public
@@ -1721,6 +2007,21 @@ export interface GetGatewayTargetResponse {
1721
2007
  * @public
1722
2008
  */
1723
2009
  metadataConfiguration?: MetadataConfiguration | undefined;
2010
+ /**
2011
+ * <p>The private endpoint configuration for the gateway target.</p>
2012
+ * @public
2013
+ */
2014
+ privateEndpoint?: PrivateEndpoint | undefined;
2015
+ /**
2016
+ * <p>The managed resources created by the gateway for private endpoint connectivity.</p>
2017
+ * @public
2018
+ */
2019
+ privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
2020
+ /**
2021
+ * <p>OAuth2 authorization data for the gateway target. This data is returned when the target requires user authorization through an authorization code grant type.</p>
2022
+ * @public
2023
+ */
2024
+ authorizationData?: AuthorizationData | undefined;
1724
2025
  }
1725
2026
  /**
1726
2027
  * @public
@@ -1761,6 +2062,11 @@ export interface UpdateGatewayTargetRequest {
1761
2062
  * @public
1762
2063
  */
1763
2064
  metadataConfiguration?: MetadataConfiguration | undefined;
2065
+ /**
2066
+ * <p>The private endpoint configuration for the gateway target. Use this to connect the gateway to private resources in your VPC.</p>
2067
+ * @public
2068
+ */
2069
+ privateEndpoint?: PrivateEndpoint | undefined;
1764
2070
  }
1765
2071
  /**
1766
2072
  * @public
@@ -1826,6 +2132,21 @@ export interface UpdateGatewayTargetResponse {
1826
2132
  * @public
1827
2133
  */
1828
2134
  metadataConfiguration?: MetadataConfiguration | undefined;
2135
+ /**
2136
+ * <p>The private endpoint configuration for the gateway target.</p>
2137
+ * @public
2138
+ */
2139
+ privateEndpoint?: PrivateEndpoint | undefined;
2140
+ /**
2141
+ * <p>The managed resources created by the gateway for private endpoint connectivity.</p>
2142
+ * @public
2143
+ */
2144
+ privateEndpointManagedResources?: ManagedResourceDetails[] | undefined;
2145
+ /**
2146
+ * <p>OAuth2 authorization data for the updated gateway target. This data is returned when the target requires user authorization through an authorization code grant type.</p>
2147
+ * @public
2148
+ */
2149
+ authorizationData?: AuthorizationData | undefined;
1829
2150
  }
1830
2151
  /**
1831
2152
  * @public
@@ -175,6 +175,7 @@ export declare var GithubOauth2ProviderConfigInput$: StaticStructureSchema;
175
175
  export declare var GithubOauth2ProviderConfigOutput$: StaticStructureSchema;
176
176
  export declare var GoogleOauth2ProviderConfigInput$: StaticStructureSchema;
177
177
  export declare var GoogleOauth2ProviderConfigOutput$: StaticStructureSchema;
178
+ export declare var IamCredentialProvider$: StaticStructureSchema;
178
179
  export declare var IncludedOauth2ProviderConfigInput$: StaticStructureSchema;
179
180
  export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
180
181
  export declare var InferenceConfiguration$: StaticStructureSchema;
@@ -227,6 +228,8 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
227
228
  export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
228
229
  export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
229
230
  export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
231
+ export declare var ManagedLatticeResource$: StaticStructureSchema;
232
+ export declare var ManagedResourceDetails$: StaticStructureSchema;
230
233
  export declare var MCPGatewayConfiguration$: StaticStructureSchema;
231
234
  export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
232
235
  export declare var McpServerTargetConfiguration$: StaticStructureSchema;
@@ -245,6 +248,7 @@ export declare var ModifySelfManagedConfiguration$: StaticStructureSchema;
245
248
  export declare var ModifyStrategyConfiguration$: StaticStructureSchema;
246
249
  export declare var NetworkConfiguration$: StaticStructureSchema;
247
250
  export declare var NumericalScaleDefinition$: StaticStructureSchema;
251
+ export declare var OAuth2AuthorizationData$: StaticStructureSchema;
248
252
  export declare var Oauth2AuthorizationServerMetadata$: StaticStructureSchema;
249
253
  export declare var Oauth2CredentialProviderItem$: StaticStructureSchema;
250
254
  export declare var OAuthCredentialProvider$: StaticStructureSchema;
@@ -340,6 +344,7 @@ export declare var WorkloadIdentityDetails$: StaticStructureSchema;
340
344
  export declare var WorkloadIdentityType$: StaticStructureSchema;
341
345
  export declare var AgentRuntimeArtifact$: StaticUnionSchema;
342
346
  export declare var ApiSchemaConfiguration$: StaticUnionSchema;
347
+ export declare var AuthorizationData$: StaticUnionSchema;
343
348
  export declare var AuthorizerConfiguration$: StaticUnionSchema;
344
349
  export declare var CertificateLocation$: StaticUnionSchema;
345
350
  export declare var ClaimMatchValueType$: StaticUnionSchema;
@@ -365,6 +370,7 @@ export declare var FilterValue$: StaticUnionSchema;
365
370
  export declare var GatewayProtocolConfiguration$: StaticUnionSchema;
366
371
  export declare var InterceptorConfiguration$: StaticUnionSchema;
367
372
  export declare var McpTargetConfiguration$: StaticUnionSchema;
373
+ export declare var McpToolSchemaConfiguration$: StaticUnionSchema;
368
374
  export declare var MemoryStrategyInput$: StaticUnionSchema;
369
375
  export declare var ModifyConsolidationConfiguration$: StaticUnionSchema;
370
376
  export declare var ModifyExtractionConfiguration$: StaticUnionSchema;
@@ -373,11 +379,13 @@ export declare var Oauth2Discovery$: StaticUnionSchema;
373
379
  export declare var Oauth2ProviderConfigInput$: StaticUnionSchema;
374
380
  export declare var Oauth2ProviderConfigOutput$: StaticUnionSchema;
375
381
  export declare var PolicyDefinition$: StaticUnionSchema;
382
+ export declare var PrivateEndpoint$: StaticUnionSchema;
376
383
  export declare var RatingScale$: StaticUnionSchema;
377
384
  export declare var ReflectionConfiguration$: StaticUnionSchema;
378
385
  export declare var RequestHeaderConfiguration$: StaticUnionSchema;
379
386
  export declare var Resource$: StaticUnionSchema;
380
387
  export declare var ResourceLocation$: StaticUnionSchema;
388
+ export declare var SelfManagedLatticeResource$: StaticUnionSchema;
381
389
  export declare var StreamDeliveryResource$: StaticUnionSchema;
382
390
  export declare var TargetConfiguration$: StaticUnionSchema;
383
391
  export declare var ToolSchema$: StaticUnionSchema;
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreControlClient";
8
- import {
9
- CreatePolicyEngineRequest,
10
- CreatePolicyEngineResponse,
11
- } from "../models/models_0";
8
+ import { CreatePolicyEngineRequest } from "../models/models_0";
9
+ import { CreatePolicyEngineResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface CreatePolicyEngineCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DeletePolicyEngineRequest,
10
10
  DeletePolicyEngineResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DeletePolicyEngineCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetPolicyEngineRequest,
10
10
  GetPolicyEngineResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetPolicyEngineCommandInput extends GetPolicyEngineRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListPolicyEnginesRequest,
10
10
  ListPolicyEnginesResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListPolicyEnginesCommandInput
@@ -197,6 +197,12 @@ export declare const CredentialProviderType: {
197
197
  };
198
198
  export type CredentialProviderType =
199
199
  (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
200
+ export declare const EndpointIpAddressType: {
201
+ readonly IPV4: "IPV4";
202
+ readonly IPV6: "IPV6";
203
+ };
204
+ export type EndpointIpAddressType =
205
+ (typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
200
206
  export declare const RestApiMethod: {
201
207
  readonly DELETE: "DELETE";
202
208
  readonly GET: "GET";
@@ -217,12 +223,15 @@ export declare const SchemaType: {
217
223
  };
218
224
  export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
219
225
  export declare const TargetStatus: {
226
+ readonly CREATE_PENDING_AUTH: "CREATE_PENDING_AUTH";
220
227
  readonly CREATING: "CREATING";
221
228
  readonly DELETING: "DELETING";
222
229
  readonly FAILED: "FAILED";
223
230
  readonly READY: "READY";
231
+ readonly SYNCHRONIZE_PENDING_AUTH: "SYNCHRONIZE_PENDING_AUTH";
224
232
  readonly SYNCHRONIZE_UNSUCCESSFUL: "SYNCHRONIZE_UNSUCCESSFUL";
225
233
  readonly SYNCHRONIZING: "SYNCHRONIZING";
234
+ readonly UPDATE_PENDING_AUTH: "UPDATE_PENDING_AUTH";
226
235
  readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
227
236
  readonly UPDATING: "UPDATING";
228
237
  };