@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
@@ -11,25 +11,91 @@ import { RegisterIdentityProviderCommandInput, RegisterIdentityProviderCommandOu
11
11
  import { StartProductSubscriptionCommandInput, StartProductSubscriptionCommandOutput } from "../commands/StartProductSubscriptionCommand";
12
12
  import { StopProductSubscriptionCommandInput, StopProductSubscriptionCommandOutput } from "../commands/StopProductSubscriptionCommand";
13
13
  import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput } from "../commands/UpdateIdentityProviderSettingsCommand";
14
- export declare const serializeAws_restJson1AssociateUserCommand: (input: AssociateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
- export declare const serializeAws_restJson1DeregisterIdentityProviderCommand: (input: DeregisterIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
16
- export declare const serializeAws_restJson1DisassociateUserCommand: (input: DisassociateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_restJson1ListIdentityProvidersCommand: (input: ListIdentityProvidersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_restJson1ListInstancesCommand: (input: ListInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_restJson1ListProductSubscriptionsCommand: (input: ListProductSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1ListUserAssociationsCommand: (input: ListUserAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1RegisterIdentityProviderCommand: (input: RegisterIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1StartProductSubscriptionCommand: (input: StartProductSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1StopProductSubscriptionCommand: (input: StopProductSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1UpdateIdentityProviderSettingsCommand: (input: UpdateIdentityProviderSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const deserializeAws_restJson1AssociateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateUserCommandOutput>;
26
- export declare const deserializeAws_restJson1DeregisterIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterIdentityProviderCommandOutput>;
27
- export declare const deserializeAws_restJson1DisassociateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateUserCommandOutput>;
28
- export declare const deserializeAws_restJson1ListIdentityProvidersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentityProvidersCommandOutput>;
29
- export declare const deserializeAws_restJson1ListInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstancesCommandOutput>;
30
- export declare const deserializeAws_restJson1ListProductSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProductSubscriptionsCommandOutput>;
31
- export declare const deserializeAws_restJson1ListUserAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserAssociationsCommandOutput>;
32
- export declare const deserializeAws_restJson1RegisterIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterIdentityProviderCommandOutput>;
33
- export declare const deserializeAws_restJson1StartProductSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartProductSubscriptionCommandOutput>;
34
- export declare const deserializeAws_restJson1StopProductSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopProductSubscriptionCommandOutput>;
35
- export declare const deserializeAws_restJson1UpdateIdentityProviderSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdentityProviderSettingsCommandOutput>;
14
+ /**
15
+ * serializeAws_restJson1AssociateUserCommand
16
+ */
17
+ export declare const se_AssociateUserCommand: (input: AssociateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ /**
19
+ * serializeAws_restJson1DeregisterIdentityProviderCommand
20
+ */
21
+ export declare const se_DeregisterIdentityProviderCommand: (input: DeregisterIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ /**
23
+ * serializeAws_restJson1DisassociateUserCommand
24
+ */
25
+ export declare const se_DisassociateUserCommand: (input: DisassociateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ /**
27
+ * serializeAws_restJson1ListIdentityProvidersCommand
28
+ */
29
+ export declare const se_ListIdentityProvidersCommand: (input: ListIdentityProvidersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ /**
31
+ * serializeAws_restJson1ListInstancesCommand
32
+ */
33
+ export declare const se_ListInstancesCommand: (input: ListInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ /**
35
+ * serializeAws_restJson1ListProductSubscriptionsCommand
36
+ */
37
+ export declare const se_ListProductSubscriptionsCommand: (input: ListProductSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ /**
39
+ * serializeAws_restJson1ListUserAssociationsCommand
40
+ */
41
+ export declare const se_ListUserAssociationsCommand: (input: ListUserAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ /**
43
+ * serializeAws_restJson1RegisterIdentityProviderCommand
44
+ */
45
+ export declare const se_RegisterIdentityProviderCommand: (input: RegisterIdentityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ /**
47
+ * serializeAws_restJson1StartProductSubscriptionCommand
48
+ */
49
+ export declare const se_StartProductSubscriptionCommand: (input: StartProductSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_restJson1StopProductSubscriptionCommand
52
+ */
53
+ export declare const se_StopProductSubscriptionCommand: (input: StopProductSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_restJson1UpdateIdentityProviderSettingsCommand
56
+ */
57
+ export declare const se_UpdateIdentityProviderSettingsCommand: (input: UpdateIdentityProviderSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * deserializeAws_restJson1AssociateUserCommand
60
+ */
61
+ export declare const de_AssociateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateUserCommandOutput>;
62
+ /**
63
+ * deserializeAws_restJson1DeregisterIdentityProviderCommand
64
+ */
65
+ export declare const de_DeregisterIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterIdentityProviderCommandOutput>;
66
+ /**
67
+ * deserializeAws_restJson1DisassociateUserCommand
68
+ */
69
+ export declare const de_DisassociateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateUserCommandOutput>;
70
+ /**
71
+ * deserializeAws_restJson1ListIdentityProvidersCommand
72
+ */
73
+ export declare const de_ListIdentityProvidersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIdentityProvidersCommandOutput>;
74
+ /**
75
+ * deserializeAws_restJson1ListInstancesCommand
76
+ */
77
+ export declare const de_ListInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstancesCommandOutput>;
78
+ /**
79
+ * deserializeAws_restJson1ListProductSubscriptionsCommand
80
+ */
81
+ export declare const de_ListProductSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProductSubscriptionsCommandOutput>;
82
+ /**
83
+ * deserializeAws_restJson1ListUserAssociationsCommand
84
+ */
85
+ export declare const de_ListUserAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserAssociationsCommandOutput>;
86
+ /**
87
+ * deserializeAws_restJson1RegisterIdentityProviderCommand
88
+ */
89
+ export declare const de_RegisterIdentityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterIdentityProviderCommandOutput>;
90
+ /**
91
+ * deserializeAws_restJson1StartProductSubscriptionCommand
92
+ */
93
+ export declare const de_StartProductSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartProductSubscriptionCommandOutput>;
94
+ /**
95
+ * deserializeAws_restJson1StopProductSubscriptionCommand
96
+ */
97
+ export declare const de_StopProductSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopProductSubscriptionCommandOutput>;
98
+ /**
99
+ * deserializeAws_restJson1UpdateIdentityProviderSettingsCommand
100
+ */
101
+ export declare const de_UpdateIdentityProviderSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIdentityProviderSettingsCommandOutput>;
@@ -47,91 +47,91 @@ import {
47
47
  UpdateIdentityProviderSettingsCommandInput,
48
48
  UpdateIdentityProviderSettingsCommandOutput,
49
49
  } from "../commands/UpdateIdentityProviderSettingsCommand";
50
- export declare const serializeAws_restJson1AssociateUserCommand: (
50
+ export declare const se_AssociateUserCommand: (
51
51
  input: AssociateUserCommandInput,
52
52
  context: __SerdeContext
53
53
  ) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1DeregisterIdentityProviderCommand: (
54
+ export declare const se_DeregisterIdentityProviderCommand: (
55
55
  input: DeregisterIdentityProviderCommandInput,
56
56
  context: __SerdeContext
57
57
  ) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1DisassociateUserCommand: (
58
+ export declare const se_DisassociateUserCommand: (
59
59
  input: DisassociateUserCommandInput,
60
60
  context: __SerdeContext
61
61
  ) => Promise<__HttpRequest>;
62
- export declare const serializeAws_restJson1ListIdentityProvidersCommand: (
62
+ export declare const se_ListIdentityProvidersCommand: (
63
63
  input: ListIdentityProvidersCommandInput,
64
64
  context: __SerdeContext
65
65
  ) => Promise<__HttpRequest>;
66
- export declare const serializeAws_restJson1ListInstancesCommand: (
66
+ export declare const se_ListInstancesCommand: (
67
67
  input: ListInstancesCommandInput,
68
68
  context: __SerdeContext
69
69
  ) => Promise<__HttpRequest>;
70
- export declare const serializeAws_restJson1ListProductSubscriptionsCommand: (
70
+ export declare const se_ListProductSubscriptionsCommand: (
71
71
  input: ListProductSubscriptionsCommandInput,
72
72
  context: __SerdeContext
73
73
  ) => Promise<__HttpRequest>;
74
- export declare const serializeAws_restJson1ListUserAssociationsCommand: (
74
+ export declare const se_ListUserAssociationsCommand: (
75
75
  input: ListUserAssociationsCommandInput,
76
76
  context: __SerdeContext
77
77
  ) => Promise<__HttpRequest>;
78
- export declare const serializeAws_restJson1RegisterIdentityProviderCommand: (
78
+ export declare const se_RegisterIdentityProviderCommand: (
79
79
  input: RegisterIdentityProviderCommandInput,
80
80
  context: __SerdeContext
81
81
  ) => Promise<__HttpRequest>;
82
- export declare const serializeAws_restJson1StartProductSubscriptionCommand: (
82
+ export declare const se_StartProductSubscriptionCommand: (
83
83
  input: StartProductSubscriptionCommandInput,
84
84
  context: __SerdeContext
85
85
  ) => Promise<__HttpRequest>;
86
- export declare const serializeAws_restJson1StopProductSubscriptionCommand: (
86
+ export declare const se_StopProductSubscriptionCommand: (
87
87
  input: StopProductSubscriptionCommandInput,
88
88
  context: __SerdeContext
89
89
  ) => Promise<__HttpRequest>;
90
- export declare const serializeAws_restJson1UpdateIdentityProviderSettingsCommand: (
90
+ export declare const se_UpdateIdentityProviderSettingsCommand: (
91
91
  input: UpdateIdentityProviderSettingsCommandInput,
92
92
  context: __SerdeContext
93
93
  ) => Promise<__HttpRequest>;
94
- export declare const deserializeAws_restJson1AssociateUserCommand: (
94
+ export declare const de_AssociateUserCommand: (
95
95
  output: __HttpResponse,
96
96
  context: __SerdeContext
97
97
  ) => Promise<AssociateUserCommandOutput>;
98
- export declare const deserializeAws_restJson1DeregisterIdentityProviderCommand: (
98
+ export declare const de_DeregisterIdentityProviderCommand: (
99
99
  output: __HttpResponse,
100
100
  context: __SerdeContext
101
101
  ) => Promise<DeregisterIdentityProviderCommandOutput>;
102
- export declare const deserializeAws_restJson1DisassociateUserCommand: (
102
+ export declare const de_DisassociateUserCommand: (
103
103
  output: __HttpResponse,
104
104
  context: __SerdeContext
105
105
  ) => Promise<DisassociateUserCommandOutput>;
106
- export declare const deserializeAws_restJson1ListIdentityProvidersCommand: (
106
+ export declare const de_ListIdentityProvidersCommand: (
107
107
  output: __HttpResponse,
108
108
  context: __SerdeContext
109
109
  ) => Promise<ListIdentityProvidersCommandOutput>;
110
- export declare const deserializeAws_restJson1ListInstancesCommand: (
110
+ export declare const de_ListInstancesCommand: (
111
111
  output: __HttpResponse,
112
112
  context: __SerdeContext
113
113
  ) => Promise<ListInstancesCommandOutput>;
114
- export declare const deserializeAws_restJson1ListProductSubscriptionsCommand: (
114
+ export declare const de_ListProductSubscriptionsCommand: (
115
115
  output: __HttpResponse,
116
116
  context: __SerdeContext
117
117
  ) => Promise<ListProductSubscriptionsCommandOutput>;
118
- export declare const deserializeAws_restJson1ListUserAssociationsCommand: (
118
+ export declare const de_ListUserAssociationsCommand: (
119
119
  output: __HttpResponse,
120
120
  context: __SerdeContext
121
121
  ) => Promise<ListUserAssociationsCommandOutput>;
122
- export declare const deserializeAws_restJson1RegisterIdentityProviderCommand: (
122
+ export declare const de_RegisterIdentityProviderCommand: (
123
123
  output: __HttpResponse,
124
124
  context: __SerdeContext
125
125
  ) => Promise<RegisterIdentityProviderCommandOutput>;
126
- export declare const deserializeAws_restJson1StartProductSubscriptionCommand: (
126
+ export declare const de_StartProductSubscriptionCommand: (
127
127
  output: __HttpResponse,
128
128
  context: __SerdeContext
129
129
  ) => Promise<StartProductSubscriptionCommandOutput>;
130
- export declare const deserializeAws_restJson1StopProductSubscriptionCommand: (
130
+ export declare const de_StopProductSubscriptionCommand: (
131
131
  output: __HttpResponse,
132
132
  context: __SerdeContext
133
133
  ) => Promise<StopProductSubscriptionCommandOutput>;
134
- export declare const deserializeAws_restJson1UpdateIdentityProviderSettingsCommand: (
134
+ export declare const de_UpdateIdentityProviderSettingsCommand: (
135
135
  output: __HttpResponse,
136
136
  context: __SerdeContext
137
137
  ) => Promise<UpdateIdentityProviderSettingsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-license-manager-user-subscriptions",
3
3
  "description": "AWS SDK for JavaScript License Manager User Subscriptions Client for Node.js, Browser and React Native",
4
- "version": "3.303.0",
4
+ "version": "3.309.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,37 +21,37 @@
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.303.0",
25
- "@aws-sdk/config-resolver": "3.303.0",
26
- "@aws-sdk/credential-provider-node": "3.303.0",
27
- "@aws-sdk/fetch-http-handler": "3.303.0",
28
- "@aws-sdk/hash-node": "3.303.0",
29
- "@aws-sdk/invalid-dependency": "3.303.0",
30
- "@aws-sdk/middleware-content-length": "3.303.0",
31
- "@aws-sdk/middleware-endpoint": "3.303.0",
32
- "@aws-sdk/middleware-host-header": "3.303.0",
33
- "@aws-sdk/middleware-logger": "3.303.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
- "@aws-sdk/middleware-retry": "3.303.0",
36
- "@aws-sdk/middleware-serde": "3.303.0",
37
- "@aws-sdk/middleware-signing": "3.303.0",
38
- "@aws-sdk/middleware-stack": "3.303.0",
39
- "@aws-sdk/middleware-user-agent": "3.303.0",
40
- "@aws-sdk/node-config-provider": "3.303.0",
41
- "@aws-sdk/node-http-handler": "3.303.0",
42
- "@aws-sdk/protocol-http": "3.303.0",
43
- "@aws-sdk/smithy-client": "3.303.0",
44
- "@aws-sdk/types": "3.303.0",
45
- "@aws-sdk/url-parser": "3.303.0",
24
+ "@aws-sdk/client-sts": "3.309.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.309.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.309.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.0",
46
46
  "@aws-sdk/util-base64": "3.303.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.303.0",
48
48
  "@aws-sdk/util-body-length-node": "3.303.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
- "@aws-sdk/util-endpoints": "3.303.0",
52
- "@aws-sdk/util-retry": "3.303.0",
53
- "@aws-sdk/util-user-agent-browser": "3.303.0",
54
- "@aws-sdk/util-user-agent-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.309.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.309.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.0",
55
55
  "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },