@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.
Files changed (35) hide show
  1. package/dist-cjs/index.js +66 -28
  2. package/dist-es/models/enums.js +9 -0
  3. package/dist-es/models/errors.js +16 -0
  4. package/dist-es/schemas/schemas_0.js +38 -28
  5. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +1 -1
  6. package/dist-types/commands/CreatePaymentConnectorCommand.d.ts +6 -1
  7. package/dist-types/commands/CreatePaymentManagerCommand.d.ts +2 -0
  8. package/dist-types/commands/DeletePaymentConnectorCommand.d.ts +1 -1
  9. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +1 -1
  10. package/dist-types/commands/GetPaymentConnectorCommand.d.ts +2 -1
  11. package/dist-types/commands/GetPaymentManagerCommand.d.ts +1 -0
  12. package/dist-types/commands/ListPaymentConnectorsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListPaymentManagersCommand.d.ts +1 -0
  14. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +1 -1
  15. package/dist-types/commands/UpdatePaymentConnectorCommand.d.ts +5 -1
  16. package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +2 -0
  17. package/dist-types/models/enums.d.ts +17 -0
  18. package/dist-types/models/errors.d.ts +22 -0
  19. package/dist-types/models/models_0.d.ts +2 -2
  20. package/dist-types/models/models_1.d.ts +51 -1
  21. package/dist-types/runtimeConfig.browser.d.ts +38 -38
  22. package/dist-types/runtimeConfig.d.ts +36 -36
  23. package/dist-types/runtimeConfig.native.d.ts +37 -37
  24. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  25. package/dist-types/schemas/schemas_0.d.ts +1 -0
  26. package/dist-types/ts3.4/models/enums.d.ts +11 -0
  27. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +2 -2
  29. package/dist-types/ts3.4/models/models_1.d.ts +11 -0
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +54 -56
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +57 -57
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +58 -60
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  35. package/package.json +5 -5
@@ -26,6 +26,7 @@ import {
26
26
  OnlineEvaluationConfigStatus,
27
27
  OnlineEvaluationExecutionStatus,
28
28
  OverrideType,
29
+ PaymentConnectorProvisionMode,
29
30
  PaymentConnectorStatus,
30
31
  PaymentConnectorType,
31
32
  PaymentCredentialProviderVendorType,
@@ -2722,6 +2723,7 @@ export interface CreatePaymentManagerRequest {
2722
2723
  roleArn: string | undefined;
2723
2724
  clientToken?: string | undefined;
2724
2725
  tags?: Record<string, string> | undefined;
2726
+ kmsKeyArn?: string | undefined;
2725
2727
  }
2726
2728
  export interface CreatePaymentManagerResponse {
2727
2729
  paymentManagerArn: string | undefined;
@@ -2734,6 +2736,7 @@ export interface CreatePaymentManagerResponse {
2734
2736
  createdAt: Date | undefined;
2735
2737
  status: PaymentManagerStatus | undefined;
2736
2738
  tags?: Record<string, string> | undefined;
2739
+ kmsKeyArn?: string | undefined;
2737
2740
  }
2738
2741
  export interface DeletePaymentManagerRequest {
2739
2742
  paymentManagerId: string | undefined;
@@ -2759,6 +2762,7 @@ export interface GetPaymentManagerResponse {
2759
2762
  lastUpdatedAt: Date | undefined;
2760
2763
  status: PaymentManagerStatus | undefined;
2761
2764
  tags?: Record<string, string> | undefined;
2765
+ kmsKeyArn?: string | undefined;
2762
2766
  }
2763
2767
  export interface ListPaymentManagersRequest {
2764
2768
  maxResults?: number | undefined;
@@ -2774,6 +2778,7 @@ export interface PaymentManagerSummary {
2774
2778
  status: PaymentManagerStatus | undefined;
2775
2779
  createdAt?: Date | undefined;
2776
2780
  lastUpdatedAt: Date | undefined;
2781
+ kmsKeyArn?: string | undefined;
2777
2782
  }
2778
2783
  export interface ListPaymentManagersResponse {
2779
2784
  paymentManagers: PaymentManagerSummary[] | undefined;
@@ -2814,6 +2819,7 @@ export interface CreatePaymentConnectorRequest {
2814
2819
  description?: string | undefined;
2815
2820
  type: PaymentConnectorType | undefined;
2816
2821
  credentialProviderConfigurations: CredentialsProviderConfiguration[] | undefined;
2822
+ provisionMode?: PaymentConnectorProvisionMode | undefined;
2817
2823
  clientToken?: string | undefined;
2818
2824
  }
2819
2825
  export interface CreatePaymentConnectorResponse {
@@ -2824,6 +2830,7 @@ export interface CreatePaymentConnectorResponse {
2824
2830
  credentialProviderConfigurations: CredentialsProviderConfiguration[] | undefined;
2825
2831
  createdAt: Date | undefined;
2826
2832
  status: PaymentConnectorStatus | undefined;
2833
+ authorizationUrl?: string | undefined;
2827
2834
  }
2828
2835
  export interface DeletePaymentConnectorRequest {
2829
2836
  paymentManagerId: string | undefined;
@@ -2847,6 +2854,7 @@ export interface GetPaymentConnectorResponse {
2847
2854
  createdAt: Date | undefined;
2848
2855
  lastUpdatedAt: Date | undefined;
2849
2856
  status: PaymentConnectorStatus | undefined;
2857
+ authorizationUrl?: string | undefined;
2850
2858
  }
2851
2859
  export interface ListPaymentConnectorsRequest {
2852
2860
  paymentManagerId: string | undefined;
@@ -2880,6 +2888,7 @@ export interface UpdatePaymentConnectorResponse {
2880
2888
  credentialProviderConfigurations: CredentialsProviderConfiguration[] | undefined;
2881
2889
  lastUpdatedAt: Date | undefined;
2882
2890
  status: PaymentConnectorStatus | undefined;
2891
+ authorizationUrl?: string | undefined;
2883
2892
  }
2884
2893
  export interface UpdatePaymentManagerRequest {
2885
2894
  paymentManagerId: string | undefined;
@@ -2888,6 +2897,7 @@ export interface UpdatePaymentManagerRequest {
2888
2897
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
2889
2898
  roleArn?: string | undefined;
2890
2899
  clientToken?: string | undefined;
2900
+ kmsKeyArn?: string | undefined;
2891
2901
  }
2892
2902
  export interface UpdatePaymentManagerResponse {
2893
2903
  paymentManagerArn: string | undefined;
@@ -2898,6 +2908,7 @@ export interface UpdatePaymentManagerResponse {
2898
2908
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
2899
2909
  lastUpdatedAt: Date | undefined;
2900
2910
  status: PaymentManagerStatus | undefined;
2911
+ kmsKeyArn?: string | undefined;
2901
2912
  }
2902
2913
  export interface CreatePolicyEngineRequest {
2903
2914
  name: string | undefined;
@@ -1,81 +1,30 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
2
  import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
3
3
  export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider:
10
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
- defaultUserAgentProvider: (
13
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
14
- ) => Promise<import("@smithy/types").UserAgent>;
15
- maxAttempts: number | import("@smithy/types").Provider<number>;
16
- region: string | import("@smithy/types").Provider<any>;
17
- requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
18
- retryMode: string | import("@smithy/types").Provider<string>;
19
- streamCollector: (
20
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
21
- ) => Promise<Uint8Array>;
22
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
23
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
24
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
- cacheMiddleware?: boolean | undefined;
27
- protocol:
28
- | import("@smithy/types").ClientProtocol<any, any>
29
- | import("@smithy/types").ClientProtocolCtor<any, any>
30
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
31
- protocolSettings: {
32
- defaultNamespace?: string;
33
- [setting: string]: unknown;
34
- };
35
- apiVersion: string;
36
- sha256: import("@smithy/types").HashConstructor;
37
- urlParser: import("@smithy/types").UrlParser;
38
- base64Decoder: import("@smithy/types").Decoder;
39
- base64Encoder: (_input: Uint8Array | string) => string;
40
- utf8Decoder: import("@smithy/types").Decoder;
41
- utf8Encoder: (input: Uint8Array | string) => string;
42
- disableHostPrefix: boolean;
43
- serviceId: string;
44
- profile?: string;
45
- logger: import("@smithy/types").Logger;
46
- extensions: import("./runtimeExtensions").RuntimeExtension[];
4
+ cacheMiddleware?: boolean;
47
5
  customUserAgent?: string | import("@smithy/types").UserAgent;
48
6
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
50
7
  endpoint?:
51
8
  | ((
52
9
  | string
53
10
  | import("@smithy/types").Endpoint
54
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
11
  | import("@smithy/types").EndpointV2
12
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
13
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
14
  ) &
58
15
  (
59
16
  | string
60
- | import("@smithy/types").Provider<string>
61
17
  | import("@smithy/types").Endpoint
62
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
18
  | import("@smithy/types").EndpointV2
19
+ | import("@smithy/types").Provider<string>
20
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
21
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
22
  ))
66
23
  | undefined;
67
- endpointProvider: (
68
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
69
- context?: {
70
- logger?: import("@smithy/types").Logger;
71
- },
72
- ) => import("@smithy/types").EndpointV2;
73
24
  tls?: boolean;
74
25
  ignoreConfiguredEndpointUrls?: boolean;
75
26
  serviceConfiguredEndpoint?: never;
76
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
77
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
27
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
79
28
  credentials?:
80
29
  | import("@smithy/types").AwsCredentialIdentity
81
30
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -92,4 +41,53 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
92
41
  import("@smithy/signature-v4").SignatureV4CryptoInit,
93
42
  ) => import("@smithy/types").RequestSigner;
94
43
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
44
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
45
+ apiVersion: string;
46
+ base64Decoder: import("@smithy/types").Decoder;
47
+ base64Encoder: (_input: Uint8Array | string) => string;
48
+ disableHostPrefix: boolean;
49
+ endpointProvider: (
50
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
51
+ context?: {
52
+ logger?: import("@smithy/types").Logger;
53
+ },
54
+ ) => import("@smithy/types").EndpointV2;
55
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
56
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
57
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
58
+ logger: import("@smithy/types").Logger;
59
+ protocol:
60
+ | import("@smithy/types").$ClientProtocol<any, any>
61
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
62
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
63
+ protocolSettings: {
64
+ [setting: string]: unknown;
65
+ defaultNamespace?: string;
66
+ };
67
+ serviceId: string;
68
+ sha256: import("@smithy/types").HashConstructor;
69
+ urlParser: import("@smithy/types").UrlParser;
70
+ utf8Decoder: import("@smithy/types").Decoder;
71
+ utf8Encoder: (input: Uint8Array | string) => string;
72
+ profile?: string;
73
+ runtime: string;
74
+ defaultsMode: import("@smithy/types").Provider<
75
+ import("@smithy/core/client").ResolvedDefaultsMode
76
+ >;
77
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
78
+ credentialDefaultProvider:
79
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
80
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
81
+ defaultUserAgentProvider: (
82
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
83
+ ) => Promise<import("@smithy/types").UserAgent>;
84
+ maxAttempts: number | import("@smithy/types").Provider<number>;
85
+ region: string | import("@smithy/types").Provider<any>;
86
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
87
+ retryMode: string | import("@smithy/types").Provider<string>;
88
+ streamCollector: (
89
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
90
+ ) => Promise<Uint8Array>;
91
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
92
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
95
93
  };
@@ -1,81 +1,29 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
2
  import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
3
3
  export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
4
- runtime: string;
5
- defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/core/client").ResolvedDefaultsMode
7
- >;
8
- authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider:
11
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
- | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
- ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
- defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
- ) => Promise<import("@smithy/types").UserAgent>;
18
- maxAttempts: number | import("@smithy/types").Provider<number>;
19
- region: string | import("@smithy/types").Provider<string>;
20
- requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
21
- retryMode: string | import("@smithy/types").Provider<string>;
22
- streamCollector: (
23
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
24
- ) => Promise<Uint8Array>;
25
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
- userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
28
- cacheMiddleware?: boolean | undefined;
29
- protocol:
30
- | import("@smithy/types").ClientProtocol<any, any>
31
- | import("@smithy/types").ClientProtocolCtor<any, any>
32
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
33
- protocolSettings: {
34
- defaultNamespace?: string;
35
- [setting: string]: unknown;
36
- };
37
- apiVersion: string;
38
- sha256: import("@smithy/types").HashConstructor;
39
- urlParser: import("@smithy/types").UrlParser;
40
- base64Decoder: import("@smithy/types").Decoder;
41
- base64Encoder: (_input: Uint8Array | string) => string;
42
- utf8Decoder: import("@smithy/types").Decoder;
43
- utf8Encoder: (input: Uint8Array | string) => string;
44
- disableHostPrefix: boolean;
45
- serviceId: string;
46
- profile?: string;
47
- logger: import("@smithy/types").Logger;
48
- extensions: import("./runtimeExtensions").RuntimeExtension[];
4
+ cacheMiddleware?: boolean;
49
5
  customUserAgent?: string | import("@smithy/types").UserAgent;
50
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
51
6
  endpoint?:
52
7
  | ((
53
8
  | string
54
9
  | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
10
  | import("@smithy/types").EndpointV2
11
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
12
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
58
13
  ) &
59
14
  (
60
15
  | string
61
- | import("@smithy/types").Provider<string>
62
16
  | import("@smithy/types").Endpoint
63
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
64
17
  | import("@smithy/types").EndpointV2
18
+ | import("@smithy/types").Provider<string>
19
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
65
20
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
66
21
  ))
67
22
  | undefined;
68
- endpointProvider: (
69
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
70
- context?: {
71
- logger?: import("@smithy/types").Logger;
72
- },
73
- ) => import("@smithy/types").EndpointV2;
74
23
  tls?: boolean;
75
24
  ignoreConfiguredEndpointUrls?: boolean;
76
25
  serviceConfiguredEndpoint?: never;
77
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
79
27
  credentials?:
80
28
  | import("@smithy/types").AwsCredentialIdentity
81
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -92,4 +40,56 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
92
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
93
41
  ) => import("@smithy/types").RequestSigner;
94
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ apiVersion: string;
44
+ base64Decoder: import("@smithy/types").Decoder;
45
+ base64Encoder: (_input: Uint8Array | string) => string;
46
+ disableHostPrefix: boolean;
47
+ endpointProvider: (
48
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
49
+ context?: {
50
+ logger?: import("@smithy/types").Logger;
51
+ },
52
+ ) => import("@smithy/types").EndpointV2;
53
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
54
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
55
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
56
+ logger: import("@smithy/types").Logger;
57
+ protocol:
58
+ | import("@smithy/types").$ClientProtocol<any, any>
59
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
60
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
61
+ protocolSettings: {
62
+ [setting: string]: unknown;
63
+ defaultNamespace?: string;
64
+ };
65
+ serviceId: string;
66
+ sha256: import("@smithy/types").HashConstructor;
67
+ urlParser: import("@smithy/types").UrlParser;
68
+ utf8Decoder: import("@smithy/types").Decoder;
69
+ utf8Encoder: (input: Uint8Array | string) => string;
70
+ runtime: string;
71
+ defaultsMode: import("@smithy/types").Provider<
72
+ import("@smithy/core/client").ResolvedDefaultsMode
73
+ >;
74
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
75
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
76
+ credentialDefaultProvider:
77
+ | ((
78
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
79
+ ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
80
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
81
+ defaultUserAgentProvider: (
82
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
83
+ ) => Promise<import("@smithy/types").UserAgent>;
84
+ maxAttempts: number | import("@smithy/types").Provider<number>;
85
+ region: string | import("@smithy/types").Provider<string>;
86
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
87
+ retryMode: string | import("@smithy/types").Provider<string>;
88
+ streamCollector: (
89
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
90
+ ) => Promise<Uint8Array>;
91
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
92
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
93
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
94
+ profile?: string;
95
95
  };
@@ -1,85 +1,29 @@
1
1
  import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient";
2
2
  export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientConfig) => {
3
- runtime: string;
4
- requestHandler:
5
- | import("@smithy/types").NodeHttpHandlerOptions
6
- | import("@smithy/types").FetchHttpHandlerOptions
7
- | Record<string, unknown>
8
- | import("@smithy/core/protocols").HttpHandler<any>
9
- | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
3
  cacheMiddleware?: boolean;
11
- protocol:
12
- | import("@smithy/types").ClientProtocol<any, any>
13
- | import("@smithy/types").ClientProtocolCtor<any, any>
14
- | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
15
- protocolSettings: {
16
- defaultNamespace?: string;
17
- [setting: string]: unknown;
18
- };
19
- apiVersion: string;
20
- sha256: import("@smithy/types").HashConstructor;
21
- urlParser: import("@smithy/types").UrlParser;
22
- bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
- streamCollector: (
24
- stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
25
- ) => Promise<Uint8Array>;
26
- base64Decoder: import("@smithy/types").Decoder;
27
- base64Encoder: (_input: Uint8Array | string) => string;
28
- utf8Decoder: import("@smithy/types").Decoder;
29
- utf8Encoder: (input: Uint8Array | string) => string;
30
- disableHostPrefix: boolean;
31
- serviceId: string;
32
- useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
- useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
35
- (boolean | import("@smithy/types").Provider<boolean | undefined>);
36
- region: string | import("@smithy/types").Provider<any>;
37
- profile?: string;
38
- defaultUserAgentProvider: (
39
- config?: import("@aws-sdk/core/client").PreviouslyResolved,
40
- ) => Promise<import("@smithy/types").UserAgent>;
41
- credentialDefaultProvider:
42
- | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
43
- | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
44
- maxAttempts: number | import("@smithy/types").Provider<number>;
45
- retryMode: string | import("@smithy/types").Provider<string>;
46
- logger: import("@smithy/types").Logger;
47
- extensions: import("./runtimeExtensions").RuntimeExtension[];
48
- defaultsMode:
49
- | import("@smithy/core/client").DefaultsMode
50
- | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
51
4
  customUserAgent?: string | import("@smithy/types").UserAgent;
52
5
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
54
6
  endpoint?:
55
7
  | ((
56
8
  | string
57
9
  | import("@smithy/types").Endpoint
58
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
10
  | import("@smithy/types").EndpointV2
11
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
12
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
13
  ) &
62
14
  (
63
15
  | string
64
- | import("@smithy/types").Provider<string>
65
16
  | import("@smithy/types").Endpoint
66
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
17
  | import("@smithy/types").EndpointV2
18
+ | import("@smithy/types").Provider<string>
19
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
68
20
  | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
21
  ))
70
22
  | undefined;
71
- endpointProvider: (
72
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
73
- context?: {
74
- logger?: import("@smithy/types").Logger;
75
- },
76
- ) => import("@smithy/types").EndpointV2;
77
23
  tls?: boolean;
78
24
  ignoreConfiguredEndpointUrls?: boolean;
79
25
  serviceConfiguredEndpoint?: never;
80
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
81
- httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
82
- httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
26
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
83
27
  credentials?:
84
28
  | import("@smithy/types").AwsCredentialIdentity
85
29
  | import("@smithy/types").AwsCredentialIdentityProvider;
@@ -96,4 +40,58 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
96
40
  import("@smithy/signature-v4").SignatureV4CryptoInit,
97
41
  ) => import("@smithy/types").RequestSigner;
98
42
  disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
43
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
44
+ apiVersion: string;
45
+ base64Decoder: import("@smithy/types").Decoder;
46
+ base64Encoder: (_input: Uint8Array | string) => string;
47
+ disableHostPrefix: boolean;
48
+ endpointProvider: (
49
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
50
+ context?: {
51
+ logger?: import("@smithy/types").Logger;
52
+ },
53
+ ) => import("@smithy/types").EndpointV2;
54
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
55
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreControlHttpAuthSchemeProvider;
56
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
57
+ logger: import("@smithy/types").Logger;
58
+ protocol:
59
+ | import("@smithy/types").$ClientProtocol<any, any>
60
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
61
+ | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
62
+ protocolSettings: {
63
+ [setting: string]: unknown;
64
+ defaultNamespace?: string;
65
+ };
66
+ serviceId: string;
67
+ sha256: import("@smithy/types").HashConstructor;
68
+ urlParser: import("@smithy/types").UrlParser;
69
+ utf8Decoder: import("@smithy/types").Decoder;
70
+ utf8Encoder: (input: Uint8Array | string) => string;
71
+ profile?: string;
72
+ defaultsMode:
73
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
74
+ | import("@smithy/core/client").DefaultsMode;
75
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
76
+ credentialDefaultProvider:
77
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
78
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
79
+ defaultUserAgentProvider: (
80
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
81
+ ) => Promise<import("@smithy/types").UserAgent>;
82
+ maxAttempts: number | import("@smithy/types").Provider<number>;
83
+ region: string | import("@smithy/types").Provider<any>;
84
+ requestHandler:
85
+ | import("@smithy/fetch-http-handler").FetchHttpHandler
86
+ | import("@smithy/types").FetchHttpHandlerOptions
87
+ | import("@smithy/types").NodeHttpHandlerOptions
88
+ | Record<string, unknown>
89
+ | import("@smithy/core/protocols").HttpHandler<any>;
90
+ retryMode: string | import("@smithy/types").Provider<string>;
91
+ streamCollector: (
92
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
93
+ ) => Promise<Uint8Array>;
94
+ useDualstackEndpoint: boolean | (() => Promise<boolean>);
95
+ useFipsEndpoint: boolean | (() => Promise<boolean>);
96
+ runtime: string;
99
97
  };
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
6
6
  base64Encoder: (_input: Uint8Array | string) => string;
7
7
  disableHostPrefix: boolean;
8
8
  endpointProvider: (
9
- endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ params: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
12
  },
@@ -16,8 +16,8 @@ export declare const getRuntimeConfig: (config: BedrockAgentCoreControlClientCon
16
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
17
  logger: import("@smithy/types").Logger;
18
18
  protocol:
19
- | import("@smithy/types").ClientProtocol<any, any>
20
- | import("@smithy/types").ClientProtocolCtor<any, any>
19
+ | import("@smithy/types").$ClientProtocol<any, any>
20
+ | import("@smithy/types").$ClientProtocolCtor<any, any>
21
21
  | typeof AwsRestJsonProtocol;
22
22
  protocolSettings: {
23
23
  [setting: string]: unknown;
@@ -17,6 +17,7 @@ export declare var ResourceNotFoundException$: StaticErrorSchema;
17
17
  export declare var RetryableConflictException$: StaticErrorSchema;
18
18
  export declare var ServiceException$: StaticErrorSchema;
19
19
  export declare var ServiceQuotaExceededException$: StaticErrorSchema;
20
+ export declare var SubscriptionRequiredException$: StaticErrorSchema;
20
21
  export declare var ThrottledException$: StaticErrorSchema;
21
22
  export declare var ThrottlingException$: StaticErrorSchema;
22
23
  export declare var UnauthorizedException$: StaticErrorSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agentcore-control",
3
- "version": "3.1109.0",
3
+ "version": "3.1111.0",
4
4
  "description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-bedrock-agentcore-control",
6
6
  "license": "Apache-2.0",
@@ -46,9 +46,9 @@
46
46
  "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.977.7",
50
- "@aws-sdk/credential-provider-node": "^3.972.79",
51
- "@aws-sdk/types": "^3.974.3",
49
+ "@aws-sdk/core": "^3.977.8",
50
+ "@aws-sdk/credential-provider-node": "^3.972.80",
51
+ "@aws-sdk/types": "^3.974.4",
52
52
  "@smithy/core": "^3.31.1",
53
53
  "@smithy/fetch-http-handler": "^5.6.13",
54
54
  "@smithy/node-http-handler": "^4.9.13",
@@ -61,7 +61,7 @@
61
61
  "concurrently": "7.0.0",
62
62
  "downlevel-dts": "0.10.1",
63
63
  "premove": "4.0.0",
64
- "typescript": "~6.0.3"
64
+ "typescript": "~7.0.2"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=20.0.0"