@aws-sdk/client-rolesanywhere 3.535.0 → 3.547.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.
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -1844,9 +1844,6 @@ var paginateListSubjects = (0, import_core.createPaginator)(RolesAnywhereClient,
1844
1844
  // src/pagination/ListTrustAnchorsPaginator.ts
1845
1845
 
1846
1846
  var paginateListTrustAnchors = (0, import_core.createPaginator)(RolesAnywhereClient, ListTrustAnchorsCommand, "nextToken", "nextToken", "");
1847
-
1848
- // src/index.ts
1849
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
1850
1847
  // Annotate the CommonJS export names for ESM import in node:
1851
1848
 
1852
1849
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./RolesAnywhere";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { RolesAnywhereServiceException } from "./models/RolesAnywhereServiceException";
@@ -27,7 +27,8 @@ declare const ImportCrlCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Imports the certificate revocation list (CRL). A CRL is a list of certificates that have
30
- * been revoked by the issuing certificate Authority (CA). IAM Roles Anywhere
30
+ * been revoked by the issuing certificate Authority (CA).In order to be properly imported, a CRL must be in PEM
31
+ * format. IAM Roles Anywhere
31
32
  * validates against the CRL before issuing credentials. </p>
32
33
  * <p>
33
34
  * <b>Required permissions: </b>
@@ -25,5 +25,4 @@ export { RolesAnywhereExtensionConfiguration } from "./extensionConfiguration";
25
25
  export * from "./commands";
26
26
  export * from "./pagination";
27
27
  export * from "./models";
28
- import "@aws-sdk/util-endpoints";
29
28
  export { RolesAnywhereServiceException } from "./models/RolesAnywhereServiceException";
@@ -58,7 +58,9 @@ export interface CreateProfileRequest {
58
58
  */
59
59
  managedPolicyArns?: string[];
60
60
  /**
61
- * <p> The number of seconds the vended session credentials are valid for. </p>
61
+ * <p> Used to determine how long sessions vended using this profile are valid for. See the <code>Expiration</code> section of the
62
+ * <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object">CreateSession API documentation</a>
63
+ * page for more details. In requests, if this value is not provided, the default value will be 3600. </p>
62
64
  * @public
63
65
  */
64
66
  durationSeconds?: number;
@@ -134,7 +136,9 @@ export interface ProfileDetail {
134
136
  */
135
137
  updatedAt?: Date;
136
138
  /**
137
- * <p> The number of seconds the vended session credentials are valid for. </p>
139
+ * <p> Used to determine how long sessions vended using this profile are valid for. See the <code>Expiration</code> section of the
140
+ * <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object">CreateSession API documentation</a>
141
+ * page for more details. In requests, if this value is not provided, the default value will be 3600. </p>
138
142
  * @public
139
143
  */
140
144
  durationSeconds?: number;
@@ -878,7 +882,9 @@ export interface UpdateProfileRequest {
878
882
  */
879
883
  managedPolicyArns?: string[];
880
884
  /**
881
- * <p> The number of seconds the vended session credentials are valid for. </p>
885
+ * <p> Used to determine how long sessions vended using this profile are valid for. See the <code>Expiration</code> section of the
886
+ * <a href="https://docs.aws.amazon.com/rolesanywhere/latest/userguide/authentication-create-session.html#credentials-object">CreateSession API documentation</a>
887
+ * page for more details. In requests, if this value is not provided, the default value will be 3600. </p>
882
888
  * @public
883
889
  */
884
890
  durationSeconds?: number;
@@ -6,5 +6,4 @@ export { RolesAnywhereExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { RolesAnywhereServiceException } from "./models/RolesAnywhereServiceException";
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.535.0",
4
+ "version": "3.547.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,16 +20,16 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.535.0",
23
+ "@aws-sdk/client-sts": "3.540.0",
24
24
  "@aws-sdk/core": "3.535.0",
25
- "@aws-sdk/credential-provider-node": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
- "@aws-sdk/middleware-user-agent": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
30
  "@aws-sdk/region-config-resolver": "3.535.0",
31
31
  "@aws-sdk/types": "3.535.0",
32
- "@aws-sdk/util-endpoints": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.535.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.535.0",
35
35
  "@smithy/config-resolver": "^2.2.0",