@aws-sdk/client-ssm-sap 3.687.0 → 3.692.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.
@@ -36,16 +36,16 @@ export declare const ApplicationType: {
36
36
  export type ApplicationType =
37
37
  (typeof ApplicationType)[keyof typeof ApplicationType];
38
38
  export interface Application {
39
- Id?: string;
40
- Type?: ApplicationType;
41
- Arn?: string;
42
- AppRegistryArn?: string;
43
- Status?: ApplicationStatus;
44
- DiscoveryStatus?: ApplicationDiscoveryStatus;
45
- Components?: string[];
46
- LastUpdated?: Date;
47
- StatusMessage?: string;
48
- AssociatedApplicationArns?: string[];
39
+ Id?: string | undefined;
40
+ Type?: ApplicationType | undefined;
41
+ Arn?: string | undefined;
42
+ AppRegistryArn?: string | undefined;
43
+ Status?: ApplicationStatus | undefined;
44
+ DiscoveryStatus?: ApplicationDiscoveryStatus | undefined;
45
+ Components?: string[] | undefined;
46
+ LastUpdated?: Date | undefined;
47
+ StatusMessage?: string | undefined;
48
+ AssociatedApplicationArns?: string[] | undefined;
49
49
  }
50
50
  export declare const CredentialType: {
51
51
  readonly ADMIN: "ADMIN";
@@ -58,22 +58,22 @@ export interface ApplicationCredential {
58
58
  SecretId: string | undefined;
59
59
  }
60
60
  export interface ApplicationSummary {
61
- Id?: string;
62
- DiscoveryStatus?: ApplicationDiscoveryStatus;
63
- Type?: ApplicationType;
64
- Arn?: string;
65
- Tags?: Record<string, string>;
61
+ Id?: string | undefined;
62
+ DiscoveryStatus?: ApplicationDiscoveryStatus | undefined;
63
+ Type?: ApplicationType | undefined;
64
+ Arn?: string | undefined;
65
+ Tags?: Record<string, string> | undefined;
66
66
  }
67
67
  export interface IpAddressMember {
68
- IpAddress?: string;
69
- Primary?: boolean;
70
- AllocationType?: AllocationType;
68
+ IpAddress?: string | undefined;
69
+ Primary?: boolean | undefined;
70
+ AllocationType?: AllocationType | undefined;
71
71
  }
72
72
  export interface AssociatedHost {
73
- Hostname?: string;
74
- Ec2InstanceId?: string;
75
- IpAddresses?: IpAddressMember[];
76
- OsVersion?: string;
73
+ Hostname?: string | undefined;
74
+ Ec2InstanceId?: string | undefined;
75
+ IpAddresses?: IpAddressMember[] | undefined;
76
+ OsVersion?: string | undefined;
77
77
  }
78
78
  export declare const BackintMode: {
79
79
  readonly AWSBackup: "AWSBackup";
@@ -109,9 +109,9 @@ export declare const DatabaseConnectionMethod: {
109
109
  export type DatabaseConnectionMethod =
110
110
  (typeof DatabaseConnectionMethod)[keyof typeof DatabaseConnectionMethod];
111
111
  export interface DatabaseConnection {
112
- DatabaseConnectionMethod?: DatabaseConnectionMethod;
113
- DatabaseArn?: string;
114
- ConnectionIp?: string;
112
+ DatabaseConnectionMethod?: DatabaseConnectionMethod | undefined;
113
+ DatabaseArn?: string | undefined;
114
+ ConnectionIp?: string | undefined;
115
115
  }
116
116
  export declare const HostRole: {
117
117
  readonly LEADER: "LEADER";
@@ -121,12 +121,12 @@ export declare const HostRole: {
121
121
  };
122
122
  export type HostRole = (typeof HostRole)[keyof typeof HostRole];
123
123
  export interface Host {
124
- HostName?: string;
125
- HostIp?: string;
126
- EC2InstanceId?: string;
127
- InstanceId?: string;
128
- HostRole?: HostRole;
129
- OsVersion?: string;
124
+ HostName?: string | undefined;
125
+ HostIp?: string | undefined;
126
+ EC2InstanceId?: string | undefined;
127
+ InstanceId?: string | undefined;
128
+ HostRole?: HostRole | undefined;
129
+ OsVersion?: string | undefined;
130
130
  }
131
131
  export declare const OperationMode: {
132
132
  readonly DELTA_DATASHIPPING: "DELTA_DATASHIPPING";
@@ -146,11 +146,11 @@ export declare const ReplicationMode: {
146
146
  export type ReplicationMode =
147
147
  (typeof ReplicationMode)[keyof typeof ReplicationMode];
148
148
  export interface Resilience {
149
- HsrTier?: string;
150
- HsrReplicationMode?: ReplicationMode;
151
- HsrOperationMode?: OperationMode;
152
- ClusterStatus?: ClusterStatus;
153
- EnqueueReplication?: boolean;
149
+ HsrTier?: string | undefined;
150
+ HsrReplicationMode?: ReplicationMode | undefined;
151
+ HsrOperationMode?: OperationMode | undefined;
152
+ ClusterStatus?: ClusterStatus | undefined;
153
+ EnqueueReplication?: boolean | undefined;
154
154
  }
155
155
  export declare const ComponentStatus: {
156
156
  readonly ACTIVATED: "ACTIVATED";
@@ -164,38 +164,38 @@ export declare const ComponentStatus: {
164
164
  export type ComponentStatus =
165
165
  (typeof ComponentStatus)[keyof typeof ComponentStatus];
166
166
  export interface Component {
167
- ComponentId?: string;
168
- Sid?: string;
169
- SystemNumber?: string;
170
- ParentComponent?: string;
171
- ChildComponents?: string[];
172
- ApplicationId?: string;
173
- ComponentType?: ComponentType;
174
- Status?: ComponentStatus;
175
- SapHostname?: string;
176
- SapFeature?: string;
177
- SapKernelVersion?: string;
178
- HdbVersion?: string;
179
- Resilience?: Resilience;
180
- AssociatedHost?: AssociatedHost;
181
- Databases?: string[];
182
- Hosts?: Host[];
183
- PrimaryHost?: string;
184
- DatabaseConnection?: DatabaseConnection;
185
- LastUpdated?: Date;
186
- Arn?: string;
167
+ ComponentId?: string | undefined;
168
+ Sid?: string | undefined;
169
+ SystemNumber?: string | undefined;
170
+ ParentComponent?: string | undefined;
171
+ ChildComponents?: string[] | undefined;
172
+ ApplicationId?: string | undefined;
173
+ ComponentType?: ComponentType | undefined;
174
+ Status?: ComponentStatus | undefined;
175
+ SapHostname?: string | undefined;
176
+ SapFeature?: string | undefined;
177
+ SapKernelVersion?: string | undefined;
178
+ HdbVersion?: string | undefined;
179
+ Resilience?: Resilience | undefined;
180
+ AssociatedHost?: AssociatedHost | undefined;
181
+ Databases?: string[] | undefined;
182
+ Hosts?: Host[] | undefined;
183
+ PrimaryHost?: string | undefined;
184
+ DatabaseConnection?: DatabaseConnection | undefined;
185
+ LastUpdated?: Date | undefined;
186
+ Arn?: string | undefined;
187
187
  }
188
188
  export interface ComponentSummary {
189
- ApplicationId?: string;
190
- ComponentId?: string;
191
- ComponentType?: ComponentType;
192
- Tags?: Record<string, string>;
193
- Arn?: string;
189
+ ApplicationId?: string | undefined;
190
+ ComponentId?: string | undefined;
191
+ ComponentType?: ComponentType | undefined;
192
+ Tags?: Record<string, string> | undefined;
193
+ Arn?: string | undefined;
194
194
  }
195
195
  export declare class ConflictException extends __BaseException {
196
196
  readonly name: "ConflictException";
197
197
  readonly $fault: "client";
198
- Message?: string;
198
+ Message?: string | undefined;
199
199
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
200
200
  }
201
201
  export declare const ConnectedEntityType: {
@@ -219,26 +219,26 @@ export declare const DatabaseStatus: {
219
219
  export type DatabaseStatus =
220
220
  (typeof DatabaseStatus)[keyof typeof DatabaseStatus];
221
221
  export interface Database {
222
- ApplicationId?: string;
223
- ComponentId?: string;
224
- Credentials?: ApplicationCredential[];
225
- DatabaseId?: string;
226
- DatabaseName?: string;
227
- DatabaseType?: DatabaseType;
228
- Arn?: string;
229
- Status?: DatabaseStatus;
230
- PrimaryHost?: string;
231
- SQLPort?: number;
232
- LastUpdated?: Date;
233
- ConnectedComponentArns?: string[];
222
+ ApplicationId?: string | undefined;
223
+ ComponentId?: string | undefined;
224
+ Credentials?: ApplicationCredential[] | undefined;
225
+ DatabaseId?: string | undefined;
226
+ DatabaseName?: string | undefined;
227
+ DatabaseType?: DatabaseType | undefined;
228
+ Arn?: string | undefined;
229
+ Status?: DatabaseStatus | undefined;
230
+ PrimaryHost?: string | undefined;
231
+ SQLPort?: number | undefined;
232
+ LastUpdated?: Date | undefined;
233
+ ConnectedComponentArns?: string[] | undefined;
234
234
  }
235
235
  export interface DatabaseSummary {
236
- ApplicationId?: string;
237
- ComponentId?: string;
238
- DatabaseId?: string;
239
- DatabaseType?: DatabaseType;
240
- Arn?: string;
241
- Tags?: Record<string, string>;
236
+ ApplicationId?: string | undefined;
237
+ ComponentId?: string | undefined;
238
+ DatabaseId?: string | undefined;
239
+ DatabaseType?: DatabaseType | undefined;
240
+ Arn?: string | undefined;
241
+ Tags?: Record<string, string> | undefined;
242
242
  }
243
243
  export declare const PermissionActionType: {
244
244
  readonly RESTORE: "RESTORE";
@@ -246,17 +246,17 @@ export declare const PermissionActionType: {
246
246
  export type PermissionActionType =
247
247
  (typeof PermissionActionType)[keyof typeof PermissionActionType];
248
248
  export interface DeleteResourcePermissionInput {
249
- ActionType?: PermissionActionType;
250
- SourceResourceArn?: string;
249
+ ActionType?: PermissionActionType | undefined;
250
+ SourceResourceArn?: string | undefined;
251
251
  ResourceArn: string | undefined;
252
252
  }
253
253
  export interface DeleteResourcePermissionOutput {
254
- Policy?: string;
254
+ Policy?: string | undefined;
255
255
  }
256
256
  export declare class InternalServerException extends __BaseException {
257
257
  readonly name: "InternalServerException";
258
258
  readonly $fault: "server";
259
- Message?: string;
259
+ Message?: string | undefined;
260
260
  constructor(
261
261
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
262
262
  );
@@ -264,7 +264,7 @@ export declare class InternalServerException extends __BaseException {
264
264
  export declare class ResourceNotFoundException extends __BaseException {
265
265
  readonly name: "ResourceNotFoundException";
266
266
  readonly $fault: "client";
267
- Message?: string;
267
+ Message?: string | undefined;
268
268
  constructor(
269
269
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
270
270
  );
@@ -272,7 +272,7 @@ export declare class ResourceNotFoundException extends __BaseException {
272
272
  export declare class ValidationException extends __BaseException {
273
273
  readonly name: "ValidationException";
274
274
  readonly $fault: "client";
275
- Message?: string;
275
+ Message?: string | undefined;
276
276
  constructor(
277
277
  opts: __ExceptionOptionType<ValidationException, __BaseException>
278
278
  );
@@ -284,7 +284,7 @@ export interface DeregisterApplicationOutput {}
284
284
  export declare class UnauthorizedException extends __BaseException {
285
285
  readonly name: "UnauthorizedException";
286
286
  readonly $fault: "client";
287
- Message?: string;
287
+ Message?: string | undefined;
288
288
  constructor(
289
289
  opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
290
290
  );
@@ -302,31 +302,31 @@ export interface Filter {
302
302
  Operator: FilterOperator | undefined;
303
303
  }
304
304
  export interface GetApplicationInput {
305
- ApplicationId?: string;
306
- ApplicationArn?: string;
307
- AppRegistryArn?: string;
305
+ ApplicationId?: string | undefined;
306
+ ApplicationArn?: string | undefined;
307
+ AppRegistryArn?: string | undefined;
308
308
  }
309
309
  export interface GetApplicationOutput {
310
- Application?: Application;
311
- Tags?: Record<string, string>;
310
+ Application?: Application | undefined;
311
+ Tags?: Record<string, string> | undefined;
312
312
  }
313
313
  export interface GetComponentInput {
314
314
  ApplicationId: string | undefined;
315
315
  ComponentId: string | undefined;
316
316
  }
317
317
  export interface GetComponentOutput {
318
- Component?: Component;
319
- Tags?: Record<string, string>;
318
+ Component?: Component | undefined;
319
+ Tags?: Record<string, string> | undefined;
320
320
  }
321
321
  export interface GetDatabaseInput {
322
- ApplicationId?: string;
323
- ComponentId?: string;
324
- DatabaseId?: string;
325
- DatabaseArn?: string;
322
+ ApplicationId?: string | undefined;
323
+ ComponentId?: string | undefined;
324
+ DatabaseId?: string | undefined;
325
+ DatabaseArn?: string | undefined;
326
326
  }
327
327
  export interface GetDatabaseOutput {
328
- Database?: Database;
329
- Tags?: Record<string, string>;
328
+ Database?: Database | undefined;
329
+ Tags?: Record<string, string> | undefined;
330
330
  }
331
331
  export interface GetOperationInput {
332
332
  OperationId: string | undefined;
@@ -339,65 +339,65 @@ export declare const OperationStatus: {
339
339
  export type OperationStatus =
340
340
  (typeof OperationStatus)[keyof typeof OperationStatus];
341
341
  export interface Operation {
342
- Id?: string;
343
- Type?: string;
344
- Status?: OperationStatus;
345
- StatusMessage?: string;
346
- Properties?: Record<string, string>;
347
- ResourceType?: string;
348
- ResourceId?: string;
349
- ResourceArn?: string;
350
- StartTime?: Date;
351
- EndTime?: Date;
352
- LastUpdatedTime?: Date;
342
+ Id?: string | undefined;
343
+ Type?: string | undefined;
344
+ Status?: OperationStatus | undefined;
345
+ StatusMessage?: string | undefined;
346
+ Properties?: Record<string, string> | undefined;
347
+ ResourceType?: string | undefined;
348
+ ResourceId?: string | undefined;
349
+ ResourceArn?: string | undefined;
350
+ StartTime?: Date | undefined;
351
+ EndTime?: Date | undefined;
352
+ LastUpdatedTime?: Date | undefined;
353
353
  }
354
354
  export interface GetOperationOutput {
355
- Operation?: Operation;
355
+ Operation?: Operation | undefined;
356
356
  }
357
357
  export interface GetResourcePermissionInput {
358
- ActionType?: PermissionActionType;
358
+ ActionType?: PermissionActionType | undefined;
359
359
  ResourceArn: string | undefined;
360
360
  }
361
361
  export interface GetResourcePermissionOutput {
362
- Policy?: string;
362
+ Policy?: string | undefined;
363
363
  }
364
364
  export interface ListApplicationsInput {
365
- NextToken?: string;
366
- MaxResults?: number;
367
- Filters?: Filter[];
365
+ NextToken?: string | undefined;
366
+ MaxResults?: number | undefined;
367
+ Filters?: Filter[] | undefined;
368
368
  }
369
369
  export interface ListApplicationsOutput {
370
- Applications?: ApplicationSummary[];
371
- NextToken?: string;
370
+ Applications?: ApplicationSummary[] | undefined;
371
+ NextToken?: string | undefined;
372
372
  }
373
373
  export interface ListComponentsInput {
374
- ApplicationId?: string;
375
- NextToken?: string;
376
- MaxResults?: number;
374
+ ApplicationId?: string | undefined;
375
+ NextToken?: string | undefined;
376
+ MaxResults?: number | undefined;
377
377
  }
378
378
  export interface ListComponentsOutput {
379
- Components?: ComponentSummary[];
380
- NextToken?: string;
379
+ Components?: ComponentSummary[] | undefined;
380
+ NextToken?: string | undefined;
381
381
  }
382
382
  export interface ListDatabasesInput {
383
- ApplicationId?: string;
384
- ComponentId?: string;
385
- NextToken?: string;
386
- MaxResults?: number;
383
+ ApplicationId?: string | undefined;
384
+ ComponentId?: string | undefined;
385
+ NextToken?: string | undefined;
386
+ MaxResults?: number | undefined;
387
387
  }
388
388
  export interface ListDatabasesOutput {
389
- Databases?: DatabaseSummary[];
390
- NextToken?: string;
389
+ Databases?: DatabaseSummary[] | undefined;
390
+ NextToken?: string | undefined;
391
391
  }
392
392
  export interface ListOperationEventsInput {
393
393
  OperationId: string | undefined;
394
- MaxResults?: number;
395
- NextToken?: string;
396
- Filters?: Filter[];
394
+ MaxResults?: number | undefined;
395
+ NextToken?: string | undefined;
396
+ Filters?: Filter[] | undefined;
397
397
  }
398
398
  export interface Resource {
399
- ResourceArn?: string;
400
- ResourceType?: string;
399
+ ResourceArn?: string | undefined;
400
+ ResourceType?: string | undefined;
401
401
  }
402
402
  export declare const OperationEventStatus: {
403
403
  readonly COMPLETED: "COMPLETED";
@@ -407,31 +407,31 @@ export declare const OperationEventStatus: {
407
407
  export type OperationEventStatus =
408
408
  (typeof OperationEventStatus)[keyof typeof OperationEventStatus];
409
409
  export interface OperationEvent {
410
- Description?: string;
411
- Resource?: Resource;
412
- Status?: OperationEventStatus;
413
- StatusMessage?: string;
414
- Timestamp?: Date;
410
+ Description?: string | undefined;
411
+ Resource?: Resource | undefined;
412
+ Status?: OperationEventStatus | undefined;
413
+ StatusMessage?: string | undefined;
414
+ Timestamp?: Date | undefined;
415
415
  }
416
416
  export interface ListOperationEventsOutput {
417
- OperationEvents?: OperationEvent[];
418
- NextToken?: string;
417
+ OperationEvents?: OperationEvent[] | undefined;
418
+ NextToken?: string | undefined;
419
419
  }
420
420
  export interface ListOperationsInput {
421
421
  ApplicationId: string | undefined;
422
- MaxResults?: number;
423
- NextToken?: string;
424
- Filters?: Filter[];
422
+ MaxResults?: number | undefined;
423
+ NextToken?: string | undefined;
424
+ Filters?: Filter[] | undefined;
425
425
  }
426
426
  export interface ListOperationsOutput {
427
- Operations?: Operation[];
428
- NextToken?: string;
427
+ Operations?: Operation[] | undefined;
428
+ NextToken?: string | undefined;
429
429
  }
430
430
  export interface ListTagsForResourceRequest {
431
431
  resourceArn: string | undefined;
432
432
  }
433
433
  export interface ListTagsForResourceResponse {
434
- tags?: Record<string, string>;
434
+ tags?: Record<string, string> | undefined;
435
435
  }
436
436
  export interface PutResourcePermissionInput {
437
437
  ActionType: PermissionActionType | undefined;
@@ -439,41 +439,41 @@ export interface PutResourcePermissionInput {
439
439
  ResourceArn: string | undefined;
440
440
  }
441
441
  export interface PutResourcePermissionOutput {
442
- Policy?: string;
442
+ Policy?: string | undefined;
443
443
  }
444
444
  export interface RegisterApplicationInput {
445
445
  ApplicationId: string | undefined;
446
446
  ApplicationType: ApplicationType | undefined;
447
447
  Instances: string[] | undefined;
448
- SapInstanceNumber?: string;
449
- Sid?: string;
450
- Tags?: Record<string, string>;
451
- Credentials?: ApplicationCredential[];
452
- DatabaseArn?: string;
448
+ SapInstanceNumber?: string | undefined;
449
+ Sid?: string | undefined;
450
+ Tags?: Record<string, string> | undefined;
451
+ Credentials?: ApplicationCredential[] | undefined;
452
+ DatabaseArn?: string | undefined;
453
453
  }
454
454
  export interface RegisterApplicationOutput {
455
- Application?: Application;
456
- OperationId?: string;
455
+ Application?: Application | undefined;
456
+ OperationId?: string | undefined;
457
457
  }
458
458
  export interface StartApplicationInput {
459
459
  ApplicationId: string | undefined;
460
460
  }
461
461
  export interface StartApplicationOutput {
462
- OperationId?: string;
462
+ OperationId?: string | undefined;
463
463
  }
464
464
  export interface StartApplicationRefreshInput {
465
465
  ApplicationId: string | undefined;
466
466
  }
467
467
  export interface StartApplicationRefreshOutput {
468
- OperationId?: string;
468
+ OperationId?: string | undefined;
469
469
  }
470
470
  export interface StopApplicationInput {
471
471
  ApplicationId: string | undefined;
472
- StopConnectedEntity?: ConnectedEntityType;
473
- IncludeEc2InstanceShutdown?: boolean;
472
+ StopConnectedEntity?: ConnectedEntityType | undefined;
473
+ IncludeEc2InstanceShutdown?: boolean | undefined;
474
474
  }
475
475
  export interface StopApplicationOutput {
476
- OperationId?: string;
476
+ OperationId?: string | undefined;
477
477
  }
478
478
  export interface TagResourceRequest {
479
479
  resourceArn: string | undefined;
@@ -487,14 +487,14 @@ export interface UntagResourceRequest {
487
487
  export interface UntagResourceResponse {}
488
488
  export interface UpdateApplicationSettingsInput {
489
489
  ApplicationId: string | undefined;
490
- CredentialsToAddOrUpdate?: ApplicationCredential[];
491
- CredentialsToRemove?: ApplicationCredential[];
492
- Backint?: BackintConfig;
493
- DatabaseArn?: string;
490
+ CredentialsToAddOrUpdate?: ApplicationCredential[] | undefined;
491
+ CredentialsToRemove?: ApplicationCredential[] | undefined;
492
+ Backint?: BackintConfig | undefined;
493
+ DatabaseArn?: string | undefined;
494
494
  }
495
495
  export interface UpdateApplicationSettingsOutput {
496
- Message?: string;
497
- OperationIds?: string[];
496
+ Message?: string | undefined;
497
+ OperationIds?: string[] | undefined;
498
498
  }
499
499
  export declare const ApplicationCredentialFilterSensitiveLog: (
500
500
  obj: ApplicationCredential
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ssm-sap",
3
3
  "description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.692.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ssm-sap",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
27
- "@aws-sdk/middleware-host-header": "3.686.0",
28
- "@aws-sdk/middleware-logger": "3.686.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
31
- "@aws-sdk/region-config-resolver": "3.686.0",
32
- "@aws-sdk/types": "3.686.0",
33
- "@aws-sdk/util-endpoints": "3.686.0",
34
- "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
36
- "@smithy/config-resolver": "^3.0.10",
37
- "@smithy/core": "^2.5.1",
38
- "@smithy/fetch-http-handler": "^4.0.0",
39
- "@smithy/hash-node": "^3.0.8",
40
- "@smithy/invalid-dependency": "^3.0.8",
41
- "@smithy/middleware-content-length": "^3.0.10",
42
- "@smithy/middleware-endpoint": "^3.2.1",
43
- "@smithy/middleware-retry": "^3.0.25",
44
- "@smithy/middleware-serde": "^3.0.8",
45
- "@smithy/middleware-stack": "^3.0.8",
46
- "@smithy/node-config-provider": "^3.1.9",
47
- "@smithy/node-http-handler": "^3.2.5",
48
- "@smithy/protocol-http": "^4.1.5",
49
- "@smithy/smithy-client": "^3.4.2",
50
- "@smithy/types": "^3.6.0",
51
- "@smithy/url-parser": "^3.0.8",
23
+ "@aws-sdk/client-sso-oidc": "3.692.0",
24
+ "@aws-sdk/client-sts": "3.692.0",
25
+ "@aws-sdk/core": "3.692.0",
26
+ "@aws-sdk/credential-provider-node": "3.692.0",
27
+ "@aws-sdk/middleware-host-header": "3.692.0",
28
+ "@aws-sdk/middleware-logger": "3.692.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.692.0",
30
+ "@aws-sdk/middleware-user-agent": "3.692.0",
31
+ "@aws-sdk/region-config-resolver": "3.692.0",
32
+ "@aws-sdk/types": "3.692.0",
33
+ "@aws-sdk/util-endpoints": "3.692.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.692.0",
35
+ "@aws-sdk/util-user-agent-node": "3.692.0",
36
+ "@smithy/config-resolver": "^3.0.11",
37
+ "@smithy/core": "^2.5.2",
38
+ "@smithy/fetch-http-handler": "^4.1.0",
39
+ "@smithy/hash-node": "^3.0.9",
40
+ "@smithy/invalid-dependency": "^3.0.9",
41
+ "@smithy/middleware-content-length": "^3.0.11",
42
+ "@smithy/middleware-endpoint": "^3.2.2",
43
+ "@smithy/middleware-retry": "^3.0.26",
44
+ "@smithy/middleware-serde": "^3.0.9",
45
+ "@smithy/middleware-stack": "^3.0.9",
46
+ "@smithy/node-config-provider": "^3.1.10",
47
+ "@smithy/node-http-handler": "^3.3.0",
48
+ "@smithy/protocol-http": "^4.1.6",
49
+ "@smithy/smithy-client": "^3.4.3",
50
+ "@smithy/types": "^3.7.0",
51
+ "@smithy/url-parser": "^3.0.9",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.25",
56
- "@smithy/util-defaults-mode-node": "^3.0.25",
57
- "@smithy/util-endpoints": "^2.1.4",
58
- "@smithy/util-middleware": "^3.0.8",
59
- "@smithy/util-retry": "^3.0.8",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.26",
56
+ "@smithy/util-defaults-mode-node": "^3.0.26",
57
+ "@smithy/util-endpoints": "^2.1.5",
58
+ "@smithy/util-middleware": "^3.0.9",
59
+ "@smithy/util-retry": "^3.0.9",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },