@aws-sdk/client-grafana 3.183.0 → 3.185.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 (31) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/Grafana.js +73 -66
  4. package/dist-es/GrafanaClient.js +28 -22
  5. package/dist-es/commands/AssociateLicenseCommand.js +28 -21
  6. package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +28 -21
  7. package/dist-es/commands/CreateWorkspaceCommand.js +28 -21
  8. package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +28 -21
  9. package/dist-es/commands/DeleteWorkspaceCommand.js +28 -21
  10. package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +28 -21
  11. package/dist-es/commands/DescribeWorkspaceCommand.js +28 -21
  12. package/dist-es/commands/DisassociateLicenseCommand.js +28 -21
  13. package/dist-es/commands/ListPermissionsCommand.js +28 -21
  14. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  15. package/dist-es/commands/ListWorkspacesCommand.js +28 -21
  16. package/dist-es/commands/TagResourceCommand.js +28 -21
  17. package/dist-es/commands/UntagResourceCommand.js +28 -21
  18. package/dist-es/commands/UpdatePermissionsCommand.js +28 -21
  19. package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +28 -21
  20. package/dist-es/commands/UpdateWorkspaceCommand.js +28 -21
  21. package/dist-es/endpoints.js +8 -8
  22. package/dist-es/models/GrafanaServiceException.js +10 -5
  23. package/dist-es/models/models_0.js +144 -265
  24. package/dist-es/pagination/ListPermissionsPaginator.js +68 -25
  25. package/dist-es/pagination/ListWorkspacesPaginator.js +68 -25
  26. package/dist-es/protocols/Aws_restJson1.js +1839 -1351
  27. package/dist-es/runtimeConfig.browser.js +12 -26
  28. package/dist-es/runtimeConfig.js +12 -30
  29. package/dist-es/runtimeConfig.native.js +5 -8
  30. package/dist-es/runtimeConfig.shared.js +11 -8
  31. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-grafana
@@ -1667,10 +1667,10 @@ const deserializeAws_restJson1WorkspaceSummary = (output, context) => {
1667
1667
  };
1668
1668
  };
1669
1669
  const deserializeMetadata = (output) => {
1670
- var _a;
1670
+ var _a, _b;
1671
1671
  return ({
1672
1672
  httpStatusCode: output.statusCode,
1673
- requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
1673
+ requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
1674
1674
  extendedRequestId: output.headers["x-amz-id-2"],
1675
1675
  cfId: output.headers["x-amz-cf-id"],
1676
1676
  });
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { AssociateLicenseCommand, } from "./commands/AssociateLicenseCommand";
2
3
  import { CreateWorkspaceApiKeyCommand, } from "./commands/CreateWorkspaceApiKeyCommand";
3
4
  import { CreateWorkspaceCommand, } from "./commands/CreateWorkspaceCommand";
@@ -15,229 +16,235 @@ import { UpdatePermissionsCommand, } from "./commands/UpdatePermissionsCommand";
15
16
  import { UpdateWorkspaceAuthenticationCommand, } from "./commands/UpdateWorkspaceAuthenticationCommand";
16
17
  import { UpdateWorkspaceCommand, } from "./commands/UpdateWorkspaceCommand";
17
18
  import { GrafanaClient } from "./GrafanaClient";
18
- export class Grafana extends GrafanaClient {
19
- associateLicense(args, optionsOrCb, cb) {
20
- const command = new AssociateLicenseCommand(args);
19
+ var Grafana = (function (_super) {
20
+ __extends(Grafana, _super);
21
+ function Grafana() {
22
+ return _super !== null && _super.apply(this, arguments) || this;
23
+ }
24
+ Grafana.prototype.associateLicense = function (args, optionsOrCb, cb) {
25
+ var command = new AssociateLicenseCommand(args);
21
26
  if (typeof optionsOrCb === "function") {
22
27
  this.send(command, optionsOrCb);
23
28
  }
24
29
  else if (typeof cb === "function") {
25
30
  if (typeof optionsOrCb !== "object")
26
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
31
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
27
32
  this.send(command, optionsOrCb || {}, cb);
28
33
  }
29
34
  else {
30
35
  return this.send(command, optionsOrCb);
31
36
  }
32
- }
33
- createWorkspace(args, optionsOrCb, cb) {
34
- const command = new CreateWorkspaceCommand(args);
37
+ };
38
+ Grafana.prototype.createWorkspace = function (args, optionsOrCb, cb) {
39
+ var command = new CreateWorkspaceCommand(args);
35
40
  if (typeof optionsOrCb === "function") {
36
41
  this.send(command, optionsOrCb);
37
42
  }
38
43
  else if (typeof cb === "function") {
39
44
  if (typeof optionsOrCb !== "object")
40
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
45
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
41
46
  this.send(command, optionsOrCb || {}, cb);
42
47
  }
43
48
  else {
44
49
  return this.send(command, optionsOrCb);
45
50
  }
46
- }
47
- createWorkspaceApiKey(args, optionsOrCb, cb) {
48
- const command = new CreateWorkspaceApiKeyCommand(args);
51
+ };
52
+ Grafana.prototype.createWorkspaceApiKey = function (args, optionsOrCb, cb) {
53
+ var command = new CreateWorkspaceApiKeyCommand(args);
49
54
  if (typeof optionsOrCb === "function") {
50
55
  this.send(command, optionsOrCb);
51
56
  }
52
57
  else if (typeof cb === "function") {
53
58
  if (typeof optionsOrCb !== "object")
54
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
59
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
55
60
  this.send(command, optionsOrCb || {}, cb);
56
61
  }
57
62
  else {
58
63
  return this.send(command, optionsOrCb);
59
64
  }
60
- }
61
- deleteWorkspace(args, optionsOrCb, cb) {
62
- const command = new DeleteWorkspaceCommand(args);
65
+ };
66
+ Grafana.prototype.deleteWorkspace = function (args, optionsOrCb, cb) {
67
+ var command = new DeleteWorkspaceCommand(args);
63
68
  if (typeof optionsOrCb === "function") {
64
69
  this.send(command, optionsOrCb);
65
70
  }
66
71
  else if (typeof cb === "function") {
67
72
  if (typeof optionsOrCb !== "object")
68
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
73
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
69
74
  this.send(command, optionsOrCb || {}, cb);
70
75
  }
71
76
  else {
72
77
  return this.send(command, optionsOrCb);
73
78
  }
74
- }
75
- deleteWorkspaceApiKey(args, optionsOrCb, cb) {
76
- const command = new DeleteWorkspaceApiKeyCommand(args);
79
+ };
80
+ Grafana.prototype.deleteWorkspaceApiKey = function (args, optionsOrCb, cb) {
81
+ var command = new DeleteWorkspaceApiKeyCommand(args);
77
82
  if (typeof optionsOrCb === "function") {
78
83
  this.send(command, optionsOrCb);
79
84
  }
80
85
  else if (typeof cb === "function") {
81
86
  if (typeof optionsOrCb !== "object")
82
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
87
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
83
88
  this.send(command, optionsOrCb || {}, cb);
84
89
  }
85
90
  else {
86
91
  return this.send(command, optionsOrCb);
87
92
  }
88
- }
89
- describeWorkspace(args, optionsOrCb, cb) {
90
- const command = new DescribeWorkspaceCommand(args);
93
+ };
94
+ Grafana.prototype.describeWorkspace = function (args, optionsOrCb, cb) {
95
+ var command = new DescribeWorkspaceCommand(args);
91
96
  if (typeof optionsOrCb === "function") {
92
97
  this.send(command, optionsOrCb);
93
98
  }
94
99
  else if (typeof cb === "function") {
95
100
  if (typeof optionsOrCb !== "object")
96
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
101
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
97
102
  this.send(command, optionsOrCb || {}, cb);
98
103
  }
99
104
  else {
100
105
  return this.send(command, optionsOrCb);
101
106
  }
102
- }
103
- describeWorkspaceAuthentication(args, optionsOrCb, cb) {
104
- const command = new DescribeWorkspaceAuthenticationCommand(args);
107
+ };
108
+ Grafana.prototype.describeWorkspaceAuthentication = function (args, optionsOrCb, cb) {
109
+ var command = new DescribeWorkspaceAuthenticationCommand(args);
105
110
  if (typeof optionsOrCb === "function") {
106
111
  this.send(command, optionsOrCb);
107
112
  }
108
113
  else if (typeof cb === "function") {
109
114
  if (typeof optionsOrCb !== "object")
110
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
115
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
111
116
  this.send(command, optionsOrCb || {}, cb);
112
117
  }
113
118
  else {
114
119
  return this.send(command, optionsOrCb);
115
120
  }
116
- }
117
- disassociateLicense(args, optionsOrCb, cb) {
118
- const command = new DisassociateLicenseCommand(args);
121
+ };
122
+ Grafana.prototype.disassociateLicense = function (args, optionsOrCb, cb) {
123
+ var command = new DisassociateLicenseCommand(args);
119
124
  if (typeof optionsOrCb === "function") {
120
125
  this.send(command, optionsOrCb);
121
126
  }
122
127
  else if (typeof cb === "function") {
123
128
  if (typeof optionsOrCb !== "object")
124
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
129
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
125
130
  this.send(command, optionsOrCb || {}, cb);
126
131
  }
127
132
  else {
128
133
  return this.send(command, optionsOrCb);
129
134
  }
130
- }
131
- listPermissions(args, optionsOrCb, cb) {
132
- const command = new ListPermissionsCommand(args);
135
+ };
136
+ Grafana.prototype.listPermissions = function (args, optionsOrCb, cb) {
137
+ var command = new ListPermissionsCommand(args);
133
138
  if (typeof optionsOrCb === "function") {
134
139
  this.send(command, optionsOrCb);
135
140
  }
136
141
  else if (typeof cb === "function") {
137
142
  if (typeof optionsOrCb !== "object")
138
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
143
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
139
144
  this.send(command, optionsOrCb || {}, cb);
140
145
  }
141
146
  else {
142
147
  return this.send(command, optionsOrCb);
143
148
  }
144
- }
145
- listTagsForResource(args, optionsOrCb, cb) {
146
- const command = new ListTagsForResourceCommand(args);
149
+ };
150
+ Grafana.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
151
+ var command = new ListTagsForResourceCommand(args);
147
152
  if (typeof optionsOrCb === "function") {
148
153
  this.send(command, optionsOrCb);
149
154
  }
150
155
  else if (typeof cb === "function") {
151
156
  if (typeof optionsOrCb !== "object")
152
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
157
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
153
158
  this.send(command, optionsOrCb || {}, cb);
154
159
  }
155
160
  else {
156
161
  return this.send(command, optionsOrCb);
157
162
  }
158
- }
159
- listWorkspaces(args, optionsOrCb, cb) {
160
- const command = new ListWorkspacesCommand(args);
163
+ };
164
+ Grafana.prototype.listWorkspaces = function (args, optionsOrCb, cb) {
165
+ var command = new ListWorkspacesCommand(args);
161
166
  if (typeof optionsOrCb === "function") {
162
167
  this.send(command, optionsOrCb);
163
168
  }
164
169
  else if (typeof cb === "function") {
165
170
  if (typeof optionsOrCb !== "object")
166
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
171
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
167
172
  this.send(command, optionsOrCb || {}, cb);
168
173
  }
169
174
  else {
170
175
  return this.send(command, optionsOrCb);
171
176
  }
172
- }
173
- tagResource(args, optionsOrCb, cb) {
174
- const command = new TagResourceCommand(args);
177
+ };
178
+ Grafana.prototype.tagResource = function (args, optionsOrCb, cb) {
179
+ var command = new TagResourceCommand(args);
175
180
  if (typeof optionsOrCb === "function") {
176
181
  this.send(command, optionsOrCb);
177
182
  }
178
183
  else if (typeof cb === "function") {
179
184
  if (typeof optionsOrCb !== "object")
180
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
185
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
181
186
  this.send(command, optionsOrCb || {}, cb);
182
187
  }
183
188
  else {
184
189
  return this.send(command, optionsOrCb);
185
190
  }
186
- }
187
- untagResource(args, optionsOrCb, cb) {
188
- const command = new UntagResourceCommand(args);
191
+ };
192
+ Grafana.prototype.untagResource = function (args, optionsOrCb, cb) {
193
+ var command = new UntagResourceCommand(args);
189
194
  if (typeof optionsOrCb === "function") {
190
195
  this.send(command, optionsOrCb);
191
196
  }
192
197
  else if (typeof cb === "function") {
193
198
  if (typeof optionsOrCb !== "object")
194
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
199
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
195
200
  this.send(command, optionsOrCb || {}, cb);
196
201
  }
197
202
  else {
198
203
  return this.send(command, optionsOrCb);
199
204
  }
200
- }
201
- updatePermissions(args, optionsOrCb, cb) {
202
- const command = new UpdatePermissionsCommand(args);
205
+ };
206
+ Grafana.prototype.updatePermissions = function (args, optionsOrCb, cb) {
207
+ var command = new UpdatePermissionsCommand(args);
203
208
  if (typeof optionsOrCb === "function") {
204
209
  this.send(command, optionsOrCb);
205
210
  }
206
211
  else if (typeof cb === "function") {
207
212
  if (typeof optionsOrCb !== "object")
208
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
213
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
209
214
  this.send(command, optionsOrCb || {}, cb);
210
215
  }
211
216
  else {
212
217
  return this.send(command, optionsOrCb);
213
218
  }
214
- }
215
- updateWorkspace(args, optionsOrCb, cb) {
216
- const command = new UpdateWorkspaceCommand(args);
219
+ };
220
+ Grafana.prototype.updateWorkspace = function (args, optionsOrCb, cb) {
221
+ var command = new UpdateWorkspaceCommand(args);
217
222
  if (typeof optionsOrCb === "function") {
218
223
  this.send(command, optionsOrCb);
219
224
  }
220
225
  else if (typeof cb === "function") {
221
226
  if (typeof optionsOrCb !== "object")
222
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
227
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
223
228
  this.send(command, optionsOrCb || {}, cb);
224
229
  }
225
230
  else {
226
231
  return this.send(command, optionsOrCb);
227
232
  }
228
- }
229
- updateWorkspaceAuthentication(args, optionsOrCb, cb) {
230
- const command = new UpdateWorkspaceAuthenticationCommand(args);
233
+ };
234
+ Grafana.prototype.updateWorkspaceAuthentication = function (args, optionsOrCb, cb) {
235
+ var command = new UpdateWorkspaceAuthenticationCommand(args);
231
236
  if (typeof optionsOrCb === "function") {
232
237
  this.send(command, optionsOrCb);
233
238
  }
234
239
  else if (typeof cb === "function") {
235
240
  if (typeof optionsOrCb !== "object")
236
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
241
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
237
242
  this.send(command, optionsOrCb || {}, cb);
238
243
  }
239
244
  else {
240
245
  return this.send(command, optionsOrCb);
241
246
  }
242
- }
243
- }
247
+ };
248
+ return Grafana;
249
+ }(GrafanaClient));
250
+ export { Grafana };
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
2
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
3
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
9
10
  import { Client as __Client, } from "@aws-sdk/smithy-client";
10
11
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
11
- export class GrafanaClient extends __Client {
12
- constructor(configuration) {
13
- const _config_0 = __getRuntimeConfig(configuration);
14
- const _config_1 = resolveRegionConfig(_config_0);
15
- const _config_2 = resolveEndpointsConfig(_config_1);
16
- const _config_3 = resolveRetryConfig(_config_2);
17
- const _config_4 = resolveHostHeaderConfig(_config_3);
18
- const _config_5 = resolveAwsAuthConfig(_config_4);
19
- const _config_6 = resolveUserAgentConfig(_config_5);
20
- super(_config_6);
21
- this.config = _config_6;
22
- this.middlewareStack.use(getRetryPlugin(this.config));
23
- this.middlewareStack.use(getContentLengthPlugin(this.config));
24
- this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
- this.middlewareStack.use(getLoggerPlugin(this.config));
26
- this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
- this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
- this.middlewareStack.use(getUserAgentPlugin(this.config));
12
+ var GrafanaClient = (function (_super) {
13
+ __extends(GrafanaClient, _super);
14
+ function GrafanaClient(configuration) {
15
+ var _this = this;
16
+ var _config_0 = __getRuntimeConfig(configuration);
17
+ var _config_1 = resolveRegionConfig(_config_0);
18
+ var _config_2 = resolveEndpointsConfig(_config_1);
19
+ var _config_3 = resolveRetryConfig(_config_2);
20
+ var _config_4 = resolveHostHeaderConfig(_config_3);
21
+ var _config_5 = resolveAwsAuthConfig(_config_4);
22
+ var _config_6 = resolveUserAgentConfig(_config_5);
23
+ _this = _super.call(this, _config_6) || this;
24
+ _this.config = _config_6;
25
+ _this.middlewareStack.use(getRetryPlugin(_this.config));
26
+ _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
+ _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
+ _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
+ _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
+ _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
+ return _this;
29
33
  }
30
- destroy() {
31
- super.destroy();
32
- }
33
- }
34
+ GrafanaClient.prototype.destroy = function () {
35
+ _super.prototype.destroy.call(this);
36
+ };
37
+ return GrafanaClient;
38
+ }(__Client));
39
+ export { GrafanaClient };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { AssociateLicenseRequestFilterSensitiveLog, AssociateLicenseResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1AssociateLicenseCommand, serializeAws_restJson1AssociateLicenseCommand, } from "../protocols/Aws_restJson1";
5
- export class AssociateLicenseCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var AssociateLicenseCommand = (function (_super) {
7
+ __extends(AssociateLicenseCommand, _super);
8
+ function AssociateLicenseCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ AssociateLicenseCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GrafanaClient";
15
- const commandName = "AssociateLicenseCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GrafanaClient";
18
+ var commandName = "AssociateLicenseCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: AssociateLicenseRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: AssociateLicenseResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ AssociateLicenseCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1AssociateLicenseCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ AssociateLicenseCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1AssociateLicenseCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return AssociateLicenseCommand;
38
+ }($Command));
39
+ export { AssociateLicenseCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { CreateWorkspaceApiKeyRequestFilterSensitiveLog, CreateWorkspaceApiKeyResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateWorkspaceApiKeyCommand, serializeAws_restJson1CreateWorkspaceApiKeyCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateWorkspaceApiKeyCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateWorkspaceApiKeyCommand = (function (_super) {
7
+ __extends(CreateWorkspaceApiKeyCommand, _super);
8
+ function CreateWorkspaceApiKeyCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateWorkspaceApiKeyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GrafanaClient";
15
- const commandName = "CreateWorkspaceApiKeyCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GrafanaClient";
18
+ var commandName = "CreateWorkspaceApiKeyCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateWorkspaceApiKeyRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateWorkspaceApiKeyResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateWorkspaceApiKeyCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateWorkspaceApiKeyCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateWorkspaceApiKeyCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateWorkspaceApiKeyCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateWorkspaceApiKeyCommand;
38
+ }($Command));
39
+ export { CreateWorkspaceApiKeyCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { CreateWorkspaceRequestFilterSensitiveLog, CreateWorkspaceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateWorkspaceCommand, serializeAws_restJson1CreateWorkspaceCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateWorkspaceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateWorkspaceCommand = (function (_super) {
7
+ __extends(CreateWorkspaceCommand, _super);
8
+ function CreateWorkspaceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateWorkspaceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GrafanaClient";
15
- const commandName = "CreateWorkspaceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GrafanaClient";
18
+ var commandName = "CreateWorkspaceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateWorkspaceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateWorkspaceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateWorkspaceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateWorkspaceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateWorkspaceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateWorkspaceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateWorkspaceCommand;
38
+ }($Command));
39
+ export { CreateWorkspaceCommand };