@aws-sdk/client-rolesanywhere 3.533.0 → 3.535.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/RolesAnywhere.d.ts +5 -1
  2. package/dist-types/RolesAnywhereClient.d.ts +1 -1
  3. package/dist-types/commands/CreateProfileCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateTrustAnchorCommand.d.ts +2 -1
  5. package/dist-types/commands/DeleteCrlCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteProfileCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteTrustAnchorCommand.d.ts +2 -1
  8. package/dist-types/commands/DisableCrlCommand.d.ts +2 -1
  9. package/dist-types/commands/DisableProfileCommand.d.ts +2 -1
  10. package/dist-types/commands/DisableTrustAnchorCommand.d.ts +2 -1
  11. package/dist-types/commands/EnableCrlCommand.d.ts +2 -1
  12. package/dist-types/commands/EnableProfileCommand.d.ts +2 -1
  13. package/dist-types/commands/EnableTrustAnchorCommand.d.ts +2 -1
  14. package/dist-types/commands/GetCrlCommand.d.ts +2 -1
  15. package/dist-types/commands/GetProfileCommand.d.ts +2 -1
  16. package/dist-types/commands/GetSubjectCommand.d.ts +2 -1
  17. package/dist-types/commands/GetTrustAnchorCommand.d.ts +2 -1
  18. package/dist-types/commands/ImportCrlCommand.d.ts +2 -1
  19. package/dist-types/commands/ListCrlsCommand.d.ts +2 -1
  20. package/dist-types/commands/ListProfilesCommand.d.ts +2 -1
  21. package/dist-types/commands/ListSubjectsCommand.d.ts +2 -1
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  23. package/dist-types/commands/ListTrustAnchorsCommand.d.ts +2 -1
  24. package/dist-types/commands/PutNotificationSettingsCommand.d.ts +2 -1
  25. package/dist-types/commands/ResetNotificationSettingsCommand.d.ts +2 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  28. package/dist-types/commands/UpdateCrlCommand.d.ts +2 -1
  29. package/dist-types/commands/UpdateProfileCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateTrustAnchorCommand.d.ts +2 -1
  31. package/dist-types/models/models_0.d.ts +147 -147
  32. package/dist-types/ts3.4/RolesAnywhere.d.ts +4 -0
  33. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +7 -0
  45. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/commands/PutNotificationSettingsCommand.d.ts +9 -0
  55. package/dist-types/ts3.4/commands/ResetNotificationSettingsCommand.d.ts +9 -0
  56. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  57. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  58. package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +9 -0
  59. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +9 -0
  60. package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +9 -0
  61. package/package.json +40 -40
@@ -128,18 +128,21 @@ export interface RolesAnywhere {
128
128
  /**
129
129
  * @see {@link ListCrlsCommand}
130
130
  */
131
+ listCrls(): Promise<ListCrlsCommandOutput>;
131
132
  listCrls(args: ListCrlsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrlsCommandOutput>;
132
133
  listCrls(args: ListCrlsCommandInput, cb: (err: any, data?: ListCrlsCommandOutput) => void): void;
133
134
  listCrls(args: ListCrlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrlsCommandOutput) => void): void;
134
135
  /**
135
136
  * @see {@link ListProfilesCommand}
136
137
  */
138
+ listProfiles(): Promise<ListProfilesCommandOutput>;
137
139
  listProfiles(args: ListProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilesCommandOutput>;
138
140
  listProfiles(args: ListProfilesCommandInput, cb: (err: any, data?: ListProfilesCommandOutput) => void): void;
139
141
  listProfiles(args: ListProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilesCommandOutput) => void): void;
140
142
  /**
141
143
  * @see {@link ListSubjectsCommand}
142
144
  */
145
+ listSubjects(): Promise<ListSubjectsCommandOutput>;
143
146
  listSubjects(args: ListSubjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListSubjectsCommandOutput>;
144
147
  listSubjects(args: ListSubjectsCommandInput, cb: (err: any, data?: ListSubjectsCommandOutput) => void): void;
145
148
  listSubjects(args: ListSubjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSubjectsCommandOutput) => void): void;
@@ -152,6 +155,7 @@ export interface RolesAnywhere {
152
155
  /**
153
156
  * @see {@link ListTrustAnchorsCommand}
154
157
  */
158
+ listTrustAnchors(): Promise<ListTrustAnchorsCommandOutput>;
155
159
  listTrustAnchors(args: ListTrustAnchorsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustAnchorsCommandOutput>;
156
160
  listTrustAnchors(args: ListTrustAnchorsCommandInput, cb: (err: any, data?: ListTrustAnchorsCommandOutput) => void): void;
157
161
  listTrustAnchors(args: ListTrustAnchorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustAnchorsCommandOutput) => void): void;
@@ -199,7 +203,6 @@ export interface RolesAnywhere {
199
203
  updateTrustAnchor(args: UpdateTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustAnchorCommandOutput) => void): void;
200
204
  }
201
205
  /**
202
- * @public
203
206
  * <p>Identity and Access Management Roles Anywhere provides a secure way for your workloads such as
204
207
  * servers, containers, and applications that run outside of Amazon Web Services to obtain
205
208
  * temporary Amazon Web Services credentials. Your workloads can use the same IAM policies and roles you have for native Amazon Web Services applications to access Amazon Web Services resources. Using IAM Roles Anywhere eliminates the need to
@@ -215,6 +218,7 @@ export interface RolesAnywhere {
215
218
  * <p>This guide describes the IAM Roles Anywhere operations that you can call
216
219
  * programmatically. For more information about IAM Roles Anywhere, see the
217
220
  * <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/introduction.html">IAM Roles Anywhere User Guide</a>.</p>
221
+ * @public
218
222
  */
219
223
  export declare class RolesAnywhere extends RolesAnywhereClient implements RolesAnywhere {
220
224
  }
@@ -179,7 +179,6 @@ export type RolesAnywhereClientResolvedConfigType = __SmithyResolvedConfiguratio
179
179
  export interface RolesAnywhereClientResolvedConfig extends RolesAnywhereClientResolvedConfigType {
180
180
  }
181
181
  /**
182
- * @public
183
182
  * <p>Identity and Access Management Roles Anywhere provides a secure way for your workloads such as
184
183
  * servers, containers, and applications that run outside of Amazon Web Services to obtain
185
184
  * temporary Amazon Web Services credentials. Your workloads can use the same IAM policies and roles you have for native Amazon Web Services applications to access Amazon Web Services resources. Using IAM Roles Anywhere eliminates the need to
@@ -195,6 +194,7 @@ export interface RolesAnywhereClientResolvedConfig extends RolesAnywhereClientRe
195
194
  * <p>This guide describes the IAM Roles Anywhere operations that you can call
196
195
  * programmatically. For more information about IAM Roles Anywhere, see the
197
196
  * <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/introduction.html">IAM Roles Anywhere User Guide</a>.</p>
197
+ * @public
198
198
  */
199
199
  export declare class RolesAnywhereClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, RolesAnywhereClientResolvedConfig> {
200
200
  /**
@@ -22,10 +22,10 @@ export interface CreateProfileCommandOutput extends ProfileDetailResponse, __Met
22
22
  }
23
23
  declare const CreateProfileCommand_base: {
24
24
  new (input: CreateProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProfileCommandInput, CreateProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateProfileCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProfileCommandInput, CreateProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a <i>profile</i>, a list of the roles that Roles Anywhere service is trusted to assume. You use profiles to intersect permissions with IAM managed policies.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -96,6 +96,7 @@ declare const CreateProfileCommand_base: {
96
96
  * @throws {@link RolesAnywhereServiceException}
97
97
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
98
98
  *
99
+ * @public
99
100
  */
100
101
  export declare class CreateProfileCommand extends CreateProfileCommand_base {
101
102
  }
@@ -22,10 +22,10 @@ export interface CreateTrustAnchorCommandOutput extends TrustAnchorDetailRespons
22
22
  }
23
23
  declare const CreateTrustAnchorCommand_base: {
24
24
  new (input: CreateTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a trust anchor to establish trust between IAM Roles Anywhere and
30
30
  * your certificate authority (CA). You can define a trust anchor as a reference to an Private Certificate Authority (Private CA) or by uploading a CA certificate. Your Amazon Web Services workloads can authenticate with the trust anchor using certificates issued by
31
31
  * the CA in exchange for temporary Amazon Web Services credentials.</p>
@@ -110,6 +110,7 @@ declare const CreateTrustAnchorCommand_base: {
110
110
  * @throws {@link RolesAnywhereServiceException}
111
111
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
112
112
  *
113
+ * @public
113
114
  */
114
115
  export declare class CreateTrustAnchorCommand extends CreateTrustAnchorCommand_base {
115
116
  }
@@ -22,10 +22,10 @@ export interface DeleteCrlCommandOutput extends CrlDetailResponse, __MetadataBea
22
22
  }
23
23
  declare const DeleteCrlCommand_base: {
24
24
  new (input: DeleteCrlCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCrlCommandInput, DeleteCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteCrlCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCrlCommandInput, DeleteCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a certificate revocation list (CRL).</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -72,6 +72,7 @@ declare const DeleteCrlCommand_base: {
72
72
  * @throws {@link RolesAnywhereServiceException}
73
73
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class DeleteCrlCommand extends DeleteCrlCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface DeleteProfileCommandOutput extends ProfileDetailResponse, __Met
22
22
  }
23
23
  declare const DeleteProfileCommand_base: {
24
24
  new (input: DeleteProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProfileCommandInput, DeleteProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProfileCommandInput, DeleteProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a profile.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -80,6 +80,7 @@ declare const DeleteProfileCommand_base: {
80
80
  * @throws {@link RolesAnywhereServiceException}
81
81
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class DeleteProfileCommand extends DeleteProfileCommand_base {
85
86
  }
@@ -22,10 +22,10 @@ export interface DeleteTrustAnchorCommandOutput extends TrustAnchorDetailRespons
22
22
  }
23
23
  declare const DeleteTrustAnchorCommand_base: {
24
24
  new (input: DeleteTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a trust anchor.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -86,6 +86,7 @@ declare const DeleteTrustAnchorCommand_base: {
86
86
  * @throws {@link RolesAnywhereServiceException}
87
87
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class DeleteTrustAnchorCommand extends DeleteTrustAnchorCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface DisableCrlCommandOutput extends CrlDetailResponse, __MetadataBe
22
22
  }
23
23
  declare const DisableCrlCommand_base: {
24
24
  new (input: DisableCrlCommandInput): import("@smithy/smithy-client").CommandImpl<DisableCrlCommandInput, DisableCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DisableCrlCommandInput): import("@smithy/smithy-client").CommandImpl<DisableCrlCommandInput, DisableCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disables a certificate revocation list (CRL).</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -72,6 +72,7 @@ declare const DisableCrlCommand_base: {
72
72
  * @throws {@link RolesAnywhereServiceException}
73
73
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class DisableCrlCommand extends DisableCrlCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface DisableProfileCommandOutput extends ProfileDetailResponse, __Me
22
22
  }
23
23
  declare const DisableProfileCommand_base: {
24
24
  new (input: DisableProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DisableProfileCommandInput, DisableProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DisableProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DisableProfileCommandInput, DisableProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disables a profile. When disabled, temporary credential requests with this profile fail.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -80,6 +80,7 @@ declare const DisableProfileCommand_base: {
80
80
  * @throws {@link RolesAnywhereServiceException}
81
81
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class DisableProfileCommand extends DisableProfileCommand_base {
85
86
  }
@@ -22,10 +22,10 @@ export interface DisableTrustAnchorCommandOutput extends TrustAnchorDetailRespon
22
22
  }
23
23
  declare const DisableTrustAnchorCommand_base: {
24
24
  new (input: DisableTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DisableTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disables a trust anchor. When disabled, temporary credential requests specifying this trust anchor are unauthorized.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -86,6 +86,7 @@ declare const DisableTrustAnchorCommand_base: {
86
86
  * @throws {@link RolesAnywhereServiceException}
87
87
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class DisableTrustAnchorCommand extends DisableTrustAnchorCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface EnableCrlCommandOutput extends CrlDetailResponse, __MetadataBea
22
22
  }
23
23
  declare const EnableCrlCommand_base: {
24
24
  new (input: EnableCrlCommandInput): import("@smithy/smithy-client").CommandImpl<EnableCrlCommandInput, EnableCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: EnableCrlCommandInput): import("@smithy/smithy-client").CommandImpl<EnableCrlCommandInput, EnableCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Enables a certificate revocation list (CRL). When enabled, certificates stored in the CRL are unauthorized to receive session credentials.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -72,6 +72,7 @@ declare const EnableCrlCommand_base: {
72
72
  * @throws {@link RolesAnywhereServiceException}
73
73
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class EnableCrlCommand extends EnableCrlCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface EnableProfileCommandOutput extends ProfileDetailResponse, __Met
22
22
  }
23
23
  declare const EnableProfileCommand_base: {
24
24
  new (input: EnableProfileCommandInput): import("@smithy/smithy-client").CommandImpl<EnableProfileCommandInput, EnableProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: EnableProfileCommandInput): import("@smithy/smithy-client").CommandImpl<EnableProfileCommandInput, EnableProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Enables temporary credential requests for a profile. </p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -80,6 +80,7 @@ declare const EnableProfileCommand_base: {
80
80
  * @throws {@link RolesAnywhereServiceException}
81
81
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class EnableProfileCommand extends EnableProfileCommand_base {
85
86
  }
@@ -22,10 +22,10 @@ export interface EnableTrustAnchorCommandOutput extends TrustAnchorDetailRespons
22
22
  }
23
23
  declare const EnableTrustAnchorCommand_base: {
24
24
  new (input: EnableTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: EnableTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Enables a trust anchor. When enabled, certificates in the trust anchor chain are authorized for trust validation. </p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -86,6 +86,7 @@ declare const EnableTrustAnchorCommand_base: {
86
86
  * @throws {@link RolesAnywhereServiceException}
87
87
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class EnableTrustAnchorCommand extends EnableTrustAnchorCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface GetCrlCommandOutput extends CrlDetailResponse, __MetadataBearer
22
22
  }
23
23
  declare const GetCrlCommand_base: {
24
24
  new (input: GetCrlCommandInput): import("@smithy/smithy-client").CommandImpl<GetCrlCommandInput, GetCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetCrlCommandInput): import("@smithy/smithy-client").CommandImpl<GetCrlCommandInput, GetCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets a certificate revocation list (CRL).</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -69,6 +69,7 @@ declare const GetCrlCommand_base: {
69
69
  * @throws {@link RolesAnywhereServiceException}
70
70
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class GetCrlCommand extends GetCrlCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface GetProfileCommandOutput extends ProfileDetailResponse, __Metada
22
22
  }
23
23
  declare const GetProfileCommand_base: {
24
24
  new (input: GetProfileCommandInput): import("@smithy/smithy-client").CommandImpl<GetProfileCommandInput, GetProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetProfileCommandInput): import("@smithy/smithy-client").CommandImpl<GetProfileCommandInput, GetProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets a profile.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -80,6 +80,7 @@ declare const GetProfileCommand_base: {
80
80
  * @throws {@link RolesAnywhereServiceException}
81
81
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class GetProfileCommand extends GetProfileCommand_base {
85
86
  }
@@ -22,10 +22,10 @@ export interface GetSubjectCommandOutput extends SubjectDetailResponse, __Metada
22
22
  }
23
23
  declare const GetSubjectCommand_base: {
24
24
  new (input: GetSubjectCommandInput): import("@smithy/smithy-client").CommandImpl<GetSubjectCommandInput, GetSubjectCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetSubjectCommandInput): import("@smithy/smithy-client").CommandImpl<GetSubjectCommandInput, GetSubjectCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets a <i>subject</i>, which associates a certificate identity with
30
30
  * authentication attempts. The subject stores auditing information such as the status
31
31
  * of the last authentication attempt, the certificate data used in the attempt, and the
@@ -93,6 +93,7 @@ declare const GetSubjectCommand_base: {
93
93
  * @throws {@link RolesAnywhereServiceException}
94
94
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
95
95
  *
96
+ * @public
96
97
  */
97
98
  export declare class GetSubjectCommand extends GetSubjectCommand_base {
98
99
  }
@@ -22,10 +22,10 @@ export interface GetTrustAnchorCommandOutput extends TrustAnchorDetailResponse,
22
22
  }
23
23
  declare const GetTrustAnchorCommand_base: {
24
24
  new (input: GetTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetTrustAnchorCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets a trust anchor.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -89,6 +89,7 @@ declare const GetTrustAnchorCommand_base: {
89
89
  * @throws {@link RolesAnywhereServiceException}
90
90
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
91
91
  *
92
+ * @public
92
93
  */
93
94
  export declare class GetTrustAnchorCommand extends GetTrustAnchorCommand_base {
94
95
  }
@@ -22,10 +22,10 @@ export interface ImportCrlCommandOutput extends CrlDetailResponse, __MetadataBea
22
22
  }
23
23
  declare const ImportCrlCommand_base: {
24
24
  new (input: ImportCrlCommandInput): import("@smithy/smithy-client").CommandImpl<ImportCrlCommandInput, ImportCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ImportCrlCommandInput): import("@smithy/smithy-client").CommandImpl<ImportCrlCommandInput, ImportCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Imports the certificate revocation list (CRL). A CRL is a list of certificates that have
30
30
  * been revoked by the issuing certificate Authority (CA). IAM Roles Anywhere
31
31
  * validates against the CRL before issuing credentials. </p>
@@ -83,6 +83,7 @@ declare const ImportCrlCommand_base: {
83
83
  * @throws {@link RolesAnywhereServiceException}
84
84
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
85
85
  *
86
+ * @public
86
87
  */
87
88
  export declare class ImportCrlCommand extends ImportCrlCommand_base {
88
89
  }
@@ -22,10 +22,10 @@ export interface ListCrlsCommandOutput extends ListCrlsResponse, __MetadataBeare
22
22
  }
23
23
  declare const ListCrlsCommand_base: {
24
24
  new (input: ListCrlsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCrlsCommandInput, ListCrlsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListCrlsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListCrlsCommandInput, ListCrlsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all certificate revocation lists (CRL) in the authenticated account and Amazon Web Services Region.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -76,6 +76,7 @@ declare const ListCrlsCommand_base: {
76
76
  * @throws {@link RolesAnywhereServiceException}
77
77
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
78
78
  *
79
+ * @public
79
80
  */
80
81
  export declare class ListCrlsCommand extends ListCrlsCommand_base {
81
82
  }
@@ -22,10 +22,10 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad
22
22
  }
23
23
  declare const ListProfilesCommand_base: {
24
24
  new (input: ListProfilesCommandInput): import("@smithy/smithy-client").CommandImpl<ListProfilesCommandInput, ListProfilesCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListProfilesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListProfilesCommandInput, ListProfilesCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists all profiles in the authenticated account and Amazon Web Services Region.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -84,6 +84,7 @@ declare const ListProfilesCommand_base: {
84
84
  * @throws {@link RolesAnywhereServiceException}
85
85
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
86
86
  *
87
+ * @public
87
88
  */
88
89
  export declare class ListProfilesCommand extends ListProfilesCommand_base {
89
90
  }
@@ -22,10 +22,10 @@ export interface ListSubjectsCommandOutput extends ListSubjectsResponse, __Metad
22
22
  }
23
23
  declare const ListSubjectsCommand_base: {
24
24
  new (input: ListSubjectsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSubjectsCommandInput, ListSubjectsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListSubjectsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSubjectsCommandInput, ListSubjectsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the subjects in the authenticated account and Amazon Web Services Region.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -75,6 +75,7 @@ declare const ListSubjectsCommand_base: {
75
75
  * @throws {@link RolesAnywhereServiceException}
76
76
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class ListSubjectsCommand extends ListSubjectsCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the tags attached to the resource.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -71,6 +71,7 @@ declare const ListTagsForResourceCommand_base: {
71
71
  * @throws {@link RolesAnywhereServiceException}
72
72
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
73
73
  *
74
+ * @public
74
75
  */
75
76
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
76
77
  }
@@ -22,10 +22,10 @@ export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse,
22
22
  }
23
23
  declare const ListTrustAnchorsCommand_base: {
24
24
  new (input: ListTrustAnchorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListTrustAnchorsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the trust anchors in the authenticated account and Amazon Web Services Region.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -90,6 +90,7 @@ declare const ListTrustAnchorsCommand_base: {
90
90
  * @throws {@link RolesAnywhereServiceException}
91
91
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
92
92
  *
93
+ * @public
93
94
  */
94
95
  export declare class ListTrustAnchorsCommand extends ListTrustAnchorsCommand_base {
95
96
  }
@@ -22,10 +22,10 @@ export interface PutNotificationSettingsCommandOutput extends PutNotificationSet
22
22
  }
23
23
  declare const PutNotificationSettingsCommand_base: {
24
24
  new (input: PutNotificationSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<PutNotificationSettingsCommandInput, PutNotificationSettingsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutNotificationSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<PutNotificationSettingsCommandInput, PutNotificationSettingsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Attaches a list of <i>notification settings</i> to a trust anchor.</p>
30
30
  * <p>A notification setting includes information such as event name, threshold, status of
31
31
  * the notification setting, and the channel to notify.</p>
@@ -99,6 +99,7 @@ declare const PutNotificationSettingsCommand_base: {
99
99
  * @throws {@link RolesAnywhereServiceException}
100
100
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
101
101
  *
102
+ * @public
102
103
  */
103
104
  export declare class PutNotificationSettingsCommand extends PutNotificationSettingsCommand_base {
104
105
  }
@@ -22,10 +22,10 @@ export interface ResetNotificationSettingsCommandOutput extends ResetNotificatio
22
22
  }
23
23
  declare const ResetNotificationSettingsCommand_base: {
24
24
  new (input: ResetNotificationSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<ResetNotificationSettingsCommandInput, ResetNotificationSettingsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ResetNotificationSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<ResetNotificationSettingsCommandInput, ResetNotificationSettingsCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Resets the <i>custom notification setting</i> to IAM Roles Anywhere default setting.
30
30
  * </p>
31
31
  * <p>
@@ -96,6 +96,7 @@ declare const ResetNotificationSettingsCommand_base: {
96
96
  * @throws {@link RolesAnywhereServiceException}
97
97
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
98
98
  *
99
+ * @public
99
100
  */
100
101
  export declare class ResetNotificationSettingsCommand extends ResetNotificationSettingsCommand_base {
101
102
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Attaches tags to a resource.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -73,6 +73,7 @@ declare const TagResourceCommand_base: {
73
73
  * @throws {@link RolesAnywhereServiceException}
74
74
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class TagResourceCommand extends TagResourceCommand_base {
78
79
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes tags from the resource.</p>
30
30
  * <p>
31
31
  * <b>Required permissions: </b>
@@ -67,6 +67,7 @@ declare const UntagResourceCommand_base: {
67
67
  * @throws {@link RolesAnywhereServiceException}
68
68
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
69
69
  *
70
+ * @public
70
71
  */
71
72
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
72
73
  }
@@ -22,10 +22,10 @@ export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBea
22
22
  }
23
23
  declare const UpdateCrlCommand_base: {
24
24
  new (input: UpdateCrlCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCrlCommandInput, UpdateCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateCrlCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCrlCommandInput, UpdateCrlCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates the certificate revocation list (CRL). A CRL is a list of certificates that have
30
30
  * been revoked by the issuing certificate authority (CA). IAM Roles Anywhere
31
31
  * validates against the CRL before issuing credentials.</p>
@@ -79,6 +79,7 @@ declare const UpdateCrlCommand_base: {
79
79
  * @throws {@link RolesAnywhereServiceException}
80
80
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
81
81
  *
82
+ * @public
82
83
  */
83
84
  export declare class UpdateCrlCommand extends UpdateCrlCommand_base {
84
85
  }
@@ -22,10 +22,10 @@ export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __Met
22
22
  }
23
23
  declare const UpdateProfileCommand_base: {
24
24
  new (input: UpdateProfileCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProfileCommandInput, UpdateProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateProfileCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProfileCommandInput, UpdateProfileCommandOutput, RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a <i>profile</i>, a list of the roles that IAM
30
30
  * Roles Anywhere service is trusted to assume. You use profiles to intersect permissions with
31
31
  * IAM managed policies.</p>
@@ -94,6 +94,7 @@ declare const UpdateProfileCommand_base: {
94
94
  * @throws {@link RolesAnywhereServiceException}
95
95
  * <p>Base exception class for all service exceptions from RolesAnywhere service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class UpdateProfileCommand extends UpdateProfileCommand_base {
99
100
  }