@aws-sdk/client-rolesanywhere 3.651.1 → 3.658.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 (61) hide show
  1. package/dist-types/commands/CreateProfileCommand.d.ts +11 -0
  2. package/dist-types/commands/CreateTrustAnchorCommand.d.ts +11 -0
  3. package/dist-types/commands/DeleteAttributeMappingCommand.d.ts +11 -0
  4. package/dist-types/commands/DeleteCrlCommand.d.ts +11 -0
  5. package/dist-types/commands/DeleteProfileCommand.d.ts +11 -0
  6. package/dist-types/commands/DeleteTrustAnchorCommand.d.ts +11 -0
  7. package/dist-types/commands/DisableCrlCommand.d.ts +11 -0
  8. package/dist-types/commands/DisableProfileCommand.d.ts +11 -0
  9. package/dist-types/commands/DisableTrustAnchorCommand.d.ts +11 -0
  10. package/dist-types/commands/EnableCrlCommand.d.ts +11 -0
  11. package/dist-types/commands/EnableProfileCommand.d.ts +11 -0
  12. package/dist-types/commands/EnableTrustAnchorCommand.d.ts +11 -0
  13. package/dist-types/commands/GetCrlCommand.d.ts +11 -0
  14. package/dist-types/commands/GetProfileCommand.d.ts +11 -0
  15. package/dist-types/commands/GetSubjectCommand.d.ts +11 -0
  16. package/dist-types/commands/GetTrustAnchorCommand.d.ts +11 -0
  17. package/dist-types/commands/ImportCrlCommand.d.ts +11 -0
  18. package/dist-types/commands/ListCrlsCommand.d.ts +11 -0
  19. package/dist-types/commands/ListProfilesCommand.d.ts +11 -0
  20. package/dist-types/commands/ListSubjectsCommand.d.ts +11 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  22. package/dist-types/commands/ListTrustAnchorsCommand.d.ts +11 -0
  23. package/dist-types/commands/PutAttributeMappingCommand.d.ts +11 -0
  24. package/dist-types/commands/PutNotificationSettingsCommand.d.ts +11 -0
  25. package/dist-types/commands/ResetNotificationSettingsCommand.d.ts +11 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +11 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
  28. package/dist-types/commands/UpdateCrlCommand.d.ts +11 -0
  29. package/dist-types/commands/UpdateProfileCommand.d.ts +11 -0
  30. package/dist-types/commands/UpdateTrustAnchorCommand.d.ts +11 -0
  31. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +12 -1
  32. package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +12 -1
  33. package/dist-types/ts3.4/commands/DeleteAttributeMappingCommand.d.ts +12 -1
  34. package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +12 -1
  35. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +12 -1
  36. package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +12 -1
  37. package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +12 -1
  38. package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +12 -1
  39. package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +12 -1
  40. package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +12 -1
  41. package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +12 -1
  42. package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +12 -1
  43. package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +12 -1
  44. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +12 -1
  45. package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +12 -1
  46. package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +12 -1
  47. package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +12 -1
  48. package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +12 -1
  49. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +12 -1
  50. package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +12 -1
  51. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +12 -1
  52. package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +12 -1
  53. package/dist-types/ts3.4/commands/PutAttributeMappingCommand.d.ts +12 -1
  54. package/dist-types/ts3.4/commands/PutNotificationSettingsCommand.d.ts +12 -1
  55. package/dist-types/ts3.4/commands/ResetNotificationSettingsCommand.d.ts +12 -1
  56. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +12 -1
  57. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +12 -1
  58. package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +12 -1
  59. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +12 -1
  60. package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +12 -1
  61. package/package.json +35 -35
@@ -112,4 +112,15 @@ declare const CreateProfileCommand_base: {
112
112
  * @public
113
113
  */
114
114
  export declare class CreateProfileCommand extends CreateProfileCommand_base {
115
+ /** @internal type navigation helper, not in runtime. */
116
+ protected static __types: {
117
+ api: {
118
+ input: CreateProfileRequest;
119
+ output: ProfileDetailResponse;
120
+ };
121
+ sdk: {
122
+ input: CreateProfileCommandInput;
123
+ output: CreateProfileCommandOutput;
124
+ };
125
+ };
115
126
  }
@@ -114,4 +114,15 @@ declare const CreateTrustAnchorCommand_base: {
114
114
  * @public
115
115
  */
116
116
  export declare class CreateTrustAnchorCommand extends CreateTrustAnchorCommand_base {
117
+ /** @internal type navigation helper, not in runtime. */
118
+ protected static __types: {
119
+ api: {
120
+ input: CreateTrustAnchorRequest;
121
+ output: TrustAnchorDetailResponse;
122
+ };
123
+ sdk: {
124
+ input: CreateTrustAnchorCommandInput;
125
+ output: CreateTrustAnchorCommandOutput;
126
+ };
127
+ };
117
128
  }
@@ -98,4 +98,15 @@ declare const DeleteAttributeMappingCommand_base: {
98
98
  * @public
99
99
  */
100
100
  export declare class DeleteAttributeMappingCommand extends DeleteAttributeMappingCommand_base {
101
+ /** @internal type navigation helper, not in runtime. */
102
+ protected static __types: {
103
+ api: {
104
+ input: DeleteAttributeMappingRequest;
105
+ output: DeleteAttributeMappingResponse;
106
+ };
107
+ sdk: {
108
+ input: DeleteAttributeMappingCommandInput;
109
+ output: DeleteAttributeMappingCommandOutput;
110
+ };
111
+ };
101
112
  }
@@ -76,4 +76,15 @@ declare const DeleteCrlCommand_base: {
76
76
  * @public
77
77
  */
78
78
  export declare class DeleteCrlCommand extends DeleteCrlCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: ScalarCrlRequest;
83
+ output: CrlDetailResponse;
84
+ };
85
+ sdk: {
86
+ input: DeleteCrlCommandInput;
87
+ output: DeleteCrlCommandOutput;
88
+ };
89
+ };
79
90
  }
@@ -95,4 +95,15 @@ declare const DeleteProfileCommand_base: {
95
95
  * @public
96
96
  */
97
97
  export declare class DeleteProfileCommand extends DeleteProfileCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: ScalarProfileRequest;
102
+ output: ProfileDetailResponse;
103
+ };
104
+ sdk: {
105
+ input: DeleteProfileCommandInput;
106
+ output: DeleteProfileCommandOutput;
107
+ };
108
+ };
98
109
  }
@@ -90,4 +90,15 @@ declare const DeleteTrustAnchorCommand_base: {
90
90
  * @public
91
91
  */
92
92
  export declare class DeleteTrustAnchorCommand extends DeleteTrustAnchorCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: ScalarTrustAnchorRequest;
97
+ output: TrustAnchorDetailResponse;
98
+ };
99
+ sdk: {
100
+ input: DeleteTrustAnchorCommandInput;
101
+ output: DeleteTrustAnchorCommandOutput;
102
+ };
103
+ };
93
104
  }
@@ -76,4 +76,15 @@ declare const DisableCrlCommand_base: {
76
76
  * @public
77
77
  */
78
78
  export declare class DisableCrlCommand extends DisableCrlCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: ScalarCrlRequest;
83
+ output: CrlDetailResponse;
84
+ };
85
+ sdk: {
86
+ input: DisableCrlCommandInput;
87
+ output: DisableCrlCommandOutput;
88
+ };
89
+ };
79
90
  }
@@ -95,4 +95,15 @@ declare const DisableProfileCommand_base: {
95
95
  * @public
96
96
  */
97
97
  export declare class DisableProfileCommand extends DisableProfileCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: ScalarProfileRequest;
102
+ output: ProfileDetailResponse;
103
+ };
104
+ sdk: {
105
+ input: DisableProfileCommandInput;
106
+ output: DisableProfileCommandOutput;
107
+ };
108
+ };
98
109
  }
@@ -90,4 +90,15 @@ declare const DisableTrustAnchorCommand_base: {
90
90
  * @public
91
91
  */
92
92
  export declare class DisableTrustAnchorCommand extends DisableTrustAnchorCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: ScalarTrustAnchorRequest;
97
+ output: TrustAnchorDetailResponse;
98
+ };
99
+ sdk: {
100
+ input: DisableTrustAnchorCommandInput;
101
+ output: DisableTrustAnchorCommandOutput;
102
+ };
103
+ };
93
104
  }
@@ -76,4 +76,15 @@ declare const EnableCrlCommand_base: {
76
76
  * @public
77
77
  */
78
78
  export declare class EnableCrlCommand extends EnableCrlCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: ScalarCrlRequest;
83
+ output: CrlDetailResponse;
84
+ };
85
+ sdk: {
86
+ input: EnableCrlCommandInput;
87
+ output: EnableCrlCommandOutput;
88
+ };
89
+ };
79
90
  }
@@ -95,4 +95,15 @@ declare const EnableProfileCommand_base: {
95
95
  * @public
96
96
  */
97
97
  export declare class EnableProfileCommand extends EnableProfileCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: ScalarProfileRequest;
102
+ output: ProfileDetailResponse;
103
+ };
104
+ sdk: {
105
+ input: EnableProfileCommandInput;
106
+ output: EnableProfileCommandOutput;
107
+ };
108
+ };
98
109
  }
@@ -90,4 +90,15 @@ declare const EnableTrustAnchorCommand_base: {
90
90
  * @public
91
91
  */
92
92
  export declare class EnableTrustAnchorCommand extends EnableTrustAnchorCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: ScalarTrustAnchorRequest;
97
+ output: TrustAnchorDetailResponse;
98
+ };
99
+ sdk: {
100
+ input: EnableTrustAnchorCommandInput;
101
+ output: EnableTrustAnchorCommandOutput;
102
+ };
103
+ };
93
104
  }
@@ -73,4 +73,15 @@ declare const GetCrlCommand_base: {
73
73
  * @public
74
74
  */
75
75
  export declare class GetCrlCommand extends GetCrlCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: ScalarCrlRequest;
80
+ output: CrlDetailResponse;
81
+ };
82
+ sdk: {
83
+ input: GetCrlCommandInput;
84
+ output: GetCrlCommandOutput;
85
+ };
86
+ };
76
87
  }
@@ -95,4 +95,15 @@ declare const GetProfileCommand_base: {
95
95
  * @public
96
96
  */
97
97
  export declare class GetProfileCommand extends GetProfileCommand_base {
98
+ /** @internal type navigation helper, not in runtime. */
99
+ protected static __types: {
100
+ api: {
101
+ input: ScalarProfileRequest;
102
+ output: ProfileDetailResponse;
103
+ };
104
+ sdk: {
105
+ input: GetProfileCommandInput;
106
+ output: GetProfileCommandOutput;
107
+ };
108
+ };
98
109
  }
@@ -97,4 +97,15 @@ declare const GetSubjectCommand_base: {
97
97
  * @public
98
98
  */
99
99
  export declare class GetSubjectCommand extends GetSubjectCommand_base {
100
+ /** @internal type navigation helper, not in runtime. */
101
+ protected static __types: {
102
+ api: {
103
+ input: ScalarSubjectRequest;
104
+ output: SubjectDetailResponse;
105
+ };
106
+ sdk: {
107
+ input: GetSubjectCommandInput;
108
+ output: GetSubjectCommandOutput;
109
+ };
110
+ };
100
111
  }
@@ -93,4 +93,15 @@ declare const GetTrustAnchorCommand_base: {
93
93
  * @public
94
94
  */
95
95
  export declare class GetTrustAnchorCommand extends GetTrustAnchorCommand_base {
96
+ /** @internal type navigation helper, not in runtime. */
97
+ protected static __types: {
98
+ api: {
99
+ input: ScalarTrustAnchorRequest;
100
+ output: TrustAnchorDetailResponse;
101
+ };
102
+ sdk: {
103
+ input: GetTrustAnchorCommandInput;
104
+ output: GetTrustAnchorCommandOutput;
105
+ };
106
+ };
96
107
  }
@@ -88,4 +88,15 @@ declare const ImportCrlCommand_base: {
88
88
  * @public
89
89
  */
90
90
  export declare class ImportCrlCommand extends ImportCrlCommand_base {
91
+ /** @internal type navigation helper, not in runtime. */
92
+ protected static __types: {
93
+ api: {
94
+ input: ImportCrlRequest;
95
+ output: CrlDetailResponse;
96
+ };
97
+ sdk: {
98
+ input: ImportCrlCommandInput;
99
+ output: ImportCrlCommandOutput;
100
+ };
101
+ };
91
102
  }
@@ -80,4 +80,15 @@ declare const ListCrlsCommand_base: {
80
80
  * @public
81
81
  */
82
82
  export declare class ListCrlsCommand extends ListCrlsCommand_base {
83
+ /** @internal type navigation helper, not in runtime. */
84
+ protected static __types: {
85
+ api: {
86
+ input: ListRequest;
87
+ output: ListCrlsResponse;
88
+ };
89
+ sdk: {
90
+ input: ListCrlsCommandInput;
91
+ output: ListCrlsCommandOutput;
92
+ };
93
+ };
83
94
  }
@@ -99,4 +99,15 @@ declare const ListProfilesCommand_base: {
99
99
  * @public
100
100
  */
101
101
  export declare class ListProfilesCommand extends ListProfilesCommand_base {
102
+ /** @internal type navigation helper, not in runtime. */
103
+ protected static __types: {
104
+ api: {
105
+ input: ListRequest;
106
+ output: ListProfilesResponse;
107
+ };
108
+ sdk: {
109
+ input: ListProfilesCommandInput;
110
+ output: ListProfilesCommandOutput;
111
+ };
112
+ };
102
113
  }
@@ -79,4 +79,15 @@ declare const ListSubjectsCommand_base: {
79
79
  * @public
80
80
  */
81
81
  export declare class ListSubjectsCommand extends ListSubjectsCommand_base {
82
+ /** @internal type navigation helper, not in runtime. */
83
+ protected static __types: {
84
+ api: {
85
+ input: ListRequest;
86
+ output: ListSubjectsResponse;
87
+ };
88
+ sdk: {
89
+ input: ListSubjectsCommandInput;
90
+ output: ListSubjectsCommandOutput;
91
+ };
92
+ };
82
93
  }
@@ -75,4 +75,15 @@ declare const ListTagsForResourceCommand_base: {
75
75
  * @public
76
76
  */
77
77
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: ListTagsForResourceRequest;
82
+ output: ListTagsForResourceResponse;
83
+ };
84
+ sdk: {
85
+ input: ListTagsForResourceCommandInput;
86
+ output: ListTagsForResourceCommandOutput;
87
+ };
88
+ };
78
89
  }
@@ -94,4 +94,15 @@ declare const ListTrustAnchorsCommand_base: {
94
94
  * @public
95
95
  */
96
96
  export declare class ListTrustAnchorsCommand extends ListTrustAnchorsCommand_base {
97
+ /** @internal type navigation helper, not in runtime. */
98
+ protected static __types: {
99
+ api: {
100
+ input: ListRequest;
101
+ output: ListTrustAnchorsResponse;
102
+ };
103
+ sdk: {
104
+ input: ListTrustAnchorsCommandInput;
105
+ output: ListTrustAnchorsCommandOutput;
106
+ };
107
+ };
97
108
  }
@@ -101,4 +101,15 @@ declare const PutAttributeMappingCommand_base: {
101
101
  * @public
102
102
  */
103
103
  export declare class PutAttributeMappingCommand extends PutAttributeMappingCommand_base {
104
+ /** @internal type navigation helper, not in runtime. */
105
+ protected static __types: {
106
+ api: {
107
+ input: PutAttributeMappingRequest;
108
+ output: PutAttributeMappingResponse;
109
+ };
110
+ sdk: {
111
+ input: PutAttributeMappingCommandInput;
112
+ output: PutAttributeMappingCommandOutput;
113
+ };
114
+ };
104
115
  }
@@ -103,4 +103,15 @@ declare const PutNotificationSettingsCommand_base: {
103
103
  * @public
104
104
  */
105
105
  export declare class PutNotificationSettingsCommand extends PutNotificationSettingsCommand_base {
106
+ /** @internal type navigation helper, not in runtime. */
107
+ protected static __types: {
108
+ api: {
109
+ input: PutNotificationSettingsRequest;
110
+ output: PutNotificationSettingsResponse;
111
+ };
112
+ sdk: {
113
+ input: PutNotificationSettingsCommandInput;
114
+ output: PutNotificationSettingsCommandOutput;
115
+ };
116
+ };
106
117
  }
@@ -100,4 +100,15 @@ declare const ResetNotificationSettingsCommand_base: {
100
100
  * @public
101
101
  */
102
102
  export declare class ResetNotificationSettingsCommand extends ResetNotificationSettingsCommand_base {
103
+ /** @internal type navigation helper, not in runtime. */
104
+ protected static __types: {
105
+ api: {
106
+ input: ResetNotificationSettingsRequest;
107
+ output: ResetNotificationSettingsResponse;
108
+ };
109
+ sdk: {
110
+ input: ResetNotificationSettingsCommandInput;
111
+ output: ResetNotificationSettingsCommandOutput;
112
+ };
113
+ };
103
114
  }
@@ -77,4 +77,15 @@ declare const TagResourceCommand_base: {
77
77
  * @public
78
78
  */
79
79
  export declare class TagResourceCommand extends TagResourceCommand_base {
80
+ /** @internal type navigation helper, not in runtime. */
81
+ protected static __types: {
82
+ api: {
83
+ input: TagResourceRequest;
84
+ output: {};
85
+ };
86
+ sdk: {
87
+ input: TagResourceCommandInput;
88
+ output: TagResourceCommandOutput;
89
+ };
90
+ };
80
91
  }
@@ -71,4 +71,15 @@ declare const UntagResourceCommand_base: {
71
71
  * @public
72
72
  */
73
73
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
74
+ /** @internal type navigation helper, not in runtime. */
75
+ protected static __types: {
76
+ api: {
77
+ input: UntagResourceRequest;
78
+ output: {};
79
+ };
80
+ sdk: {
81
+ input: UntagResourceCommandInput;
82
+ output: UntagResourceCommandOutput;
83
+ };
84
+ };
74
85
  }
@@ -83,4 +83,15 @@ declare const UpdateCrlCommand_base: {
83
83
  * @public
84
84
  */
85
85
  export declare class UpdateCrlCommand extends UpdateCrlCommand_base {
86
+ /** @internal type navigation helper, not in runtime. */
87
+ protected static __types: {
88
+ api: {
89
+ input: UpdateCrlRequest;
90
+ output: CrlDetailResponse;
91
+ };
92
+ sdk: {
93
+ input: UpdateCrlCommandInput;
94
+ output: UpdateCrlCommandOutput;
95
+ };
96
+ };
86
97
  }
@@ -110,4 +110,15 @@ declare const UpdateProfileCommand_base: {
110
110
  * @public
111
111
  */
112
112
  export declare class UpdateProfileCommand extends UpdateProfileCommand_base {
113
+ /** @internal type navigation helper, not in runtime. */
114
+ protected static __types: {
115
+ api: {
116
+ input: UpdateProfileRequest;
117
+ output: ProfileDetailResponse;
118
+ };
119
+ sdk: {
120
+ input: UpdateProfileCommandInput;
121
+ output: UpdateProfileCommandOutput;
122
+ };
123
+ };
113
124
  }
@@ -106,4 +106,15 @@ declare const UpdateTrustAnchorCommand_base: {
106
106
  * @public
107
107
  */
108
108
  export declare class UpdateTrustAnchorCommand extends UpdateTrustAnchorCommand_base {
109
+ /** @internal type navigation helper, not in runtime. */
110
+ protected static __types: {
111
+ api: {
112
+ input: UpdateTrustAnchorRequest;
113
+ output: TrustAnchorDetailResponse;
114
+ };
115
+ sdk: {
116
+ input: UpdateTrustAnchorCommandInput;
117
+ output: UpdateTrustAnchorCommandOutput;
118
+ };
119
+ };
109
120
  }
@@ -36,4 +36,15 @@ declare const CreateProfileCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class CreateProfileCommand extends CreateProfileCommand_base {}
39
+ export declare class CreateProfileCommand extends CreateProfileCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateProfileRequest;
43
+ output: ProfileDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateProfileCommandInput;
47
+ output: CreateProfileCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const CreateTrustAnchorCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class CreateTrustAnchorCommand extends CreateTrustAnchorCommand_base {}
40
+ export declare class CreateTrustAnchorCommand extends CreateTrustAnchorCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateTrustAnchorRequest;
44
+ output: TrustAnchorDetailResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateTrustAnchorCommandInput;
48
+ output: CreateTrustAnchorCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const DeleteAttributeMappingCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DeleteAttributeMappingCommand extends DeleteAttributeMappingCommand_base {}
40
+ export declare class DeleteAttributeMappingCommand extends DeleteAttributeMappingCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteAttributeMappingRequest;
44
+ output: DeleteAttributeMappingResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteAttributeMappingCommandInput;
48
+ output: DeleteAttributeMappingCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const DeleteCrlCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class DeleteCrlCommand extends DeleteCrlCommand_base {}
36
+ export declare class DeleteCrlCommand extends DeleteCrlCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ScalarCrlRequest;
40
+ output: CrlDetailResponse;
41
+ };
42
+ sdk: {
43
+ input: DeleteCrlCommandInput;
44
+ output: DeleteCrlCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const DeleteProfileCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class DeleteProfileCommand extends DeleteProfileCommand_base {}
39
+ export declare class DeleteProfileCommand extends DeleteProfileCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ScalarProfileRequest;
43
+ output: ProfileDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: DeleteProfileCommandInput;
47
+ output: DeleteProfileCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const DeleteTrustAnchorCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DeleteTrustAnchorCommand extends DeleteTrustAnchorCommand_base {}
40
+ export declare class DeleteTrustAnchorCommand extends DeleteTrustAnchorCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ScalarTrustAnchorRequest;
44
+ output: TrustAnchorDetailResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteTrustAnchorCommandInput;
48
+ output: DeleteTrustAnchorCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const DisableCrlCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class DisableCrlCommand extends DisableCrlCommand_base {}
36
+ export declare class DisableCrlCommand extends DisableCrlCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ScalarCrlRequest;
40
+ output: CrlDetailResponse;
41
+ };
42
+ sdk: {
43
+ input: DisableCrlCommandInput;
44
+ output: DisableCrlCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const DisableProfileCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class DisableProfileCommand extends DisableProfileCommand_base {}
39
+ export declare class DisableProfileCommand extends DisableProfileCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ScalarProfileRequest;
43
+ output: ProfileDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: DisableProfileCommandInput;
47
+ output: DisableProfileCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const DisableTrustAnchorCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class DisableTrustAnchorCommand extends DisableTrustAnchorCommand_base {}
40
+ export declare class DisableTrustAnchorCommand extends DisableTrustAnchorCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ScalarTrustAnchorRequest;
44
+ output: TrustAnchorDetailResponse;
45
+ };
46
+ sdk: {
47
+ input: DisableTrustAnchorCommandInput;
48
+ output: DisableTrustAnchorCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const EnableCrlCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class EnableCrlCommand extends EnableCrlCommand_base {}
36
+ export declare class EnableCrlCommand extends EnableCrlCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ScalarCrlRequest;
40
+ output: CrlDetailResponse;
41
+ };
42
+ sdk: {
43
+ input: EnableCrlCommandInput;
44
+ output: EnableCrlCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const EnableProfileCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class EnableProfileCommand extends EnableProfileCommand_base {}
39
+ export declare class EnableProfileCommand extends EnableProfileCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ScalarProfileRequest;
43
+ output: ProfileDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: EnableProfileCommandInput;
47
+ output: EnableProfileCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const EnableTrustAnchorCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class EnableTrustAnchorCommand extends EnableTrustAnchorCommand_base {}
40
+ export declare class EnableTrustAnchorCommand extends EnableTrustAnchorCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ScalarTrustAnchorRequest;
44
+ output: TrustAnchorDetailResponse;
45
+ };
46
+ sdk: {
47
+ input: EnableTrustAnchorCommandInput;
48
+ output: EnableTrustAnchorCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -29,4 +29,15 @@ declare const GetCrlCommand_base: {
29
29
  >;
30
30
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
31
31
  };
32
- export declare class GetCrlCommand extends GetCrlCommand_base {}
32
+ export declare class GetCrlCommand extends GetCrlCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: ScalarCrlRequest;
36
+ output: CrlDetailResponse;
37
+ };
38
+ sdk: {
39
+ input: GetCrlCommandInput;
40
+ output: GetCrlCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -36,4 +36,15 @@ declare const GetProfileCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class GetProfileCommand extends GetProfileCommand_base {}
39
+ export declare class GetProfileCommand extends GetProfileCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ScalarProfileRequest;
43
+ output: ProfileDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: GetProfileCommandInput;
47
+ output: GetProfileCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -36,4 +36,15 @@ declare const GetSubjectCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class GetSubjectCommand extends GetSubjectCommand_base {}
39
+ export declare class GetSubjectCommand extends GetSubjectCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ScalarSubjectRequest;
43
+ output: SubjectDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: GetSubjectCommandInput;
47
+ output: GetSubjectCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -36,4 +36,15 @@ declare const GetTrustAnchorCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class GetTrustAnchorCommand extends GetTrustAnchorCommand_base {}
39
+ export declare class GetTrustAnchorCommand extends GetTrustAnchorCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ScalarTrustAnchorRequest;
43
+ output: TrustAnchorDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: GetTrustAnchorCommandInput;
47
+ output: GetTrustAnchorCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const ImportCrlCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ImportCrlCommand extends ImportCrlCommand_base {}
36
+ export declare class ImportCrlCommand extends ImportCrlCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ImportCrlRequest;
40
+ output: CrlDetailResponse;
41
+ };
42
+ sdk: {
43
+ input: ImportCrlCommandInput;
44
+ output: ImportCrlCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const ListCrlsCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListCrlsCommand extends ListCrlsCommand_base {}
36
+ export declare class ListCrlsCommand extends ListCrlsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListRequest;
40
+ output: ListCrlsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListCrlsCommandInput;
44
+ output: ListCrlsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const ListProfilesCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListProfilesCommand extends ListProfilesCommand_base {}
36
+ export declare class ListProfilesCommand extends ListProfilesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListRequest;
40
+ output: ListProfilesResponse;
41
+ };
42
+ sdk: {
43
+ input: ListProfilesCommandInput;
44
+ output: ListProfilesCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -33,4 +33,15 @@ declare const ListSubjectsCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListSubjectsCommand extends ListSubjectsCommand_base {}
36
+ export declare class ListSubjectsCommand extends ListSubjectsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListRequest;
40
+ output: ListSubjectsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListSubjectsCommandInput;
44
+ output: ListSubjectsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -37,4 +37,15 @@ declare const ListTagsForResourceCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const ListTrustAnchorsCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class ListTrustAnchorsCommand extends ListTrustAnchorsCommand_base {}
36
+ export declare class ListTrustAnchorsCommand extends ListTrustAnchorsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListRequest;
40
+ output: ListTrustAnchorsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListTrustAnchorsCommandInput;
44
+ output: ListTrustAnchorsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -37,4 +37,15 @@ declare const PutAttributeMappingCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class PutAttributeMappingCommand extends PutAttributeMappingCommand_base {}
40
+ export declare class PutAttributeMappingCommand extends PutAttributeMappingCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutAttributeMappingRequest;
44
+ output: PutAttributeMappingResponse;
45
+ };
46
+ sdk: {
47
+ input: PutAttributeMappingCommandInput;
48
+ output: PutAttributeMappingCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const PutNotificationSettingsCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class PutNotificationSettingsCommand extends PutNotificationSettingsCommand_base {}
40
+ export declare class PutNotificationSettingsCommand extends PutNotificationSettingsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutNotificationSettingsRequest;
44
+ output: PutNotificationSettingsResponse;
45
+ };
46
+ sdk: {
47
+ input: PutNotificationSettingsCommandInput;
48
+ output: PutNotificationSettingsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -37,4 +37,15 @@ declare const ResetNotificationSettingsCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class ResetNotificationSettingsCommand extends ResetNotificationSettingsCommand_base {}
40
+ export declare class ResetNotificationSettingsCommand extends ResetNotificationSettingsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ResetNotificationSettingsRequest;
44
+ output: ResetNotificationSettingsResponse;
45
+ };
46
+ sdk: {
47
+ input: ResetNotificationSettingsCommandInput;
48
+ output: ResetNotificationSettingsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -33,4 +33,15 @@ declare const TagResourceCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class TagResourceCommand extends TagResourceCommand_base {}
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const UntagResourceCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UntagResourceCommand extends UntagResourceCommand_base {}
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -33,4 +33,15 @@ declare const UpdateCrlCommand_base: {
33
33
  >;
34
34
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
35
  };
36
- export declare class UpdateCrlCommand extends UpdateCrlCommand_base {}
36
+ export declare class UpdateCrlCommand extends UpdateCrlCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateCrlRequest;
40
+ output: CrlDetailResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateCrlCommandInput;
44
+ output: UpdateCrlCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -36,4 +36,15 @@ declare const UpdateProfileCommand_base: {
36
36
  >;
37
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
38
  };
39
- export declare class UpdateProfileCommand extends UpdateProfileCommand_base {}
39
+ export declare class UpdateProfileCommand extends UpdateProfileCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateProfileRequest;
43
+ output: ProfileDetailResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateProfileCommandInput;
47
+ output: UpdateProfileCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -37,4 +37,15 @@ declare const UpdateTrustAnchorCommand_base: {
37
37
  >;
38
38
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
39
  };
40
- export declare class UpdateTrustAnchorCommand extends UpdateTrustAnchorCommand_base {}
40
+ export declare class UpdateTrustAnchorCommand extends UpdateTrustAnchorCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateTrustAnchorRequest;
44
+ output: TrustAnchorDetailResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateTrustAnchorCommandInput;
48
+ output: UpdateTrustAnchorCommandOutput;
49
+ };
50
+ };
51
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rolesanywhere",
3
3
  "description": "AWS SDK for JavaScript Rolesanywhere Client for Node.js, Browser and React Native",
4
- "version": "3.651.1",
4
+ "version": "3.658.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-rolesanywhere",
@@ -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.651.1",
24
- "@aws-sdk/client-sts": "3.651.1",
25
- "@aws-sdk/core": "3.651.1",
26
- "@aws-sdk/credential-provider-node": "3.651.1",
27
- "@aws-sdk/middleware-host-header": "3.649.0",
28
- "@aws-sdk/middleware-logger": "3.649.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.649.0",
30
- "@aws-sdk/middleware-user-agent": "3.649.0",
31
- "@aws-sdk/region-config-resolver": "3.649.0",
32
- "@aws-sdk/types": "3.649.0",
33
- "@aws-sdk/util-endpoints": "3.649.0",
34
- "@aws-sdk/util-user-agent-browser": "3.649.0",
35
- "@aws-sdk/util-user-agent-node": "3.649.0",
36
- "@smithy/config-resolver": "^3.0.6",
37
- "@smithy/core": "^2.4.1",
38
- "@smithy/fetch-http-handler": "^3.2.5",
39
- "@smithy/hash-node": "^3.0.4",
40
- "@smithy/invalid-dependency": "^3.0.4",
41
- "@smithy/middleware-content-length": "^3.0.6",
42
- "@smithy/middleware-endpoint": "^3.1.1",
43
- "@smithy/middleware-retry": "^3.0.16",
44
- "@smithy/middleware-serde": "^3.0.4",
45
- "@smithy/middleware-stack": "^3.0.4",
46
- "@smithy/node-config-provider": "^3.1.5",
47
- "@smithy/node-http-handler": "^3.2.0",
48
- "@smithy/protocol-http": "^4.1.1",
49
- "@smithy/smithy-client": "^3.3.0",
50
- "@smithy/types": "^3.4.0",
51
- "@smithy/url-parser": "^3.0.4",
23
+ "@aws-sdk/client-sso-oidc": "3.658.0",
24
+ "@aws-sdk/client-sts": "3.658.0",
25
+ "@aws-sdk/core": "3.658.0",
26
+ "@aws-sdk/credential-provider-node": "3.658.0",
27
+ "@aws-sdk/middleware-host-header": "3.654.0",
28
+ "@aws-sdk/middleware-logger": "3.654.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.654.0",
30
+ "@aws-sdk/middleware-user-agent": "3.654.0",
31
+ "@aws-sdk/region-config-resolver": "3.654.0",
32
+ "@aws-sdk/types": "3.654.0",
33
+ "@aws-sdk/util-endpoints": "3.654.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.654.0",
35
+ "@aws-sdk/util-user-agent-node": "3.654.0",
36
+ "@smithy/config-resolver": "^3.0.8",
37
+ "@smithy/core": "^2.4.3",
38
+ "@smithy/fetch-http-handler": "^3.2.7",
39
+ "@smithy/hash-node": "^3.0.6",
40
+ "@smithy/invalid-dependency": "^3.0.6",
41
+ "@smithy/middleware-content-length": "^3.0.8",
42
+ "@smithy/middleware-endpoint": "^3.1.3",
43
+ "@smithy/middleware-retry": "^3.0.18",
44
+ "@smithy/middleware-serde": "^3.0.6",
45
+ "@smithy/middleware-stack": "^3.0.6",
46
+ "@smithy/node-config-provider": "^3.1.7",
47
+ "@smithy/node-http-handler": "^3.2.2",
48
+ "@smithy/protocol-http": "^4.1.3",
49
+ "@smithy/smithy-client": "^3.3.2",
50
+ "@smithy/types": "^3.4.2",
51
+ "@smithy/url-parser": "^3.0.6",
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.16",
56
- "@smithy/util-defaults-mode-node": "^3.0.16",
57
- "@smithy/util-endpoints": "^2.1.0",
58
- "@smithy/util-middleware": "^3.0.4",
59
- "@smithy/util-retry": "^3.0.4",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.18",
56
+ "@smithy/util-defaults-mode-node": "^3.0.18",
57
+ "@smithy/util-endpoints": "^2.1.2",
58
+ "@smithy/util-middleware": "^3.0.6",
59
+ "@smithy/util-retry": "^3.0.6",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },