@aws-sdk/client-license-manager-user-subscriptions 3.303.0 → 3.309.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 (27) hide show
  1. package/dist-cjs/commands/AssociateUserCommand.js +2 -2
  2. package/dist-cjs/commands/DeregisterIdentityProviderCommand.js +2 -2
  3. package/dist-cjs/commands/DisassociateUserCommand.js +2 -2
  4. package/dist-cjs/commands/ListIdentityProvidersCommand.js +2 -2
  5. package/dist-cjs/commands/ListInstancesCommand.js +2 -2
  6. package/dist-cjs/commands/ListProductSubscriptionsCommand.js +2 -2
  7. package/dist-cjs/commands/ListUserAssociationsCommand.js +2 -2
  8. package/dist-cjs/commands/RegisterIdentityProviderCommand.js +2 -2
  9. package/dist-cjs/commands/StartProductSubscriptionCommand.js +2 -2
  10. package/dist-cjs/commands/StopProductSubscriptionCommand.js +2 -2
  11. package/dist-cjs/commands/UpdateIdentityProviderSettingsCommand.js +2 -2
  12. package/dist-cjs/protocols/Aws_restJson1.js +209 -229
  13. package/dist-es/commands/AssociateUserCommand.js +3 -3
  14. package/dist-es/commands/DeregisterIdentityProviderCommand.js +3 -3
  15. package/dist-es/commands/DisassociateUserCommand.js +3 -3
  16. package/dist-es/commands/ListIdentityProvidersCommand.js +3 -3
  17. package/dist-es/commands/ListInstancesCommand.js +3 -3
  18. package/dist-es/commands/ListProductSubscriptionsCommand.js +3 -3
  19. package/dist-es/commands/ListUserAssociationsCommand.js +3 -3
  20. package/dist-es/commands/RegisterIdentityProviderCommand.js +3 -3
  21. package/dist-es/commands/StartProductSubscriptionCommand.js +3 -3
  22. package/dist-es/commands/StopProductSubscriptionCommand.js +3 -3
  23. package/dist-es/commands/UpdateIdentityProviderSettingsCommand.js +3 -3
  24. package/dist-es/protocols/Aws_restJson1.js +186 -206
  25. package/dist-types/protocols/Aws_restJson1.d.ts +88 -22
  26. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +22 -22
  27. package/package.json +29 -29
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1AssociateUserCommand, serializeAws_restJson1AssociateUserCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_AssociateUserCommand, se_AssociateUserCommand } from "../protocols/Aws_restJson1";
5
5
  export class AssociateUserCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class AssociateUserCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1AssociateUserCommand(input, context);
36
+ return se_AssociateUserCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1AssociateUserCommand(output, context);
39
+ return de_AssociateUserCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeregisterIdentityProviderCommand, serializeAws_restJson1DeregisterIdentityProviderCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeregisterIdentityProviderCommand, se_DeregisterIdentityProviderCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeregisterIdentityProviderCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeregisterIdentityProviderCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeregisterIdentityProviderCommand(input, context);
36
+ return se_DeregisterIdentityProviderCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeregisterIdentityProviderCommand(output, context);
39
+ return de_DeregisterIdentityProviderCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DisassociateUserCommand, serializeAws_restJson1DisassociateUserCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DisassociateUserCommand, se_DisassociateUserCommand } from "../protocols/Aws_restJson1";
5
5
  export class DisassociateUserCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DisassociateUserCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DisassociateUserCommand(input, context);
36
+ return se_DisassociateUserCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DisassociateUserCommand(output, context);
39
+ return de_DisassociateUserCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListIdentityProvidersCommand, serializeAws_restJson1ListIdentityProvidersCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListIdentityProvidersCommand, se_ListIdentityProvidersCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListIdentityProvidersCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListIdentityProvidersCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListIdentityProvidersCommand(input, context);
36
+ return se_ListIdentityProvidersCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListIdentityProvidersCommand(output, context);
39
+ return de_ListIdentityProvidersCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListInstancesCommand, serializeAws_restJson1ListInstancesCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListInstancesCommand, se_ListInstancesCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListInstancesCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListInstancesCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListInstancesCommand(input, context);
36
+ return se_ListInstancesCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListInstancesCommand(output, context);
39
+ return de_ListInstancesCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListProductSubscriptionsCommand, serializeAws_restJson1ListProductSubscriptionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListProductSubscriptionsCommand, se_ListProductSubscriptionsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListProductSubscriptionsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListProductSubscriptionsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListProductSubscriptionsCommand(input, context);
36
+ return se_ListProductSubscriptionsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListProductSubscriptionsCommand(output, context);
39
+ return de_ListProductSubscriptionsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListUserAssociationsCommand, serializeAws_restJson1ListUserAssociationsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListUserAssociationsCommand, se_ListUserAssociationsCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListUserAssociationsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListUserAssociationsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListUserAssociationsCommand(input, context);
36
+ return se_ListUserAssociationsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListUserAssociationsCommand(output, context);
39
+ return de_ListUserAssociationsCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1RegisterIdentityProviderCommand, serializeAws_restJson1RegisterIdentityProviderCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_RegisterIdentityProviderCommand, se_RegisterIdentityProviderCommand } from "../protocols/Aws_restJson1";
5
5
  export class RegisterIdentityProviderCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class RegisterIdentityProviderCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1RegisterIdentityProviderCommand(input, context);
36
+ return se_RegisterIdentityProviderCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1RegisterIdentityProviderCommand(output, context);
39
+ return de_RegisterIdentityProviderCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1StartProductSubscriptionCommand, serializeAws_restJson1StartProductSubscriptionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StartProductSubscriptionCommand, se_StartProductSubscriptionCommand } from "../protocols/Aws_restJson1";
5
5
  export class StartProductSubscriptionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StartProductSubscriptionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StartProductSubscriptionCommand(input, context);
36
+ return se_StartProductSubscriptionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StartProductSubscriptionCommand(output, context);
39
+ return de_StartProductSubscriptionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1StopProductSubscriptionCommand, serializeAws_restJson1StopProductSubscriptionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StopProductSubscriptionCommand, se_StopProductSubscriptionCommand } from "../protocols/Aws_restJson1";
5
5
  export class StopProductSubscriptionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StopProductSubscriptionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StopProductSubscriptionCommand(input, context);
36
+ return se_StopProductSubscriptionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StopProductSubscriptionCommand(output, context);
39
+ return de_StopProductSubscriptionCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1UpdateIdentityProviderSettingsCommand, serializeAws_restJson1UpdateIdentityProviderSettingsCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UpdateIdentityProviderSettingsCommand, se_UpdateIdentityProviderSettingsCommand, } from "../protocols/Aws_restJson1";
5
5
  export class UpdateIdentityProviderSettingsCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UpdateIdentityProviderSettingsCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UpdateIdentityProviderSettingsCommand(input, context);
36
+ return se_UpdateIdentityProviderSettingsCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UpdateIdentityProviderSettingsCommand(output, context);
39
+ return de_UpdateIdentityProviderSettingsCommand(output, context);
40
40
  }
41
41
  }