@aws-sdk/client-verifiedpermissions 3.414.0 → 3.421.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 (50) hide show
  1. package/README.md +7 -7
  2. package/dist-cjs/commands/CreateIdentitySourceCommand.js +5 -0
  3. package/dist-cjs/commands/CreatePolicyCommand.js +5 -0
  4. package/dist-cjs/commands/CreatePolicyStoreCommand.js +5 -0
  5. package/dist-cjs/commands/CreatePolicyTemplateCommand.js +5 -0
  6. package/dist-cjs/commands/DeleteIdentitySourceCommand.js +5 -0
  7. package/dist-cjs/commands/DeletePolicyCommand.js +5 -0
  8. package/dist-cjs/commands/DeletePolicyStoreCommand.js +5 -0
  9. package/dist-cjs/commands/DeletePolicyTemplateCommand.js +5 -0
  10. package/dist-cjs/commands/GetIdentitySourceCommand.js +5 -0
  11. package/dist-cjs/commands/GetPolicyCommand.js +5 -0
  12. package/dist-cjs/commands/GetPolicyStoreCommand.js +5 -0
  13. package/dist-cjs/commands/GetPolicyTemplateCommand.js +5 -0
  14. package/dist-cjs/commands/GetSchemaCommand.js +5 -0
  15. package/dist-cjs/commands/IsAuthorizedCommand.js +5 -0
  16. package/dist-cjs/commands/IsAuthorizedWithTokenCommand.js +5 -0
  17. package/dist-cjs/commands/ListIdentitySourcesCommand.js +5 -0
  18. package/dist-cjs/commands/ListPoliciesCommand.js +5 -0
  19. package/dist-cjs/commands/ListPolicyStoresCommand.js +5 -0
  20. package/dist-cjs/commands/ListPolicyTemplatesCommand.js +5 -0
  21. package/dist-cjs/commands/PutSchemaCommand.js +5 -0
  22. package/dist-cjs/commands/UpdateIdentitySourceCommand.js +5 -0
  23. package/dist-cjs/commands/UpdatePolicyCommand.js +5 -0
  24. package/dist-cjs/commands/UpdatePolicyStoreCommand.js +5 -0
  25. package/dist-cjs/commands/UpdatePolicyTemplateCommand.js +5 -0
  26. package/dist-es/commands/CreateIdentitySourceCommand.js +5 -0
  27. package/dist-es/commands/CreatePolicyCommand.js +5 -0
  28. package/dist-es/commands/CreatePolicyStoreCommand.js +5 -0
  29. package/dist-es/commands/CreatePolicyTemplateCommand.js +5 -0
  30. package/dist-es/commands/DeleteIdentitySourceCommand.js +5 -0
  31. package/dist-es/commands/DeletePolicyCommand.js +5 -0
  32. package/dist-es/commands/DeletePolicyStoreCommand.js +5 -0
  33. package/dist-es/commands/DeletePolicyTemplateCommand.js +5 -0
  34. package/dist-es/commands/GetIdentitySourceCommand.js +5 -0
  35. package/dist-es/commands/GetPolicyCommand.js +5 -0
  36. package/dist-es/commands/GetPolicyStoreCommand.js +5 -0
  37. package/dist-es/commands/GetPolicyTemplateCommand.js +5 -0
  38. package/dist-es/commands/GetSchemaCommand.js +5 -0
  39. package/dist-es/commands/IsAuthorizedCommand.js +5 -0
  40. package/dist-es/commands/IsAuthorizedWithTokenCommand.js +5 -0
  41. package/dist-es/commands/ListIdentitySourcesCommand.js +5 -0
  42. package/dist-es/commands/ListPoliciesCommand.js +5 -0
  43. package/dist-es/commands/ListPolicyStoresCommand.js +5 -0
  44. package/dist-es/commands/ListPolicyTemplatesCommand.js +5 -0
  45. package/dist-es/commands/PutSchemaCommand.js +5 -0
  46. package/dist-es/commands/UpdateIdentitySourceCommand.js +5 -0
  47. package/dist-es/commands/UpdatePolicyCommand.js +5 -0
  48. package/dist-es/commands/UpdatePolicyStoreCommand.js +5 -0
  49. package/dist-es/commands/UpdatePolicyTemplateCommand.js +5 -0
  50. package/package.json +31 -31
package/README.md CHANGED
@@ -87,16 +87,16 @@ using your favorite package manager:
87
87
 
88
88
  The AWS SDK is modulized by clients and commands.
89
89
  To send a request, you only need to import the `VerifiedPermissionsClient` and
90
- the commands you need, for example `CreateIdentitySourceCommand`:
90
+ the commands you need, for example `ListPolicyStoresCommand`:
91
91
 
92
92
  ```js
93
93
  // ES5 example
94
- const { VerifiedPermissionsClient, CreateIdentitySourceCommand } = require("@aws-sdk/client-verifiedpermissions");
94
+ const { VerifiedPermissionsClient, ListPolicyStoresCommand } = require("@aws-sdk/client-verifiedpermissions");
95
95
  ```
96
96
 
97
97
  ```ts
98
98
  // ES6+ example
99
- import { VerifiedPermissionsClient, CreateIdentitySourceCommand } from "@aws-sdk/client-verifiedpermissions";
99
+ import { VerifiedPermissionsClient, ListPolicyStoresCommand } from "@aws-sdk/client-verifiedpermissions";
100
100
  ```
101
101
 
102
102
  ### Usage
@@ -115,7 +115,7 @@ const client = new VerifiedPermissionsClient({ region: "REGION" });
115
115
  const params = {
116
116
  /** input parameters */
117
117
  };
118
- const command = new CreateIdentitySourceCommand(params);
118
+ const command = new ListPolicyStoresCommand(params);
119
119
  ```
120
120
 
121
121
  #### Async/await
@@ -194,7 +194,7 @@ const client = new AWS.VerifiedPermissions({ region: "REGION" });
194
194
 
195
195
  // async/await.
196
196
  try {
197
- const data = await client.createIdentitySource(params);
197
+ const data = await client.listPolicyStores(params);
198
198
  // process data.
199
199
  } catch (error) {
200
200
  // error handling.
@@ -202,7 +202,7 @@ try {
202
202
 
203
203
  // Promises.
204
204
  client
205
- .createIdentitySource(params)
205
+ .listPolicyStores(params)
206
206
  .then((data) => {
207
207
  // process data.
208
208
  })
@@ -211,7 +211,7 @@ client
211
211
  });
212
212
 
213
213
  // callbacks.
214
- client.createIdentitySource(params, (err, data) => {
214
+ client.listPolicyStores(params, (err, data) => {
215
215
  // process err and data.
216
216
  });
217
217
  ```
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class CreateIdentitySourceCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class CreateIdentitySourceCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.CreateIdentitySourceInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: (_) => _,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "CreateIdentitySource",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class CreatePolicyCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class CreatePolicyCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.CreatePolicyInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.CreatePolicyOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "CreatePolicy",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class CreatePolicyStoreCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class CreatePolicyStoreCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "CreatePolicyStore",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class CreatePolicyTemplateCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class CreatePolicyTemplateCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.CreatePolicyTemplateInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: (_) => _,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "CreatePolicyTemplate",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class DeleteIdentitySourceCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeleteIdentitySourceCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "DeleteIdentitySource",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class DeletePolicyCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeletePolicyCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "DeletePolicy",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class DeletePolicyStoreCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeletePolicyStoreCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "DeletePolicyStore",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class DeletePolicyTemplateCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeletePolicyTemplateCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "DeletePolicyTemplate",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class GetIdentitySourceCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class GetIdentitySourceCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: (_) => _,
35
36
  outputFilterSensitiveLog: models_0_1.GetIdentitySourceOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "GetIdentitySource",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class GetPolicyCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class GetPolicyCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: (_) => _,
35
36
  outputFilterSensitiveLog: models_0_1.GetPolicyOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "GetPolicy",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class GetPolicyStoreCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class GetPolicyStoreCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "GetPolicyStore",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class GetPolicyTemplateCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class GetPolicyTemplateCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: (_) => _,
35
36
  outputFilterSensitiveLog: models_0_1.GetPolicyTemplateOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "GetPolicyTemplate",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class GetSchemaCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class GetSchemaCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: (_) => _,
35
36
  outputFilterSensitiveLog: models_0_1.GetSchemaOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "GetSchema",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class IsAuthorizedCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class IsAuthorizedCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.IsAuthorizedInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.IsAuthorizedOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "IsAuthorized",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class IsAuthorizedWithTokenCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class IsAuthorizedWithTokenCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.IsAuthorizedWithTokenInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.IsAuthorizedWithTokenOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "IsAuthorizedWithToken",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class ListIdentitySourcesCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class ListIdentitySourcesCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.ListIdentitySourcesInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.ListIdentitySourcesOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "ListIdentitySources",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class ListPoliciesCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class ListPoliciesCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.ListPoliciesInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.ListPoliciesOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "ListPolicies",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class ListPolicyStoresCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class ListPolicyStoresCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "ListPolicyStores",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class ListPolicyTemplatesCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class ListPolicyTemplatesCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: (_) => _,
35
36
  outputFilterSensitiveLog: models_0_1.ListPolicyTemplatesOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "ListPolicyTemplates",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class PutSchemaCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class PutSchemaCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.PutSchemaInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.PutSchemaOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "PutSchema",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class UpdateIdentitySourceCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class UpdateIdentitySourceCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.UpdateIdentitySourceInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: (_) => _,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "UpdateIdentitySource",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class UpdatePolicyCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class UpdatePolicyCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.UpdatePolicyInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: models_0_1.UpdatePolicyOutputFilterSensitiveLog,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "UpdatePolicy",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
9
10
  class UpdatePolicyStoreCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class UpdatePolicyStoreCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "VerifiedPermissions",
38
+ operation: "UpdatePolicyStore",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const models_0_1 = require("../models/models_0");
9
10
  const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
11
  class UpdatePolicyTemplateCommand extends smithy_client_1.Command {
@@ -33,6 +34,10 @@ class UpdatePolicyTemplateCommand extends smithy_client_1.Command {
33
34
  commandName,
34
35
  inputFilterSensitiveLog: models_0_1.UpdatePolicyTemplateInputFilterSensitiveLog,
35
36
  outputFilterSensitiveLog: (_) => _,
37
+ [types_1.SMITHY_CONTEXT_KEY]: {
38
+ service: "VerifiedPermissions",
39
+ operation: "UpdatePolicyTemplate",
40
+ },
36
41
  };
37
42
  const { requestHandler } = configuration;
38
43
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreateIdentitySourceInputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreateIdentitySourceCommand, se_CreateIdentitySourceCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreateIdentitySourceCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: CreateIdentitySourceInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "CreateIdentitySource",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreatePolicyInputFilterSensitiveLog, CreatePolicyOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreatePolicyCommand, se_CreatePolicyCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreatePolicyCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: CreatePolicyInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: CreatePolicyOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "CreatePolicy",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreatePolicyStoreCommand, se_CreatePolicyStoreCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class CreatePolicyStoreCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreatePolicyStoreCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "CreatePolicyStore",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreatePolicyTemplateInputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreatePolicyTemplateCommand, se_CreatePolicyTemplateCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreatePolicyTemplateCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: CreatePolicyTemplateInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "CreatePolicyTemplate",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteIdentitySourceCommand, se_DeleteIdentitySourceCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class DeleteIdentitySourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteIdentitySourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "DeleteIdentitySource",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeletePolicyCommand, se_DeletePolicyCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class DeletePolicyCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeletePolicyCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "DeletePolicy",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeletePolicyStoreCommand, se_DeletePolicyStoreCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class DeletePolicyStoreCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeletePolicyStoreCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "DeletePolicyStore",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeletePolicyTemplateCommand, se_DeletePolicyTemplateCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class DeletePolicyTemplateCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeletePolicyTemplateCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "DeletePolicyTemplate",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetIdentitySourceOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_GetIdentitySourceCommand, se_GetIdentitySourceCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetIdentitySourceCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetIdentitySourceOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "GetIdentitySource",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetPolicyOutputFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_GetPolicyCommand, se_GetPolicyCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetPolicyCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetPolicyOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "GetPolicy",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetPolicyStoreCommand, se_GetPolicyStoreCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class GetPolicyStoreCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetPolicyStoreCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "GetPolicyStore",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetPolicyTemplateOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_GetPolicyTemplateCommand, se_GetPolicyTemplateCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetPolicyTemplateCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetPolicyTemplateOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "GetPolicyTemplate",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetSchemaOutputFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_GetSchemaCommand, se_GetSchemaCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetSchemaCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetSchemaOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "GetSchema",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { IsAuthorizedInputFilterSensitiveLog, IsAuthorizedOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_IsAuthorizedCommand, se_IsAuthorizedCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class IsAuthorizedCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: IsAuthorizedInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: IsAuthorizedOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "IsAuthorized",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { IsAuthorizedWithTokenInputFilterSensitiveLog, IsAuthorizedWithTokenOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_IsAuthorizedWithTokenCommand, se_IsAuthorizedWithTokenCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class IsAuthorizedWithTokenCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: IsAuthorizedWithTokenInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: IsAuthorizedWithTokenOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "IsAuthorizedWithToken",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListIdentitySourcesInputFilterSensitiveLog, ListIdentitySourcesOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ListIdentitySourcesCommand, se_ListIdentitySourcesCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListIdentitySourcesCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: ListIdentitySourcesInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: ListIdentitySourcesOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "ListIdentitySources",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListPoliciesInputFilterSensitiveLog, ListPoliciesOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ListPoliciesCommand, se_ListPoliciesCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListPoliciesCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: ListPoliciesInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: ListPoliciesOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "ListPolicies",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListPolicyStoresCommand, se_ListPolicyStoresCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class ListPolicyStoresCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListPolicyStoresCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "ListPolicyStores",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListPolicyTemplatesOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ListPolicyTemplatesCommand, se_ListPolicyTemplatesCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListPolicyTemplatesCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ListPolicyTemplatesOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "ListPolicyTemplates",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { PutSchemaInputFilterSensitiveLog, PutSchemaOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_PutSchemaCommand, se_PutSchemaCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class PutSchemaCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: PutSchemaInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: PutSchemaOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "PutSchema",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { UpdateIdentitySourceInputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_UpdateIdentitySourceCommand, se_UpdateIdentitySourceCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class UpdateIdentitySourceCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: UpdateIdentitySourceInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "UpdateIdentitySource",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { UpdatePolicyInputFilterSensitiveLog, UpdatePolicyOutputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_UpdatePolicyCommand, se_UpdatePolicyCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class UpdatePolicyCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: UpdatePolicyInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: UpdatePolicyOutputFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "UpdatePolicy",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UpdatePolicyStoreCommand, se_UpdatePolicyStoreCommand } from "../protocols/Aws_json1_0";
5
6
  export { $Command };
6
7
  export class UpdatePolicyStoreCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdatePolicyStoreCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "VerifiedPermissions",
35
+ operation: "UpdatePolicyStore",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { UpdatePolicyTemplateInputFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_UpdatePolicyTemplateCommand, se_UpdatePolicyTemplateCommand } from "../protocols/Aws_json1_0";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class UpdatePolicyTemplateCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: UpdatePolicyTemplateInputFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "VerifiedPermissions",
36
+ operation: "UpdatePolicyTemplate",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-verifiedpermissions",
3
3
  "description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native",
4
- "version": "3.414.0",
4
+ "version": "3.421.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.414.0",
25
- "@aws-sdk/credential-provider-node": "3.414.0",
26
- "@aws-sdk/middleware-host-header": "3.413.0",
27
- "@aws-sdk/middleware-logger": "3.413.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.413.0",
29
- "@aws-sdk/middleware-signing": "3.413.0",
30
- "@aws-sdk/middleware-user-agent": "3.413.0",
31
- "@aws-sdk/region-config-resolver": "3.413.0",
32
- "@aws-sdk/types": "3.413.0",
33
- "@aws-sdk/util-endpoints": "3.413.0",
34
- "@aws-sdk/util-user-agent-browser": "3.413.0",
35
- "@aws-sdk/util-user-agent-node": "3.413.0",
36
- "@smithy/config-resolver": "^2.0.8",
37
- "@smithy/fetch-http-handler": "^2.1.3",
38
- "@smithy/hash-node": "^2.0.7",
39
- "@smithy/invalid-dependency": "^2.0.7",
40
- "@smithy/middleware-content-length": "^2.0.9",
41
- "@smithy/middleware-endpoint": "^2.0.7",
42
- "@smithy/middleware-retry": "^2.0.10",
43
- "@smithy/middleware-serde": "^2.0.7",
44
- "@smithy/middleware-stack": "^2.0.0",
45
- "@smithy/node-config-provider": "^2.0.10",
46
- "@smithy/node-http-handler": "^2.1.3",
47
- "@smithy/protocol-http": "^3.0.3",
48
- "@smithy/smithy-client": "^2.1.4",
49
- "@smithy/types": "^2.3.1",
50
- "@smithy/url-parser": "^2.0.7",
24
+ "@aws-sdk/client-sts": "3.421.0",
25
+ "@aws-sdk/credential-provider-node": "3.421.0",
26
+ "@aws-sdk/middleware-host-header": "3.418.0",
27
+ "@aws-sdk/middleware-logger": "3.418.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.418.0",
29
+ "@aws-sdk/middleware-signing": "3.418.0",
30
+ "@aws-sdk/middleware-user-agent": "3.418.0",
31
+ "@aws-sdk/region-config-resolver": "3.418.0",
32
+ "@aws-sdk/types": "3.418.0",
33
+ "@aws-sdk/util-endpoints": "3.418.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.418.0",
35
+ "@aws-sdk/util-user-agent-node": "3.418.0",
36
+ "@smithy/config-resolver": "^2.0.10",
37
+ "@smithy/fetch-http-handler": "^2.1.5",
38
+ "@smithy/hash-node": "^2.0.9",
39
+ "@smithy/invalid-dependency": "^2.0.9",
40
+ "@smithy/middleware-content-length": "^2.0.11",
41
+ "@smithy/middleware-endpoint": "^2.0.9",
42
+ "@smithy/middleware-retry": "^2.0.12",
43
+ "@smithy/middleware-serde": "^2.0.9",
44
+ "@smithy/middleware-stack": "^2.0.2",
45
+ "@smithy/node-config-provider": "^2.0.12",
46
+ "@smithy/node-http-handler": "^2.1.5",
47
+ "@smithy/protocol-http": "^3.0.5",
48
+ "@smithy/smithy-client": "^2.1.6",
49
+ "@smithy/types": "^2.3.3",
50
+ "@smithy/url-parser": "^2.0.9",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.8",
55
- "@smithy/util-defaults-mode-node": "^2.0.10",
56
- "@smithy/util-retry": "^2.0.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.10",
55
+ "@smithy/util-defaults-mode-node": "^2.0.12",
56
+ "@smithy/util-retry": "^2.0.2",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",
59
59
  "uuid": "^8.3.2"