@aws-sdk/client-bedrock-agentcore-control 3.1109.0 → 3.1111.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +66 -28
- package/dist-es/models/enums.js +9 -0
- package/dist-es/models/errors.js +16 -0
- package/dist-es/schemas/schemas_0.js +38 -28
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +1 -1
- package/dist-types/commands/CreatePaymentConnectorCommand.d.ts +6 -1
- package/dist-types/commands/CreatePaymentManagerCommand.d.ts +2 -0
- package/dist-types/commands/DeletePaymentConnectorCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +1 -1
- package/dist-types/commands/GetPaymentConnectorCommand.d.ts +2 -1
- package/dist-types/commands/GetPaymentManagerCommand.d.ts +1 -0
- package/dist-types/commands/ListPaymentConnectorsCommand.d.ts +1 -1
- package/dist-types/commands/ListPaymentManagersCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePaymentConnectorCommand.d.ts +5 -1
- package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +2 -0
- package/dist-types/models/enums.d.ts +17 -0
- package/dist-types/models/errors.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +2 -2
- package/dist-types/models/models_1.d.ts +51 -1
- package/dist-types/runtimeConfig.browser.d.ts +38 -38
- package/dist-types/runtimeConfig.d.ts +36 -36
- package/dist-types/runtimeConfig.native.d.ts +37 -37
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +11 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -2
- package/dist-types/ts3.4/models/models_1.d.ts +11 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +54 -56
- package/dist-types/ts3.4/runtimeConfig.d.ts +57 -57
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +58 -60
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +5 -5
|
@@ -1239,6 +1239,18 @@ export declare const PaymentManagerStatus: {
|
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
1241
|
export type PaymentManagerStatus = (typeof PaymentManagerStatus)[keyof typeof PaymentManagerStatus];
|
|
1242
|
+
/**
|
|
1243
|
+
* @public
|
|
1244
|
+
* @enum
|
|
1245
|
+
*/
|
|
1246
|
+
export declare const PaymentConnectorProvisionMode: {
|
|
1247
|
+
readonly MANUAL: "MANUAL";
|
|
1248
|
+
readonly QUICK_CREATE: "QUICK_CREATE";
|
|
1249
|
+
};
|
|
1250
|
+
/**
|
|
1251
|
+
* @public
|
|
1252
|
+
*/
|
|
1253
|
+
export type PaymentConnectorProvisionMode = (typeof PaymentConnectorProvisionMode)[keyof typeof PaymentConnectorProvisionMode];
|
|
1242
1254
|
/**
|
|
1243
1255
|
* @public
|
|
1244
1256
|
* @enum
|
|
@@ -1256,10 +1268,15 @@ export type PaymentConnectorType = (typeof PaymentConnectorType)[keyof typeof Pa
|
|
|
1256
1268
|
* @enum
|
|
1257
1269
|
*/
|
|
1258
1270
|
export declare const PaymentConnectorStatus: {
|
|
1271
|
+
readonly AUTHENTICATION_EXPIRED: "AUTHENTICATION_EXPIRED";
|
|
1272
|
+
readonly AUTHENTICATION_FAILED: "AUTHENTICATION_FAILED";
|
|
1273
|
+
readonly AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED: "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED";
|
|
1259
1274
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1260
1275
|
readonly CREATING: "CREATING";
|
|
1261
1276
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1262
1277
|
readonly DELETING: "DELETING";
|
|
1278
|
+
readonly PENDING_AUTHENTICATION: "PENDING_AUTHENTICATION";
|
|
1279
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
1263
1280
|
readonly READY: "READY";
|
|
1264
1281
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
1265
1282
|
readonly UPDATING: "UPDATING";
|
|
@@ -175,6 +175,28 @@ export declare class ThrottledException extends __BaseException {
|
|
|
175
175
|
*/
|
|
176
176
|
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
177
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* <p>The request failed because it requires an active Amazon Web Services Marketplace subscription that is not present. Subscribe to the required product in Amazon Web Services Marketplace and try again.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
export declare class SubscriptionRequiredException extends __BaseException {
|
|
183
|
+
readonly name: "SubscriptionRequiredException";
|
|
184
|
+
readonly $fault: "client";
|
|
185
|
+
/**
|
|
186
|
+
* URL to the Marketplace listing for subscription
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
subscriptionUrl?: string | undefined;
|
|
190
|
+
/**
|
|
191
|
+
* The product requiring subscription
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
productName?: string | undefined;
|
|
195
|
+
/**
|
|
196
|
+
* @internal
|
|
197
|
+
*/
|
|
198
|
+
constructor(opts: __ExceptionOptionType<SubscriptionRequiredException, __BaseException>);
|
|
199
|
+
}
|
|
178
200
|
/**
|
|
179
201
|
* <p>Exception thrown when a resource is modified concurrently by multiple requests.</p>
|
|
180
202
|
* @public
|
|
@@ -1241,7 +1241,7 @@ export interface CapacityProviderConfiguration {
|
|
|
1241
1241
|
* <p>The Amazon Resource Name (ARN) of the capacity provider to use for the AgentCore Runtime.</p>
|
|
1242
1242
|
* @public
|
|
1243
1243
|
*/
|
|
1244
|
-
capacityProviderArn
|
|
1244
|
+
capacityProviderArn: string | undefined;
|
|
1245
1245
|
}
|
|
1246
1246
|
/**
|
|
1247
1247
|
* <p>Configuration for a capacity provider volume mounted into the AgentCore Runtime. This references a persistent volume by its logical name, as defined in the capacity provider's list of volumes.</p>
|
|
@@ -1704,7 +1704,7 @@ export interface GetAgentRuntimeResponse {
|
|
|
1704
1704
|
* <p>The network configuration for the AgentCore Runtime.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
networkConfiguration
|
|
1707
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* <p>The current status of the AgentCore Runtime.</p>
|
|
1710
1710
|
* @public
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import type { ActorTokenContentType, ClientAuthenticationMethodType, ClusteringFrequency, ContentLevel, ContentType, CredentialProviderVendorType, ExtractionType, FilterOperator, HarnessBedrockApiFormat, HarnessEndpointStatus, HarnessManagedMemoryStrategyType, HarnessOpenAiApiFormat, HarnessStatus, HarnessToolType, HarnessTruncationStrategy, KeyType, ListingMode, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, RestApiMethod, SecretSourceType, SigningAlgorithm, Status, TargetStatus, TargetType } from "./enums";
|
|
2
|
+
import type { ActorTokenContentType, ClientAuthenticationMethodType, ClusteringFrequency, ContentLevel, ContentType, CredentialProviderVendorType, ExtractionType, FilterOperator, HarnessBedrockApiFormat, HarnessEndpointStatus, HarnessManagedMemoryStrategyType, HarnessOpenAiApiFormat, HarnessStatus, HarnessToolType, HarnessTruncationStrategy, KeyType, ListingMode, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorProvisionMode, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, RestApiMethod, SecretSourceType, SigningAlgorithm, Status, TargetStatus, TargetType } from "./enums";
|
|
3
3
|
import type { AuthorizerConfiguration, ContainerConfiguration, FilesystemConfiguration, InferenceConnectorTargetConfiguration, LifecycleConfiguration, NetworkConfiguration, OAuthCredentialProvider, PrivateEndpoint, PrivateEndpointOverride, S3Configuration, Secret, SecretReference, Unit, UpdatedDescription, WorkloadIdentityDetails } from "./models_0";
|
|
4
4
|
/**
|
|
5
5
|
* <p>The configuration that controls how a provider prefix is applied to model IDs during translation.</p>
|
|
@@ -7421,6 +7421,11 @@ export interface CreatePaymentManagerRequest {
|
|
|
7421
7421
|
* @public
|
|
7422
7422
|
*/
|
|
7423
7423
|
tags?: Record<string, string> | undefined;
|
|
7424
|
+
/**
|
|
7425
|
+
* <p>The Amazon Resource Name (ARN) of the customer managed KMS key to use for encrypting sensitive payment manager data at rest. If you don't specify a key, the data is encrypted with an Amazon Web Services owned key.</p>
|
|
7426
|
+
* @public
|
|
7427
|
+
*/
|
|
7428
|
+
kmsKeyArn?: string | undefined;
|
|
7424
7429
|
}
|
|
7425
7430
|
/**
|
|
7426
7431
|
* @public
|
|
@@ -7476,6 +7481,11 @@ export interface CreatePaymentManagerResponse {
|
|
|
7476
7481
|
* @public
|
|
7477
7482
|
*/
|
|
7478
7483
|
tags?: Record<string, string> | undefined;
|
|
7484
|
+
/**
|
|
7485
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt sensitive payment manager data at rest, if configured.</p>
|
|
7486
|
+
* @public
|
|
7487
|
+
*/
|
|
7488
|
+
kmsKeyArn?: string | undefined;
|
|
7479
7489
|
}
|
|
7480
7490
|
/**
|
|
7481
7491
|
* @public
|
|
@@ -7581,6 +7591,11 @@ export interface GetPaymentManagerResponse {
|
|
|
7581
7591
|
* @public
|
|
7582
7592
|
*/
|
|
7583
7593
|
tags?: Record<string, string> | undefined;
|
|
7594
|
+
/**
|
|
7595
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt sensitive payment manager data at rest, if configured.</p>
|
|
7596
|
+
* @public
|
|
7597
|
+
*/
|
|
7598
|
+
kmsKeyArn?: string | undefined;
|
|
7584
7599
|
}
|
|
7585
7600
|
/**
|
|
7586
7601
|
* @public
|
|
@@ -7647,6 +7662,11 @@ export interface PaymentManagerSummary {
|
|
|
7647
7662
|
* @public
|
|
7648
7663
|
*/
|
|
7649
7664
|
lastUpdatedAt: Date | undefined;
|
|
7665
|
+
/**
|
|
7666
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt sensitive payment manager data at rest, if configured.</p>
|
|
7667
|
+
* @public
|
|
7668
|
+
*/
|
|
7669
|
+
kmsKeyArn?: string | undefined;
|
|
7650
7670
|
}
|
|
7651
7671
|
/**
|
|
7652
7672
|
* @public
|
|
@@ -7748,6 +7768,11 @@ export interface CreatePaymentConnectorRequest {
|
|
|
7748
7768
|
* @public
|
|
7749
7769
|
*/
|
|
7750
7770
|
credentialProviderConfigurations: CredentialsProviderConfiguration[] | undefined;
|
|
7771
|
+
/**
|
|
7772
|
+
* <p>The provision mode for creating the payment connector. If you don't specify a value, the default is <code>MANUAL</code>.</p> <ul> <li> <p> <code>MANUAL</code> - You provide the credential provider configurations directly.</p> </li> <li> <p> <code>QUICK_CREATE</code> - The service orchestrates OAuth consent and provisions the credential provider for you.</p> </li> </ul>
|
|
7773
|
+
* @public
|
|
7774
|
+
*/
|
|
7775
|
+
provisionMode?: PaymentConnectorProvisionMode | undefined;
|
|
7751
7776
|
/**
|
|
7752
7777
|
* <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If you don't specify this field, a value is randomly generated for you. If this token matches a previous request, the service ignores the request, but doesn't return an error. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>.</p>
|
|
7753
7778
|
* @public
|
|
@@ -7793,6 +7818,11 @@ export interface CreatePaymentConnectorResponse {
|
|
|
7793
7818
|
* @public
|
|
7794
7819
|
*/
|
|
7795
7820
|
status: PaymentConnectorStatus | undefined;
|
|
7821
|
+
/**
|
|
7822
|
+
* <p>The URL that the user must open to complete OAuth consent. This field is only present when the payment connector status is <code>PENDING_AUTHENTICATION</code>.</p>
|
|
7823
|
+
* @public
|
|
7824
|
+
*/
|
|
7825
|
+
authorizationUrl?: string | undefined;
|
|
7796
7826
|
}
|
|
7797
7827
|
/**
|
|
7798
7828
|
* @public
|
|
@@ -7888,6 +7918,11 @@ export interface GetPaymentConnectorResponse {
|
|
|
7888
7918
|
* @public
|
|
7889
7919
|
*/
|
|
7890
7920
|
status: PaymentConnectorStatus | undefined;
|
|
7921
|
+
/**
|
|
7922
|
+
* <p>The URL that the user must open to complete OAuth consent. This field is only present when the payment connector status is <code>PENDING_AUTHENTICATION</code>.</p>
|
|
7923
|
+
* @public
|
|
7924
|
+
*/
|
|
7925
|
+
authorizationUrl?: string | undefined;
|
|
7891
7926
|
}
|
|
7892
7927
|
/**
|
|
7893
7928
|
* @public
|
|
@@ -8029,6 +8064,11 @@ export interface UpdatePaymentConnectorResponse {
|
|
|
8029
8064
|
* @public
|
|
8030
8065
|
*/
|
|
8031
8066
|
status: PaymentConnectorStatus | undefined;
|
|
8067
|
+
/**
|
|
8068
|
+
* <p>The URL that the user must open to complete OAuth consent. This field is only present when the payment connector status is <code>PENDING_AUTHENTICATION</code>.</p>
|
|
8069
|
+
* @public
|
|
8070
|
+
*/
|
|
8071
|
+
authorizationUrl?: string | undefined;
|
|
8032
8072
|
}
|
|
8033
8073
|
/**
|
|
8034
8074
|
* @public
|
|
@@ -8064,6 +8104,11 @@ export interface UpdatePaymentManagerRequest {
|
|
|
8064
8104
|
* @public
|
|
8065
8105
|
*/
|
|
8066
8106
|
clientToken?: string | undefined;
|
|
8107
|
+
/**
|
|
8108
|
+
* <p>The updated Amazon Resource Name (ARN) of the customer managed KMS key used to encrypt sensitive payment manager data at rest.</p>
|
|
8109
|
+
* @public
|
|
8110
|
+
*/
|
|
8111
|
+
kmsKeyArn?: string | undefined;
|
|
8067
8112
|
}
|
|
8068
8113
|
/**
|
|
8069
8114
|
* @public
|
|
@@ -8109,6 +8154,11 @@ export interface UpdatePaymentManagerResponse {
|
|
|
8109
8154
|
* @public
|
|
8110
8155
|
*/
|
|
8111
8156
|
status: PaymentManagerStatus | undefined;
|
|
8157
|
+
/**
|
|
8158
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt sensitive payment manager data at rest, if configured.</p>
|
|
8159
|
+
* @public
|
|
8160
|
+
*/
|
|
8161
|
+
kmsKeyArn?: string | undefined;
|
|
8112
8162
|
}
|
|
8113
8163
|
/**
|
|
8114
8164
|
* @public
|
|
@@ -4,49 +4,14 @@ import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreCont
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
|
|
7
|
-
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
17
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
18
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
-
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
21
|
-
protocolSettings: {
|
|
22
|
-
defaultNamespace?: string;
|
|
23
|
-
[setting: string]: unknown;
|
|
24
|
-
};
|
|
25
|
-
apiVersion: string;
|
|
26
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
28
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
30
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
|
-
disableHostPrefix: boolean;
|
|
33
|
-
serviceId: string;
|
|
34
|
-
profile?: string;
|
|
35
|
-
logger: import("@smithy/types").Logger;
|
|
36
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
37
8
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
9
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
39
|
-
|
|
40
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
41
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
42
|
-
logger?: import("@smithy/types").Logger;
|
|
43
|
-
}) => import("@smithy/types").EndpointV2;
|
|
10
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
44
11
|
tls?: boolean;
|
|
45
12
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
13
|
serviceConfiguredEndpoint?: never;
|
|
47
|
-
|
|
48
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
49
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
50
15
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
16
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
17
|
signingEscapePath?: boolean;
|
|
@@ -54,4 +19,39 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
|
|
|
54
19
|
signingRegion?: string;
|
|
55
20
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
21
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
28
|
+
logger?: import("@smithy/types").Logger;
|
|
29
|
+
}) => import("@smithy/types").EndpointV2;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
32
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
35
|
+
protocolSettings: {
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
};
|
|
39
|
+
serviceId: string;
|
|
40
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
+
profile?: string;
|
|
45
|
+
runtime: string;
|
|
46
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
47
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
48
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
49
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
50
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
52
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
53
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
55
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
56
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
57
57
|
};
|
|
@@ -4,11 +4,46 @@ import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreCont
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
9
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
10
|
+
tls?: boolean;
|
|
11
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
12
|
+
serviceConfiguredEndpoint?: never;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
logger?: import("@smithy/types").Logger;
|
|
27
|
+
}) => import("@smithy/types").EndpointV2;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
30
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
7
42
|
runtime: string;
|
|
8
43
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
44
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
45
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((
|
|
46
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
12
47
|
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
49
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -18,40 +53,5 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
|
|
|
18
53
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
54
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
55
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
21
|
-
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
23
|
-
protocolSettings: {
|
|
24
|
-
defaultNamespace?: string;
|
|
25
|
-
[setting: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
apiVersion: string;
|
|
28
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
29
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
|
-
disableHostPrefix: boolean;
|
|
35
|
-
serviceId: string;
|
|
36
56
|
profile?: string;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
41
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
|
-
logger?: import("@smithy/types").Logger;
|
|
44
|
-
}) => import("@smithy/types").EndpointV2;
|
|
45
|
-
tls?: boolean;
|
|
46
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
47
|
-
serviceConfiguredEndpoint?: never;
|
|
48
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
49
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
50
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
|
-
signingEscapePath?: boolean;
|
|
53
|
-
systemClockOffset?: number;
|
|
54
|
-
signingRegion?: string;
|
|
55
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
57
57
|
};
|
|
@@ -3,49 +3,14 @@ import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreCont
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
10
|
-
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
|
-
[setting: string]: unknown;
|
|
13
|
-
};
|
|
14
|
-
apiVersion: string;
|
|
15
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
16
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
-
profile?: string;
|
|
29
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
31
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
-
logger: import("@smithy/types").Logger;
|
|
34
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
-
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
36
7
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
8
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
-
|
|
39
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
40
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
|
-
logger?: import("@smithy/types").Logger;
|
|
42
|
-
}) => import("@smithy/types").EndpointV2;
|
|
9
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
43
10
|
tls?: boolean;
|
|
44
11
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
12
|
serviceConfiguredEndpoint?: never;
|
|
46
|
-
|
|
47
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
49
14
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
50
15
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
51
16
|
signingEscapePath?: boolean;
|
|
@@ -53,4 +18,39 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
|
|
|
53
18
|
signingRegion?: string;
|
|
54
19
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
20
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
logger?: import("@smithy/types").Logger;
|
|
28
|
+
}) => import("@smithy/types").EndpointV2;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
31
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
[setting: string]: unknown;
|
|
36
|
+
defaultNamespace?: string;
|
|
37
|
+
};
|
|
38
|
+
serviceId: string;
|
|
39
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
40
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
41
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
43
|
+
profile?: string;
|
|
44
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
45
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
46
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
47
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
48
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
49
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
50
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
51
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
53
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
54
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
55
|
+
runtime: string;
|
|
56
56
|
};
|
|
@@ -8,14 +8,14 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
|
|
|
8
8
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
|
-
endpointProvider: (
|
|
11
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
12
|
logger?: import("@smithy/types").Logger;
|
|
13
13
|
}) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
16
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
|
-
protocol: import("@smithy/types")
|
|
18
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
19
|
protocolSettings: {
|
|
20
20
|
[setting: string]: unknown;
|
|
21
21
|
defaultNamespace?: string;
|
|
@@ -12,6 +12,7 @@ export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
|
12
12
|
export declare var RetryableConflictException$: StaticErrorSchema;
|
|
13
13
|
export declare var ServiceException$: StaticErrorSchema;
|
|
14
14
|
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var SubscriptionRequiredException$: StaticErrorSchema;
|
|
15
16
|
export declare var ThrottledException$: StaticErrorSchema;
|
|
16
17
|
export declare var ThrottlingException$: StaticErrorSchema;
|
|
17
18
|
export declare var UnauthorizedException$: StaticErrorSchema;
|
|
@@ -625,16 +625,27 @@ export declare const PaymentManagerStatus: {
|
|
|
625
625
|
readonly UPDATING: "UPDATING";
|
|
626
626
|
};
|
|
627
627
|
export type PaymentManagerStatus = (typeof PaymentManagerStatus)[keyof typeof PaymentManagerStatus];
|
|
628
|
+
export declare const PaymentConnectorProvisionMode: {
|
|
629
|
+
readonly MANUAL: "MANUAL";
|
|
630
|
+
readonly QUICK_CREATE: "QUICK_CREATE";
|
|
631
|
+
};
|
|
632
|
+
export type PaymentConnectorProvisionMode =
|
|
633
|
+
(typeof PaymentConnectorProvisionMode)[keyof typeof PaymentConnectorProvisionMode];
|
|
628
634
|
export declare const PaymentConnectorType: {
|
|
629
635
|
readonly COINBASE_CDP: "CoinbaseCDP";
|
|
630
636
|
readonly STRIPE_PRIVY: "StripePrivy";
|
|
631
637
|
};
|
|
632
638
|
export type PaymentConnectorType = (typeof PaymentConnectorType)[keyof typeof PaymentConnectorType];
|
|
633
639
|
export declare const PaymentConnectorStatus: {
|
|
640
|
+
readonly AUTHENTICATION_EXPIRED: "AUTHENTICATION_EXPIRED";
|
|
641
|
+
readonly AUTHENTICATION_FAILED: "AUTHENTICATION_FAILED";
|
|
642
|
+
readonly AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED: "AWS_MARKETPLACE_SUBSCRIPTION_REQUIRED";
|
|
634
643
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
635
644
|
readonly CREATING: "CREATING";
|
|
636
645
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
637
646
|
readonly DELETING: "DELETING";
|
|
647
|
+
readonly PENDING_AUTHENTICATION: "PENDING_AUTHENTICATION";
|
|
648
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
638
649
|
readonly READY: "READY";
|
|
639
650
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
640
651
|
readonly UPDATING: "UPDATING";
|
|
@@ -77,6 +77,13 @@ export declare class ThrottledException extends __BaseException {
|
|
|
77
77
|
$retryable: {};
|
|
78
78
|
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
79
79
|
}
|
|
80
|
+
export declare class SubscriptionRequiredException extends __BaseException {
|
|
81
|
+
readonly name: "SubscriptionRequiredException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
subscriptionUrl?: string | undefined;
|
|
84
|
+
productName?: string | undefined;
|
|
85
|
+
constructor(opts: __ExceptionOptionType<SubscriptionRequiredException, __BaseException>);
|
|
86
|
+
}
|
|
80
87
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
81
88
|
readonly name: "ConcurrentModificationException";
|
|
82
89
|
readonly $fault: "client";
|
|
@@ -474,7 +474,7 @@ export declare namespace AuthorizerConfiguration {
|
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
476
|
export interface CapacityProviderConfiguration {
|
|
477
|
-
capacityProviderArn
|
|
477
|
+
capacityProviderArn: string | undefined;
|
|
478
478
|
}
|
|
479
479
|
export interface CapacityProviderVolumeConfiguration {
|
|
480
480
|
volumeName: string | undefined;
|
|
@@ -626,7 +626,7 @@ export interface GetAgentRuntimeResponse {
|
|
|
626
626
|
createdAt: Date | undefined;
|
|
627
627
|
lastUpdatedAt: Date | undefined;
|
|
628
628
|
roleArn: string | undefined;
|
|
629
|
-
networkConfiguration
|
|
629
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
630
630
|
status: AgentRuntimeStatus | undefined;
|
|
631
631
|
lifecycleConfiguration: LifecycleConfiguration | undefined;
|
|
632
632
|
failureReason?: string | undefined;
|