@aws-sdk/client-bedrock-agentcore-control 3.1043.0 → 3.1045.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 (86) hide show
  1. package/README.md +105 -0
  2. package/dist-cjs/index.js +257 -0
  3. package/dist-cjs/schemas/schemas_0.js +385 -18
  4. package/dist-es/BedrockAgentCoreControl.js +36 -0
  5. package/dist-es/commands/CreatePaymentConnectorCommand.js +16 -0
  6. package/dist-es/commands/CreatePaymentCredentialProviderCommand.js +16 -0
  7. package/dist-es/commands/CreatePaymentManagerCommand.js +16 -0
  8. package/dist-es/commands/DeletePaymentConnectorCommand.js +16 -0
  9. package/dist-es/commands/DeletePaymentCredentialProviderCommand.js +16 -0
  10. package/dist-es/commands/DeletePaymentManagerCommand.js +16 -0
  11. package/dist-es/commands/GetPaymentConnectorCommand.js +16 -0
  12. package/dist-es/commands/GetPaymentCredentialProviderCommand.js +16 -0
  13. package/dist-es/commands/GetPaymentManagerCommand.js +16 -0
  14. package/dist-es/commands/ListPaymentConnectorsCommand.js +16 -0
  15. package/dist-es/commands/ListPaymentCredentialProvidersCommand.js +16 -0
  16. package/dist-es/commands/ListPaymentManagersCommand.js +16 -0
  17. package/dist-es/commands/UpdatePaymentConnectorCommand.js +16 -0
  18. package/dist-es/commands/UpdatePaymentCredentialProviderCommand.js +16 -0
  19. package/dist-es/commands/UpdatePaymentManagerCommand.js +16 -0
  20. package/dist-es/commands/index.js +15 -0
  21. package/dist-es/models/enums.js +30 -0
  22. package/dist-es/pagination/ListPaymentConnectorsPaginator.js +4 -0
  23. package/dist-es/pagination/ListPaymentCredentialProvidersPaginator.js +4 -0
  24. package/dist-es/pagination/ListPaymentManagersPaginator.js +4 -0
  25. package/dist-es/pagination/index.js +3 -0
  26. package/dist-es/schemas/schemas_0.js +370 -4
  27. package/dist-types/BedrockAgentCoreControl.d.ts +128 -0
  28. package/dist-types/BedrockAgentCoreControlClient.d.ts +17 -2
  29. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +8 -0
  30. package/dist-types/commands/CreateHarnessCommand.d.ts +16 -0
  31. package/dist-types/commands/CreatePaymentConnectorCommand.d.ts +124 -0
  32. package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +147 -0
  33. package/dist-types/commands/CreatePaymentManagerCommand.d.ts +251 -0
  34. package/dist-types/commands/DeleteHarnessCommand.d.ts +8 -0
  35. package/dist-types/commands/DeletePaymentConnectorCommand.d.ts +92 -0
  36. package/dist-types/commands/DeletePaymentCredentialProviderCommand.d.ts +90 -0
  37. package/dist-types/commands/DeletePaymentManagerCommand.d.ts +91 -0
  38. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +8 -0
  39. package/dist-types/commands/GetHarnessCommand.d.ts +8 -0
  40. package/dist-types/commands/GetPaymentConnectorCommand.d.ts +106 -0
  41. package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +123 -0
  42. package/dist-types/commands/GetPaymentManagerCommand.d.ts +173 -0
  43. package/dist-types/commands/ListPaymentConnectorsCommand.d.ts +97 -0
  44. package/dist-types/commands/ListPaymentCredentialProvidersCommand.d.ts +102 -0
  45. package/dist-types/commands/ListPaymentManagersCommand.d.ts +100 -0
  46. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +8 -0
  47. package/dist-types/commands/UpdateHarnessCommand.d.ts +16 -0
  48. package/dist-types/commands/UpdatePaymentConnectorCommand.d.ts +124 -0
  49. package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +143 -0
  50. package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +180 -0
  51. package/dist-types/commands/index.d.ts +15 -0
  52. package/dist-types/models/enums.d.ts +76 -0
  53. package/dist-types/models/models_0.d.ts +60 -68
  54. package/dist-types/models/models_1.d.ts +1215 -6
  55. package/dist-types/pagination/ListPaymentConnectorsPaginator.d.ts +7 -0
  56. package/dist-types/pagination/ListPaymentCredentialProvidersPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListPaymentManagersPaginator.d.ts +7 -0
  58. package/dist-types/pagination/index.d.ts +3 -0
  59. package/dist-types/schemas/schemas_0.d.ts +58 -0
  60. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +278 -0
  61. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +90 -0
  62. package/dist-types/ts3.4/commands/CreatePaymentConnectorCommand.d.ts +51 -0
  63. package/dist-types/ts3.4/commands/CreatePaymentCredentialProviderCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/CreatePaymentManagerCommand.d.ts +51 -0
  65. package/dist-types/ts3.4/commands/DeletePaymentConnectorCommand.d.ts +51 -0
  66. package/dist-types/ts3.4/commands/DeletePaymentCredentialProviderCommand.d.ts +51 -0
  67. package/dist-types/ts3.4/commands/DeletePaymentManagerCommand.d.ts +51 -0
  68. package/dist-types/ts3.4/commands/GetPaymentConnectorCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetPaymentCredentialProviderCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/GetPaymentManagerCommand.d.ts +51 -0
  71. package/dist-types/ts3.4/commands/ListPaymentConnectorsCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/ListPaymentCredentialProvidersCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/ListPaymentManagersCommand.d.ts +51 -0
  74. package/dist-types/ts3.4/commands/UpdatePaymentConnectorCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/UpdatePaymentCredentialProviderCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/UpdatePaymentManagerCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  78. package/dist-types/ts3.4/models/enums.d.ts +40 -0
  79. package/dist-types/ts3.4/models/models_0.d.ts +28 -14
  80. package/dist-types/ts3.4/models/models_1.d.ts +345 -2
  81. package/dist-types/ts3.4/pagination/ListPaymentConnectorsPaginator.d.ts +11 -0
  82. package/dist-types/ts3.4/pagination/ListPaymentCredentialProvidersPaginator.d.ts +11 -0
  83. package/dist-types/ts3.4/pagination/ListPaymentManagersPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  85. package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
  86. package/package.json +1 -1
@@ -0,0 +1,251 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { CreatePaymentManagerRequest, CreatePaymentManagerResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreatePaymentManagerCommand}.
14
+ */
15
+ export interface CreatePaymentManagerCommandInput extends CreatePaymentManagerRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreatePaymentManagerCommand}.
21
+ */
22
+ export interface CreatePaymentManagerCommandOutput extends CreatePaymentManagerResponse, __MetadataBearer {
23
+ }
24
+ declare const CreatePaymentManagerCommand_base: {
25
+ new (input: CreatePaymentManagerCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePaymentManagerCommandInput, CreatePaymentManagerCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreatePaymentManagerCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePaymentManagerCommandInput, CreatePaymentManagerCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a new payment manager in your Amazon Web Services account. A payment manager serves as the top-level resource for managing payment processing capabilities, including payment connectors that integrate with supported payment providers.</p> <p>If you specify <code>CUSTOM_JWT</code> as the <code>authorizerType</code>, you must provide an <code>authorizerConfiguration</code>.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, CreatePaymentManagerCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, CreatePaymentManagerCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // CreatePaymentManagerRequest
40
+ * name: "STRING_VALUE", // required
41
+ * description: "STRING_VALUE",
42
+ * authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
43
+ * authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
44
+ * customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
45
+ * discoveryUrl: "STRING_VALUE", // required
46
+ * allowedAudience: [ // AllowedAudienceList
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * allowedClients: [ // AllowedClientsList
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * allowedScopes: [ // AllowedScopesType
53
+ * "STRING_VALUE",
54
+ * ],
55
+ * customClaims: [ // CustomClaimValidationsType
56
+ * { // CustomClaimValidationType
57
+ * inboundTokenClaimName: "STRING_VALUE", // required
58
+ * inboundTokenClaimValueType: "STRING" || "STRING_ARRAY", // required
59
+ * authorizingClaimMatchValue: { // AuthorizingClaimMatchValueType
60
+ * claimMatchValue: { // ClaimMatchValueType Union: only one key present
61
+ * matchValueString: "STRING_VALUE",
62
+ * matchValueStringList: [ // MatchValueStringList
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * },
66
+ * claimMatchOperator: "EQUALS" || "CONTAINS" || "CONTAINS_ANY", // required
67
+ * },
68
+ * },
69
+ * ],
70
+ * privateEndpoint: { // PrivateEndpoint Union: only one key present
71
+ * selfManagedLatticeResource: { // SelfManagedLatticeResource Union: only one key present
72
+ * resourceConfigurationIdentifier: "STRING_VALUE",
73
+ * },
74
+ * managedVpcResource: { // ManagedVpcResource
75
+ * vpcIdentifier: "STRING_VALUE", // required
76
+ * subnetIds: [ // SubnetIds // required
77
+ * "STRING_VALUE",
78
+ * ],
79
+ * endpointIpAddressType: "IPV4" || "IPV6", // required
80
+ * securityGroupIds: [ // SecurityGroupIds
81
+ * "STRING_VALUE",
82
+ * ],
83
+ * tags: { // TagsMap
84
+ * "<keys>": "STRING_VALUE",
85
+ * },
86
+ * routingDomain: "STRING_VALUE",
87
+ * },
88
+ * },
89
+ * privateEndpointOverrides: [ // PrivateEndpointOverrides
90
+ * { // PrivateEndpointOverride
91
+ * domain: "STRING_VALUE", // required
92
+ * privateEndpoint: {// Union: only one key present
93
+ * selfManagedLatticeResource: {// Union: only one key present
94
+ * resourceConfigurationIdentifier: "STRING_VALUE",
95
+ * },
96
+ * managedVpcResource: {
97
+ * vpcIdentifier: "STRING_VALUE", // required
98
+ * subnetIds: [ // required
99
+ * "STRING_VALUE",
100
+ * ],
101
+ * endpointIpAddressType: "IPV4" || "IPV6", // required
102
+ * securityGroupIds: [
103
+ * "STRING_VALUE",
104
+ * ],
105
+ * tags: {
106
+ * "<keys>": "STRING_VALUE",
107
+ * },
108
+ * routingDomain: "STRING_VALUE",
109
+ * },
110
+ * },
111
+ * },
112
+ * ],
113
+ * },
114
+ * },
115
+ * roleArn: "STRING_VALUE", // required
116
+ * clientToken: "STRING_VALUE",
117
+ * tags: "<TagsMap>",
118
+ * };
119
+ * const command = new CreatePaymentManagerCommand(input);
120
+ * const response = await client.send(command);
121
+ * // { // CreatePaymentManagerResponse
122
+ * // paymentManagerArn: "STRING_VALUE", // required
123
+ * // paymentManagerId: "STRING_VALUE", // required
124
+ * // name: "STRING_VALUE", // required
125
+ * // authorizerType: "CUSTOM_JWT" || "AWS_IAM", // required
126
+ * // authorizerConfiguration: { // AuthorizerConfiguration Union: only one key present
127
+ * // customJWTAuthorizer: { // CustomJWTAuthorizerConfiguration
128
+ * // discoveryUrl: "STRING_VALUE", // required
129
+ * // allowedAudience: [ // AllowedAudienceList
130
+ * // "STRING_VALUE",
131
+ * // ],
132
+ * // allowedClients: [ // AllowedClientsList
133
+ * // "STRING_VALUE",
134
+ * // ],
135
+ * // allowedScopes: [ // AllowedScopesType
136
+ * // "STRING_VALUE",
137
+ * // ],
138
+ * // customClaims: [ // CustomClaimValidationsType
139
+ * // { // CustomClaimValidationType
140
+ * // inboundTokenClaimName: "STRING_VALUE", // required
141
+ * // inboundTokenClaimValueType: "STRING" || "STRING_ARRAY", // required
142
+ * // authorizingClaimMatchValue: { // AuthorizingClaimMatchValueType
143
+ * // claimMatchValue: { // ClaimMatchValueType Union: only one key present
144
+ * // matchValueString: "STRING_VALUE",
145
+ * // matchValueStringList: [ // MatchValueStringList
146
+ * // "STRING_VALUE",
147
+ * // ],
148
+ * // },
149
+ * // claimMatchOperator: "EQUALS" || "CONTAINS" || "CONTAINS_ANY", // required
150
+ * // },
151
+ * // },
152
+ * // ],
153
+ * // privateEndpoint: { // PrivateEndpoint Union: only one key present
154
+ * // selfManagedLatticeResource: { // SelfManagedLatticeResource Union: only one key present
155
+ * // resourceConfigurationIdentifier: "STRING_VALUE",
156
+ * // },
157
+ * // managedVpcResource: { // ManagedVpcResource
158
+ * // vpcIdentifier: "STRING_VALUE", // required
159
+ * // subnetIds: [ // SubnetIds // required
160
+ * // "STRING_VALUE",
161
+ * // ],
162
+ * // endpointIpAddressType: "IPV4" || "IPV6", // required
163
+ * // securityGroupIds: [ // SecurityGroupIds
164
+ * // "STRING_VALUE",
165
+ * // ],
166
+ * // tags: { // TagsMap
167
+ * // "<keys>": "STRING_VALUE",
168
+ * // },
169
+ * // routingDomain: "STRING_VALUE",
170
+ * // },
171
+ * // },
172
+ * // privateEndpointOverrides: [ // PrivateEndpointOverrides
173
+ * // { // PrivateEndpointOverride
174
+ * // domain: "STRING_VALUE", // required
175
+ * // privateEndpoint: {// Union: only one key present
176
+ * // selfManagedLatticeResource: {// Union: only one key present
177
+ * // resourceConfigurationIdentifier: "STRING_VALUE",
178
+ * // },
179
+ * // managedVpcResource: {
180
+ * // vpcIdentifier: "STRING_VALUE", // required
181
+ * // subnetIds: [ // required
182
+ * // "STRING_VALUE",
183
+ * // ],
184
+ * // endpointIpAddressType: "IPV4" || "IPV6", // required
185
+ * // securityGroupIds: [
186
+ * // "STRING_VALUE",
187
+ * // ],
188
+ * // tags: {
189
+ * // "<keys>": "STRING_VALUE",
190
+ * // },
191
+ * // routingDomain: "STRING_VALUE",
192
+ * // },
193
+ * // },
194
+ * // },
195
+ * // ],
196
+ * // },
197
+ * // },
198
+ * // roleArn: "STRING_VALUE", // required
199
+ * // workloadIdentityDetails: { // WorkloadIdentityDetails
200
+ * // workloadIdentityArn: "STRING_VALUE", // required
201
+ * // },
202
+ * // createdAt: new Date("TIMESTAMP"), // required
203
+ * // status: "CREATING" || "UPDATING" || "DELETING" || "READY" || "CREATE_FAILED" || "UPDATE_FAILED" || "DELETE_FAILED", // required
204
+ * // tags: "<TagsMap>",
205
+ * // };
206
+ *
207
+ * ```
208
+ *
209
+ * @param CreatePaymentManagerCommandInput - {@link CreatePaymentManagerCommandInput}
210
+ * @returns {@link CreatePaymentManagerCommandOutput}
211
+ * @see {@link CreatePaymentManagerCommandInput} for command's `input` shape.
212
+ * @see {@link CreatePaymentManagerCommandOutput} for command's `response` shape.
213
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
214
+ *
215
+ * @throws {@link AccessDeniedException} (client fault)
216
+ * <p>This exception is thrown when a request is denied per access permissions</p>
217
+ *
218
+ * @throws {@link ConflictException} (client fault)
219
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
220
+ *
221
+ * @throws {@link InternalServerException} (server fault)
222
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
223
+ *
224
+ * @throws {@link ServiceQuotaExceededException} (client fault)
225
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
226
+ *
227
+ * @throws {@link ThrottlingException} (client fault)
228
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
229
+ *
230
+ * @throws {@link ValidationException} (client fault)
231
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
232
+ *
233
+ * @throws {@link BedrockAgentCoreControlServiceException}
234
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
235
+ *
236
+ *
237
+ * @public
238
+ */
239
+ export declare class CreatePaymentManagerCommand extends CreatePaymentManagerCommand_base {
240
+ /** @internal type navigation helper, not in runtime. */
241
+ protected static __types: {
242
+ api: {
243
+ input: CreatePaymentManagerRequest;
244
+ output: CreatePaymentManagerResponse;
245
+ };
246
+ sdk: {
247
+ input: CreatePaymentManagerCommandInput;
248
+ output: CreatePaymentManagerCommandOutput;
249
+ };
250
+ };
251
+ }
@@ -167,6 +167,14 @@ declare const DeleteHarnessCommand_base: {
167
167
  * // sessionStorage: { // SessionStorageConfiguration
168
168
  * // mountPath: "STRING_VALUE", // required
169
169
  * // },
170
+ * // s3FilesAccessPoint: { // S3FilesAccessPointConfiguration
171
+ * // accessPointArn: "STRING_VALUE", // required
172
+ * // mountPath: "STRING_VALUE", // required
173
+ * // },
174
+ * // efsAccessPoint: { // EfsAccessPointConfiguration
175
+ * // accessPointArn: "STRING_VALUE", // required
176
+ * // mountPath: "STRING_VALUE", // required
177
+ * // },
170
178
  * // },
171
179
  * // ],
172
180
  * // },
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { DeletePaymentConnectorRequest, DeletePaymentConnectorResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeletePaymentConnectorCommand}.
14
+ */
15
+ export interface DeletePaymentConnectorCommandInput extends DeletePaymentConnectorRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeletePaymentConnectorCommand}.
21
+ */
22
+ export interface DeletePaymentConnectorCommandOutput extends DeletePaymentConnectorResponse, __MetadataBearer {
23
+ }
24
+ declare const DeletePaymentConnectorCommand_base: {
25
+ new (input: DeletePaymentConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePaymentConnectorCommandInput, DeletePaymentConnectorCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeletePaymentConnectorCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePaymentConnectorCommandInput, DeletePaymentConnectorCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a payment connector.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, DeletePaymentConnectorCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, DeletePaymentConnectorCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // DeletePaymentConnectorRequest
40
+ * paymentManagerId: "STRING_VALUE", // required
41
+ * paymentConnectorId: "STRING_VALUE", // required
42
+ * clientToken: "STRING_VALUE",
43
+ * };
44
+ * const command = new DeletePaymentConnectorCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // DeletePaymentConnectorResponse
47
+ * // status: "CREATING" || "UPDATING" || "DELETING" || "READY" || "CREATE_FAILED" || "UPDATE_FAILED" || "DELETE_FAILED", // required
48
+ * // paymentConnectorId: "STRING_VALUE",
49
+ * // };
50
+ *
51
+ * ```
52
+ *
53
+ * @param DeletePaymentConnectorCommandInput - {@link DeletePaymentConnectorCommandInput}
54
+ * @returns {@link DeletePaymentConnectorCommandOutput}
55
+ * @see {@link DeletePaymentConnectorCommandInput} for command's `input` shape.
56
+ * @see {@link DeletePaymentConnectorCommandOutput} for command's `response` shape.
57
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
58
+ *
59
+ * @throws {@link AccessDeniedException} (client fault)
60
+ * <p>This exception is thrown when a request is denied per access permissions</p>
61
+ *
62
+ * @throws {@link ConflictException} (client fault)
63
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
64
+ *
65
+ * @throws {@link InternalServerException} (server fault)
66
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
70
+ *
71
+ * @throws {@link ThrottlingException} (client fault)
72
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
73
+ *
74
+ * @throws {@link BedrockAgentCoreControlServiceException}
75
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
76
+ *
77
+ *
78
+ * @public
79
+ */
80
+ export declare class DeletePaymentConnectorCommand extends DeletePaymentConnectorCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: DeletePaymentConnectorRequest;
85
+ output: DeletePaymentConnectorResponse;
86
+ };
87
+ sdk: {
88
+ input: DeletePaymentConnectorCommandInput;
89
+ output: DeletePaymentConnectorCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -0,0 +1,90 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { DeletePaymentCredentialProviderRequest, DeletePaymentCredentialProviderResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeletePaymentCredentialProviderCommand}.
14
+ */
15
+ export interface DeletePaymentCredentialProviderCommandInput extends DeletePaymentCredentialProviderRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeletePaymentCredentialProviderCommand}.
21
+ */
22
+ export interface DeletePaymentCredentialProviderCommandOutput extends DeletePaymentCredentialProviderResponse, __MetadataBearer {
23
+ }
24
+ declare const DeletePaymentCredentialProviderCommand_base: {
25
+ new (input: DeletePaymentCredentialProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePaymentCredentialProviderCommandInput, DeletePaymentCredentialProviderCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeletePaymentCredentialProviderCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePaymentCredentialProviderCommandInput, DeletePaymentCredentialProviderCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a payment credential provider and its associated stored credentials.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, DeletePaymentCredentialProviderCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, DeletePaymentCredentialProviderCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // DeletePaymentCredentialProviderRequest
40
+ * name: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new DeletePaymentCredentialProviderCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeletePaymentCredentialProviderCommandInput - {@link DeletePaymentCredentialProviderCommandInput}
49
+ * @returns {@link DeletePaymentCredentialProviderCommandOutput}
50
+ * @see {@link DeletePaymentCredentialProviderCommandInput} for command's `input` shape.
51
+ * @see {@link DeletePaymentCredentialProviderCommandOutput} for command's `response` shape.
52
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>This exception is thrown when a request is denied per access permissions</p>
56
+ *
57
+ * @throws {@link InternalServerException} (server fault)
58
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
59
+ *
60
+ * @throws {@link ResourceNotFoundException} (client fault)
61
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
62
+ *
63
+ * @throws {@link ThrottlingException} (client fault)
64
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
65
+ *
66
+ * @throws {@link UnauthorizedException} (client fault)
67
+ * <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
68
+ *
69
+ * @throws {@link ValidationException} (client fault)
70
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
71
+ *
72
+ * @throws {@link BedrockAgentCoreControlServiceException}
73
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
74
+ *
75
+ *
76
+ * @public
77
+ */
78
+ export declare class DeletePaymentCredentialProviderCommand extends DeletePaymentCredentialProviderCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: DeletePaymentCredentialProviderRequest;
83
+ output: {};
84
+ };
85
+ sdk: {
86
+ input: DeletePaymentCredentialProviderCommandInput;
87
+ output: DeletePaymentCredentialProviderCommandOutput;
88
+ };
89
+ };
90
+ }
@@ -0,0 +1,91 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import type { DeletePaymentManagerRequest, DeletePaymentManagerResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeletePaymentManagerCommand}.
14
+ */
15
+ export interface DeletePaymentManagerCommandInput extends DeletePaymentManagerRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeletePaymentManagerCommand}.
21
+ */
22
+ export interface DeletePaymentManagerCommandOutput extends DeletePaymentManagerResponse, __MetadataBearer {
23
+ }
24
+ declare const DeletePaymentManagerCommand_base: {
25
+ new (input: DeletePaymentManagerCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePaymentManagerCommandInput, DeletePaymentManagerCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeletePaymentManagerCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePaymentManagerCommandInput, DeletePaymentManagerCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a payment manager. All payment connectors associated with the payment manager must be deleted before the payment manager can be deleted. This operation initiates the deletion process asynchronously.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, DeletePaymentManagerCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, DeletePaymentManagerCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * // import type { BedrockAgentCoreControlClientConfig } from "@aws-sdk/client-bedrock-agentcore-control";
37
+ * const config = {}; // type is BedrockAgentCoreControlClientConfig
38
+ * const client = new BedrockAgentCoreControlClient(config);
39
+ * const input = { // DeletePaymentManagerRequest
40
+ * paymentManagerId: "STRING_VALUE", // required
41
+ * clientToken: "STRING_VALUE",
42
+ * };
43
+ * const command = new DeletePaymentManagerCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // DeletePaymentManagerResponse
46
+ * // status: "CREATING" || "UPDATING" || "DELETING" || "READY" || "CREATE_FAILED" || "UPDATE_FAILED" || "DELETE_FAILED", // required
47
+ * // paymentManagerId: "STRING_VALUE",
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param DeletePaymentManagerCommandInput - {@link DeletePaymentManagerCommandInput}
53
+ * @returns {@link DeletePaymentManagerCommandOutput}
54
+ * @see {@link DeletePaymentManagerCommandInput} for command's `input` shape.
55
+ * @see {@link DeletePaymentManagerCommandOutput} for command's `response` shape.
56
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
57
+ *
58
+ * @throws {@link AccessDeniedException} (client fault)
59
+ * <p>This exception is thrown when a request is denied per access permissions</p>
60
+ *
61
+ * @throws {@link ConflictException} (client fault)
62
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
63
+ *
64
+ * @throws {@link InternalServerException} (server fault)
65
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
69
+ *
70
+ * @throws {@link ThrottlingException} (client fault)
71
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
72
+ *
73
+ * @throws {@link BedrockAgentCoreControlServiceException}
74
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
75
+ *
76
+ *
77
+ * @public
78
+ */
79
+ export declare class DeletePaymentManagerCommand extends DeletePaymentManagerCommand_base {
80
+ /** @internal type navigation helper, not in runtime. */
81
+ protected static __types: {
82
+ api: {
83
+ input: DeletePaymentManagerRequest;
84
+ output: DeletePaymentManagerResponse;
85
+ };
86
+ sdk: {
87
+ input: DeletePaymentManagerCommandInput;
88
+ output: DeletePaymentManagerCommandOutput;
89
+ };
90
+ };
91
+ }
@@ -180,6 +180,14 @@ declare const GetAgentRuntimeCommand_base: {
180
180
  * // sessionStorage: { // SessionStorageConfiguration
181
181
  * // mountPath: "STRING_VALUE", // required
182
182
  * // },
183
+ * // s3FilesAccessPoint: { // S3FilesAccessPointConfiguration
184
+ * // accessPointArn: "STRING_VALUE", // required
185
+ * // mountPath: "STRING_VALUE", // required
186
+ * // },
187
+ * // efsAccessPoint: { // EfsAccessPointConfiguration
188
+ * // accessPointArn: "STRING_VALUE", // required
189
+ * // mountPath: "STRING_VALUE", // required
190
+ * // },
183
191
  * // },
184
192
  * // ],
185
193
  * // };
@@ -166,6 +166,14 @@ declare const GetHarnessCommand_base: {
166
166
  * // sessionStorage: { // SessionStorageConfiguration
167
167
  * // mountPath: "STRING_VALUE", // required
168
168
  * // },
169
+ * // s3FilesAccessPoint: { // S3FilesAccessPointConfiguration
170
+ * // accessPointArn: "STRING_VALUE", // required
171
+ * // mountPath: "STRING_VALUE", // required
172
+ * // },
173
+ * // efsAccessPoint: { // EfsAccessPointConfiguration
174
+ * // accessPointArn: "STRING_VALUE", // required
175
+ * // mountPath: "STRING_VALUE", // required
176
+ * // },
169
177
  * // },
170
178
  * // ],
171
179
  * // },