@aws-sdk/client-rolesanywhere 3.936.0 → 3.939.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.
package/dist-cjs/index.js CHANGED
@@ -1340,6 +1340,24 @@ const paginateListSubjects = core.createPaginator(RolesAnywhereClient, ListSubje
1340
1340
 
1341
1341
  const paginateListTrustAnchors = core.createPaginator(RolesAnywhereClient, ListTrustAnchorsCommand, "nextToken", "nextToken", "");
1342
1342
 
1343
+ const CertificateField = {
1344
+ x509Issuer: "x509Issuer",
1345
+ x509SAN: "x509SAN",
1346
+ x509Subject: "x509Subject",
1347
+ };
1348
+ const NotificationChannel = {
1349
+ ALL: "ALL",
1350
+ };
1351
+ const NotificationEvent = {
1352
+ CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY",
1353
+ END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY",
1354
+ };
1355
+ const TrustAnchorType = {
1356
+ AWS_ACM_PCA: "AWS_ACM_PCA",
1357
+ CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE",
1358
+ SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY",
1359
+ };
1360
+
1343
1361
  Object.defineProperty(exports, "$Command", {
1344
1362
  enumerable: true,
1345
1363
  get: function () { return smithyClient.Command; }
@@ -1349,6 +1367,7 @@ Object.defineProperty(exports, "__Client", {
1349
1367
  get: function () { return smithyClient.Client; }
1350
1368
  });
1351
1369
  exports.AccessDeniedException = AccessDeniedException$1;
1370
+ exports.CertificateField = CertificateField;
1352
1371
  exports.CreateProfileCommand = CreateProfileCommand;
1353
1372
  exports.CreateTrustAnchorCommand = CreateTrustAnchorCommand;
1354
1373
  exports.DeleteAttributeMappingCommand = DeleteAttributeMappingCommand;
@@ -1371,6 +1390,8 @@ exports.ListProfilesCommand = ListProfilesCommand;
1371
1390
  exports.ListSubjectsCommand = ListSubjectsCommand;
1372
1391
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1373
1392
  exports.ListTrustAnchorsCommand = ListTrustAnchorsCommand;
1393
+ exports.NotificationChannel = NotificationChannel;
1394
+ exports.NotificationEvent = NotificationEvent;
1374
1395
  exports.PutAttributeMappingCommand = PutAttributeMappingCommand;
1375
1396
  exports.PutNotificationSettingsCommand = PutNotificationSettingsCommand;
1376
1397
  exports.ResetNotificationSettingsCommand = ResetNotificationSettingsCommand;
@@ -1380,6 +1401,7 @@ exports.RolesAnywhereClient = RolesAnywhereClient;
1380
1401
  exports.RolesAnywhereServiceException = RolesAnywhereServiceException$1;
1381
1402
  exports.TagResourceCommand = TagResourceCommand;
1382
1403
  exports.TooManyTagsException = TooManyTagsException$1;
1404
+ exports.TrustAnchorType = TrustAnchorType;
1383
1405
  exports.UntagResourceCommand = UntagResourceCommand;
1384
1406
  exports.UpdateCrlCommand = UpdateCrlCommand;
1385
1407
  exports.UpdateProfileCommand = UpdateProfileCommand;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./RolesAnywhereClient";
2
2
  export * from "./RolesAnywhere";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { RolesAnywhereServiceException } from "./models/RolesAnywhereServiceException";
@@ -0,0 +1,17 @@
1
+ export const CertificateField = {
2
+ x509Issuer: "x509Issuer",
3
+ x509SAN: "x509SAN",
4
+ x509Subject: "x509Subject",
5
+ };
6
+ export const NotificationChannel = {
7
+ ALL: "ALL",
8
+ };
9
+ export const NotificationEvent = {
10
+ CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY",
11
+ END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY",
12
+ };
13
+ export const TrustAnchorType = {
14
+ AWS_ACM_PCA: "AWS_ACM_PCA",
15
+ CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE",
16
+ SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY",
17
+ };
@@ -1,17 +1 @@
1
- export const CertificateField = {
2
- x509Issuer: "x509Issuer",
3
- x509SAN: "x509SAN",
4
- x509Subject: "x509Subject",
5
- };
6
- export const NotificationChannel = {
7
- ALL: "ALL",
8
- };
9
- export const NotificationEvent = {
10
- CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY",
11
- END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY",
12
- };
13
- export const TrustAnchorType = {
14
- AWS_ACM_PCA: "AWS_ACM_PCA",
15
- CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE",
16
- SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY",
17
- };
1
+ export {};
@@ -24,6 +24,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
24
24
  export type { RolesAnywhereExtensionConfiguration } from "./extensionConfiguration";
25
25
  export * from "./commands";
26
26
  export * from "./pagination";
27
+ export * from "./models/enums";
27
28
  export * from "./models/errors";
28
29
  export type * from "./models/models_0";
29
30
  export { RolesAnywhereServiceException } from "./models/RolesAnywhereServiceException";
@@ -0,0 +1,49 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CertificateField: {
6
+ readonly x509Issuer: "x509Issuer";
7
+ readonly x509SAN: "x509SAN";
8
+ readonly x509Subject: "x509Subject";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type CertificateField = (typeof CertificateField)[keyof typeof CertificateField];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const NotificationChannel: {
19
+ readonly ALL: "ALL";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type NotificationChannel = (typeof NotificationChannel)[keyof typeof NotificationChannel];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const NotificationEvent: {
30
+ readonly CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY";
31
+ readonly END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type NotificationEvent = (typeof NotificationEvent)[keyof typeof NotificationEvent];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const TrustAnchorType: {
42
+ readonly AWS_ACM_PCA: "AWS_ACM_PCA";
43
+ readonly CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE";
44
+ readonly SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type TrustAnchorType = (typeof TrustAnchorType)[keyof typeof TrustAnchorType];
@@ -1,16 +1,4 @@
1
- /**
2
- * @public
3
- * @enum
4
- */
5
- export declare const CertificateField: {
6
- readonly x509Issuer: "x509Issuer";
7
- readonly x509SAN: "x509SAN";
8
- readonly x509Subject: "x509Subject";
9
- };
10
- /**
11
- * @public
12
- */
13
- export type CertificateField = (typeof CertificateField)[keyof typeof CertificateField];
1
+ import { CertificateField, NotificationChannel, NotificationEvent, TrustAnchorType } from "./enums";
14
2
  /**
15
3
  * <p>A single mapping entry for each supported specifier or sub-field.</p>
16
4
  * @public
@@ -194,29 +182,6 @@ export interface ProfileDetailResponse {
194
182
  */
195
183
  profile?: ProfileDetail | undefined;
196
184
  }
197
- /**
198
- * @public
199
- * @enum
200
- */
201
- export declare const NotificationChannel: {
202
- readonly ALL: "ALL";
203
- };
204
- /**
205
- * @public
206
- */
207
- export type NotificationChannel = (typeof NotificationChannel)[keyof typeof NotificationChannel];
208
- /**
209
- * @public
210
- * @enum
211
- */
212
- export declare const NotificationEvent: {
213
- readonly CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY";
214
- readonly END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY";
215
- };
216
- /**
217
- * @public
218
- */
219
- export type NotificationEvent = (typeof NotificationEvent)[keyof typeof NotificationEvent];
220
185
  /**
221
186
  * <p>
222
187
  * Customizable notification settings that will be applied to notification events.
@@ -298,19 +263,6 @@ export declare namespace SourceData {
298
263
  _: (name: string, value: any) => T;
299
264
  }
300
265
  }
301
- /**
302
- * @public
303
- * @enum
304
- */
305
- export declare const TrustAnchorType: {
306
- readonly AWS_ACM_PCA: "AWS_ACM_PCA";
307
- readonly CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE";
308
- readonly SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY";
309
- };
310
- /**
311
- * @public
312
- */
313
- export type TrustAnchorType = (typeof TrustAnchorType)[keyof typeof TrustAnchorType];
314
266
  /**
315
267
  * <p>The trust anchor type and its related certificate data.</p>
316
268
  * @public
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { RolesAnywhereExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { RolesAnywhereServiceException } from "./models/RolesAnywhereServiceException";
@@ -0,0 +1,25 @@
1
+ export declare const CertificateField: {
2
+ readonly x509Issuer: "x509Issuer";
3
+ readonly x509SAN: "x509SAN";
4
+ readonly x509Subject: "x509Subject";
5
+ };
6
+ export type CertificateField =
7
+ (typeof CertificateField)[keyof typeof CertificateField];
8
+ export declare const NotificationChannel: {
9
+ readonly ALL: "ALL";
10
+ };
11
+ export type NotificationChannel =
12
+ (typeof NotificationChannel)[keyof typeof NotificationChannel];
13
+ export declare const NotificationEvent: {
14
+ readonly CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY";
15
+ readonly END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY";
16
+ };
17
+ export type NotificationEvent =
18
+ (typeof NotificationEvent)[keyof typeof NotificationEvent];
19
+ export declare const TrustAnchorType: {
20
+ readonly AWS_ACM_PCA: "AWS_ACM_PCA";
21
+ readonly CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE";
22
+ readonly SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY";
23
+ };
24
+ export type TrustAnchorType =
25
+ (typeof TrustAnchorType)[keyof typeof TrustAnchorType];
@@ -1,10 +1,9 @@
1
- export declare const CertificateField: {
2
- readonly x509Issuer: "x509Issuer";
3
- readonly x509SAN: "x509SAN";
4
- readonly x509Subject: "x509Subject";
5
- };
6
- export type CertificateField =
7
- (typeof CertificateField)[keyof typeof CertificateField];
1
+ import {
2
+ CertificateField,
3
+ NotificationChannel,
4
+ NotificationEvent,
5
+ TrustAnchorType,
6
+ } from "./enums";
8
7
  export interface MappingRule {
9
8
  specifier: string | undefined;
10
9
  }
@@ -46,17 +45,6 @@ export interface ProfileDetail {
46
45
  export interface ProfileDetailResponse {
47
46
  profile?: ProfileDetail | undefined;
48
47
  }
49
- export declare const NotificationChannel: {
50
- readonly ALL: "ALL";
51
- };
52
- export type NotificationChannel =
53
- (typeof NotificationChannel)[keyof typeof NotificationChannel];
54
- export declare const NotificationEvent: {
55
- readonly CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY";
56
- readonly END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY";
57
- };
58
- export type NotificationEvent =
59
- (typeof NotificationEvent)[keyof typeof NotificationEvent];
60
48
  export interface NotificationSetting {
61
49
  enabled: boolean | undefined;
62
50
  event: NotificationEvent | undefined;
@@ -89,13 +77,6 @@ export declare namespace SourceData {
89
77
  _: (name: string, value: any) => T;
90
78
  }
91
79
  }
92
- export declare const TrustAnchorType: {
93
- readonly AWS_ACM_PCA: "AWS_ACM_PCA";
94
- readonly CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE";
95
- readonly SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY";
96
- };
97
- export type TrustAnchorType =
98
- (typeof TrustAnchorType)[keyof typeof TrustAnchorType];
99
80
  export interface Source {
100
81
  sourceType?: TrustAnchorType | undefined;
101
82
  sourceData?: SourceData | undefined;
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.936.0",
4
+ "version": "3.939.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",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.939.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",