@aws-sdk/client-grafana 3.296.0 → 3.298.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.
- package/dist-cjs/commands/AssociateLicenseCommand.js +1 -1
- package/dist-cjs/commands/CreateWorkspaceApiKeyCommand.js +1 -1
- package/dist-cjs/commands/DeleteWorkspaceApiKeyCommand.js +2 -3
- package/dist-cjs/commands/DeleteWorkspaceCommand.js +1 -1
- package/dist-cjs/commands/DescribeWorkspaceAuthenticationCommand.js +2 -3
- package/dist-cjs/commands/DescribeWorkspaceCommand.js +1 -1
- package/dist-cjs/commands/DescribeWorkspaceConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DisassociateLicenseCommand.js +1 -1
- package/dist-cjs/commands/ListPermissionsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ListWorkspacesCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdatePermissionsCommand.js +2 -3
- package/dist-cjs/commands/UpdateWorkspaceAuthenticationCommand.js +2 -3
- package/dist-cjs/commands/UpdateWorkspaceConfigurationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -177
- package/dist-es/commands/AssociateLicenseCommand.js +2 -2
- package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +2 -2
- package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +2 -3
- package/dist-es/commands/DeleteWorkspaceCommand.js +2 -2
- package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +2 -3
- package/dist-es/commands/DescribeWorkspaceCommand.js +2 -2
- package/dist-es/commands/DescribeWorkspaceConfigurationCommand.js +2 -3
- package/dist-es/commands/DisassociateLicenseCommand.js +2 -2
- package/dist-es/commands/ListPermissionsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ListWorkspacesCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdatePermissionsCommand.js +2 -3
- package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +2 -3
- package/dist-es/commands/UpdateWorkspaceConfigurationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -134
- package/dist-types/Grafana.d.ts +19 -0
- package/dist-types/GrafanaClient.d.ts +24 -4
- package/dist-types/commands/AssociateLicenseCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkspaceApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkspaceApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceAuthenticationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateLicenseCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceAuthenticationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceConfigurationCommand.d.ts +16 -0
- package/dist-types/models/GrafanaServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +173 -166
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -115
- package/package.json +4 -3
|
@@ -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 {
|
|
4
|
+
import { DisassociateLicenseResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DisassociateLicenseCommand, serializeAws_restJson1DisassociateLicenseCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class DisassociateLicenseCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class DisassociateLicenseCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: DisassociateLicenseResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { ListPermissionsRequestFilterSensitiveLog, ListPermissionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListPermissionsCommand, serializeAws_restJson1ListPermissionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListPermissionsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListPermissionsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListTagsForResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListTagsForResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -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 {
|
|
4
|
+
import { ListWorkspacesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListWorkspacesCommand, serializeAws_restJson1ListWorkspacesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class ListWorkspacesCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class ListWorkspacesCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: ListWorkspacesResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class TagResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class TagResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UntagResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UntagResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { UpdatePermissionsRequestFilterSensitiveLog, UpdatePermissionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdatePermissionsCommand, serializeAws_restJson1UpdatePermissionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdatePermissionsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdatePermissionsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { UpdateWorkspaceAuthenticationRequestFilterSensitiveLog, UpdateWorkspaceAuthenticationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateWorkspaceAuthenticationCommand, serializeAws_restJson1UpdateWorkspaceAuthenticationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateWorkspaceAuthenticationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateWorkspaceAuthenticationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
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 { UpdateWorkspaceConfigurationRequestFilterSensitiveLog, UpdateWorkspaceConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateWorkspaceConfigurationCommand, serializeAws_restJson1UpdateWorkspaceConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateWorkspaceConfigurationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateWorkspaceConfigurationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -188,37 +188,10 @@ export var UpdateAction;
|
|
|
188
188
|
UpdateAction["ADD"] = "ADD";
|
|
189
189
|
UpdateAction["REVOKE"] = "REVOKE";
|
|
190
190
|
})(UpdateAction || (UpdateAction = {}));
|
|
191
|
-
export const CreateWorkspaceApiKeyRequestFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
191
|
export const CreateWorkspaceApiKeyResponseFilterSensitiveLog = (obj) => ({
|
|
195
192
|
...obj,
|
|
196
193
|
...(obj.key && { key: SENSITIVE_STRING }),
|
|
197
194
|
});
|
|
198
|
-
export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
});
|
|
201
|
-
export const DeleteWorkspaceApiKeyRequestFilterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
});
|
|
204
|
-
export const DeleteWorkspaceApiKeyResponseFilterSensitiveLog = (obj) => ({
|
|
205
|
-
...obj,
|
|
206
|
-
});
|
|
207
|
-
export const AssertionAttributesFilterSensitiveLog = (obj) => ({
|
|
208
|
-
...obj,
|
|
209
|
-
});
|
|
210
|
-
export const AssociateLicenseRequestFilterSensitiveLog = (obj) => ({
|
|
211
|
-
...obj,
|
|
212
|
-
});
|
|
213
|
-
export const AuthenticationSummaryFilterSensitiveLog = (obj) => ({
|
|
214
|
-
...obj,
|
|
215
|
-
});
|
|
216
|
-
export const NetworkAccessConfigurationFilterSensitiveLog = (obj) => ({
|
|
217
|
-
...obj,
|
|
218
|
-
});
|
|
219
|
-
export const VpcConfigurationFilterSensitiveLog = (obj) => ({
|
|
220
|
-
...obj,
|
|
221
|
-
});
|
|
222
195
|
export const WorkspaceDescriptionFilterSensitiveLog = (obj) => ({
|
|
223
196
|
...obj,
|
|
224
197
|
...(obj.description && { description: SENSITIVE_STRING }),
|
|
@@ -231,108 +204,10 @@ export const AssociateLicenseResponseFilterSensitiveLog = (obj) => ({
|
|
|
231
204
|
...obj,
|
|
232
205
|
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
233
206
|
});
|
|
234
|
-
export const DescribeWorkspaceAuthenticationRequestFilterSensitiveLog = (obj) => ({
|
|
235
|
-
...obj,
|
|
236
|
-
});
|
|
237
|
-
export const AwsSsoAuthenticationFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
});
|
|
240
|
-
export const IdpMetadataFilterSensitiveLog = (obj) => {
|
|
241
|
-
if (obj.url !== undefined)
|
|
242
|
-
return { url: obj.url };
|
|
243
|
-
if (obj.xml !== undefined)
|
|
244
|
-
return { xml: obj.xml };
|
|
245
|
-
if (obj.$unknown !== undefined)
|
|
246
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
247
|
-
};
|
|
248
|
-
export const RoleValuesFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const SamlConfigurationFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
...(obj.idpMetadata && { idpMetadata: IdpMetadataFilterSensitiveLog(obj.idpMetadata) }),
|
|
254
|
-
});
|
|
255
|
-
export const SamlAuthenticationFilterSensitiveLog = (obj) => ({
|
|
256
|
-
...obj,
|
|
257
|
-
...(obj.configuration && { configuration: SamlConfigurationFilterSensitiveLog(obj.configuration) }),
|
|
258
|
-
});
|
|
259
|
-
export const AuthenticationDescriptionFilterSensitiveLog = (obj) => ({
|
|
260
|
-
...obj,
|
|
261
|
-
...(obj.saml && { saml: SamlAuthenticationFilterSensitiveLog(obj.saml) }),
|
|
262
|
-
});
|
|
263
|
-
export const DescribeWorkspaceAuthenticationResponseFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
...(obj.authentication && { authentication: AuthenticationDescriptionFilterSensitiveLog(obj.authentication) }),
|
|
266
|
-
});
|
|
267
|
-
export const UpdateWorkspaceAuthenticationRequestFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
...(obj.samlConfiguration && { samlConfiguration: SamlConfigurationFilterSensitiveLog(obj.samlConfiguration) }),
|
|
270
|
-
});
|
|
271
|
-
export const UpdateWorkspaceAuthenticationResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
...(obj.authentication && { authentication: AuthenticationDescriptionFilterSensitiveLog(obj.authentication) }),
|
|
274
|
-
});
|
|
275
|
-
export const DescribeWorkspaceConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const DescribeWorkspaceConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
export const UpdateWorkspaceConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
282
|
-
...obj,
|
|
283
|
-
});
|
|
284
|
-
export const UpdateWorkspaceConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
});
|
|
287
|
-
export const DisassociateLicenseRequestFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
});
|
|
290
207
|
export const DisassociateLicenseResponseFilterSensitiveLog = (obj) => ({
|
|
291
208
|
...obj,
|
|
292
209
|
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
293
210
|
});
|
|
294
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
});
|
|
300
|
-
export const ListPermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
301
|
-
...obj,
|
|
302
|
-
});
|
|
303
|
-
export const UserFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
export const PermissionEntryFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
export const ListPermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
|
-
export const UpdateInstructionFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
});
|
|
315
|
-
export const UpdatePermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
316
|
-
...obj,
|
|
317
|
-
});
|
|
318
|
-
export const UpdateErrorFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
});
|
|
321
|
-
export const UpdatePermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
322
|
-
...obj,
|
|
323
|
-
});
|
|
324
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
});
|
|
327
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
328
|
-
...obj,
|
|
329
|
-
});
|
|
330
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
331
|
-
...obj,
|
|
332
|
-
});
|
|
333
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
});
|
|
336
211
|
export const CreateWorkspaceRequestFilterSensitiveLog = (obj) => ({
|
|
337
212
|
...obj,
|
|
338
213
|
...(obj.organizationRoleName && { organizationRoleName: SENSITIVE_STRING }),
|
|
@@ -345,23 +220,14 @@ export const CreateWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
|
345
220
|
...obj,
|
|
346
221
|
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
347
222
|
});
|
|
348
|
-
export const DeleteWorkspaceRequestFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
223
|
export const DeleteWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
352
224
|
...obj,
|
|
353
225
|
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
354
226
|
});
|
|
355
|
-
export const DescribeWorkspaceRequestFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
});
|
|
358
227
|
export const DescribeWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
359
228
|
...obj,
|
|
360
229
|
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
361
230
|
});
|
|
362
|
-
export const ListWorkspacesRequestFilterSensitiveLog = (obj) => ({
|
|
363
|
-
...obj,
|
|
364
|
-
});
|
|
365
231
|
export const WorkspaceSummaryFilterSensitiveLog = (obj) => ({
|
|
366
232
|
...obj,
|
|
367
233
|
...(obj.description && { description: SENSITIVE_STRING }),
|
package/dist-types/Grafana.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./com
|
|
|
19
19
|
import { UpdateWorkspaceConfigurationCommandInput, UpdateWorkspaceConfigurationCommandOutput } from "./commands/UpdateWorkspaceConfigurationCommand";
|
|
20
20
|
import { GrafanaClient } from "./GrafanaClient";
|
|
21
21
|
/**
|
|
22
|
+
* @public
|
|
22
23
|
* <p>Amazon Managed Grafana is a fully managed and secure data visualization service that
|
|
23
24
|
* you can use to instantly query, correlate, and visualize operational metrics, logs, and
|
|
24
25
|
* traces from multiple sources. Amazon Managed Grafana makes it easy to deploy, operate, and
|
|
@@ -31,6 +32,7 @@ import { GrafanaClient } from "./GrafanaClient";
|
|
|
31
32
|
*/
|
|
32
33
|
export declare class Grafana extends GrafanaClient {
|
|
33
34
|
/**
|
|
35
|
+
* @public
|
|
34
36
|
* <p>Assigns a Grafana Enterprise license to a workspace. Upgrading to Grafana Enterprise
|
|
35
37
|
* incurs additional fees. For more information, see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html">Upgrade a
|
|
36
38
|
* workspace to Grafana Enterprise</a>.</p>
|
|
@@ -39,6 +41,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
39
41
|
associateLicense(args: AssociateLicenseCommandInput, cb: (err: any, data?: AssociateLicenseCommandOutput) => void): void;
|
|
40
42
|
associateLicense(args: AssociateLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateLicenseCommandOutput) => void): void;
|
|
41
43
|
/**
|
|
44
|
+
* @public
|
|
42
45
|
* <p>Creates a <i>workspace</i>. In a workspace, you can create Grafana
|
|
43
46
|
* dashboards and visualizations to analyze your metrics, logs, and traces. You don't have
|
|
44
47
|
* to build, package, or deploy any hardware to run the Grafana server.</p>
|
|
@@ -49,6 +52,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
49
52
|
createWorkspace(args: CreateWorkspaceCommandInput, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
50
53
|
createWorkspace(args: CreateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
51
54
|
/**
|
|
55
|
+
* @public
|
|
52
56
|
* <p>Creates a Grafana API key for the workspace. This key can be used to authenticate
|
|
53
57
|
* requests sent to the workspace's HTTP API. See <a href="https://docs.aws.amazon.com/grafana/latest/userguide/Using-Grafana-APIs.html">https://docs.aws.amazon.com/grafana/latest/userguide/Using-Grafana-APIs.html</a>
|
|
54
58
|
* for available APIs and example requests.</p>
|
|
@@ -57,24 +61,28 @@ export declare class Grafana extends GrafanaClient {
|
|
|
57
61
|
createWorkspaceApiKey(args: CreateWorkspaceApiKeyCommandInput, cb: (err: any, data?: CreateWorkspaceApiKeyCommandOutput) => void): void;
|
|
58
62
|
createWorkspaceApiKey(args: CreateWorkspaceApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceApiKeyCommandOutput) => void): void;
|
|
59
63
|
/**
|
|
64
|
+
* @public
|
|
60
65
|
* <p>Deletes an Amazon Managed Grafana workspace.</p>
|
|
61
66
|
*/
|
|
62
67
|
deleteWorkspace(args: DeleteWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkspaceCommandOutput>;
|
|
63
68
|
deleteWorkspace(args: DeleteWorkspaceCommandInput, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
64
69
|
deleteWorkspace(args: DeleteWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
65
70
|
/**
|
|
71
|
+
* @public
|
|
66
72
|
* <p>Deletes a Grafana API key for the workspace.</p>
|
|
67
73
|
*/
|
|
68
74
|
deleteWorkspaceApiKey(args: DeleteWorkspaceApiKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkspaceApiKeyCommandOutput>;
|
|
69
75
|
deleteWorkspaceApiKey(args: DeleteWorkspaceApiKeyCommandInput, cb: (err: any, data?: DeleteWorkspaceApiKeyCommandOutput) => void): void;
|
|
70
76
|
deleteWorkspaceApiKey(args: DeleteWorkspaceApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkspaceApiKeyCommandOutput) => void): void;
|
|
71
77
|
/**
|
|
78
|
+
* @public
|
|
72
79
|
* <p>Displays information about one Amazon Managed Grafana workspace.</p>
|
|
73
80
|
*/
|
|
74
81
|
describeWorkspace(args: DescribeWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkspaceCommandOutput>;
|
|
75
82
|
describeWorkspace(args: DescribeWorkspaceCommandInput, cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void): void;
|
|
76
83
|
describeWorkspace(args: DescribeWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void): void;
|
|
77
84
|
/**
|
|
85
|
+
* @public
|
|
78
86
|
* <p>Displays information about the authentication methods used in one Amazon Managed Grafana
|
|
79
87
|
* workspace.</p>
|
|
80
88
|
*/
|
|
@@ -82,18 +90,21 @@ export declare class Grafana extends GrafanaClient {
|
|
|
82
90
|
describeWorkspaceAuthentication(args: DescribeWorkspaceAuthenticationCommandInput, cb: (err: any, data?: DescribeWorkspaceAuthenticationCommandOutput) => void): void;
|
|
83
91
|
describeWorkspaceAuthentication(args: DescribeWorkspaceAuthenticationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkspaceAuthenticationCommandOutput) => void): void;
|
|
84
92
|
/**
|
|
93
|
+
* @public
|
|
85
94
|
* <p>Gets the current configuration string for the given workspace.</p>
|
|
86
95
|
*/
|
|
87
96
|
describeWorkspaceConfiguration(args: DescribeWorkspaceConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkspaceConfigurationCommandOutput>;
|
|
88
97
|
describeWorkspaceConfiguration(args: DescribeWorkspaceConfigurationCommandInput, cb: (err: any, data?: DescribeWorkspaceConfigurationCommandOutput) => void): void;
|
|
89
98
|
describeWorkspaceConfiguration(args: DescribeWorkspaceConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkspaceConfigurationCommandOutput) => void): void;
|
|
90
99
|
/**
|
|
100
|
+
* @public
|
|
91
101
|
* <p>Removes the Grafana Enterprise license from a workspace.</p>
|
|
92
102
|
*/
|
|
93
103
|
disassociateLicense(args: DisassociateLicenseCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateLicenseCommandOutput>;
|
|
94
104
|
disassociateLicense(args: DisassociateLicenseCommandInput, cb: (err: any, data?: DisassociateLicenseCommandOutput) => void): void;
|
|
95
105
|
disassociateLicense(args: DisassociateLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateLicenseCommandOutput) => void): void;
|
|
96
106
|
/**
|
|
107
|
+
* @public
|
|
97
108
|
* <p>Lists the users and groups who have the Grafana <code>Admin</code> and
|
|
98
109
|
* <code>Editor</code> roles in this workspace. If you use this operation without
|
|
99
110
|
* specifying <code>userId</code> or <code>groupId</code>, the operation returns the roles
|
|
@@ -105,6 +116,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
105
116
|
listPermissions(args: ListPermissionsCommandInput, cb: (err: any, data?: ListPermissionsCommandOutput) => void): void;
|
|
106
117
|
listPermissions(args: ListPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPermissionsCommandOutput) => void): void;
|
|
107
118
|
/**
|
|
119
|
+
* @public
|
|
108
120
|
* <p>The <code>ListTagsForResource</code> operation returns the tags that are associated
|
|
109
121
|
* with the Amazon Managed Service for Grafana resource specified by the
|
|
110
122
|
* <code>resourceArn</code>. Currently, the only resource that can be tagged is a
|
|
@@ -114,6 +126,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
114
126
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
115
127
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
116
128
|
/**
|
|
129
|
+
* @public
|
|
117
130
|
* <p>Returns a list of Amazon Managed Grafana workspaces in the account, with some information
|
|
118
131
|
* about each workspace. For more complete information about one workspace, use <a href="https://docs.aws.amazon.com/AAMG/latest/APIReference/API_DescribeWorkspace.html">DescribeWorkspace</a>.</p>
|
|
119
132
|
*/
|
|
@@ -121,6 +134,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
121
134
|
listWorkspaces(args: ListWorkspacesCommandInput, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
122
135
|
listWorkspaces(args: ListWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
123
136
|
/**
|
|
137
|
+
* @public
|
|
124
138
|
* <p>The <code>TagResource</code> operation associates tags with an Amazon Managed Grafana
|
|
125
139
|
* resource. Currently, the only resource that can be tagged is workspaces. </p>
|
|
126
140
|
* <p>If you specify a new tag key for the resource, this tag is appended to the list of
|
|
@@ -132,6 +146,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
132
146
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
133
147
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
134
148
|
/**
|
|
149
|
+
* @public
|
|
135
150
|
* <p>The <code>UntagResource</code> operation removes the association of the tag with the
|
|
136
151
|
* Amazon Managed Grafana resource. </p>
|
|
137
152
|
*/
|
|
@@ -139,6 +154,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
139
154
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
140
155
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
141
156
|
/**
|
|
157
|
+
* @public
|
|
142
158
|
* <p>Updates which users in a workspace have the Grafana <code>Admin</code> or
|
|
143
159
|
* <code>Editor</code> roles.</p>
|
|
144
160
|
*/
|
|
@@ -146,6 +162,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
146
162
|
updatePermissions(args: UpdatePermissionsCommandInput, cb: (err: any, data?: UpdatePermissionsCommandOutput) => void): void;
|
|
147
163
|
updatePermissions(args: UpdatePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePermissionsCommandOutput) => void): void;
|
|
148
164
|
/**
|
|
165
|
+
* @public
|
|
149
166
|
* <p>Modifies an existing Amazon Managed Grafana workspace. If you use this operation and omit
|
|
150
167
|
* any optional parameters, the existing values of those parameters are not changed.</p>
|
|
151
168
|
* <p>To modify the user authentication methods that the workspace uses, such as SAML or
|
|
@@ -157,6 +174,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
157
174
|
updateWorkspace(args: UpdateWorkspaceCommandInput, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
158
175
|
updateWorkspace(args: UpdateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
159
176
|
/**
|
|
177
|
+
* @public
|
|
160
178
|
* <p>Use this operation to define the identity provider (IdP) that this workspace
|
|
161
179
|
* authenticates users from, using SAML. You can also map SAML assertion attributes to
|
|
162
180
|
* workspace user information and define which groups in the assertion attribute are to
|
|
@@ -170,6 +188,7 @@ export declare class Grafana extends GrafanaClient {
|
|
|
170
188
|
updateWorkspaceAuthentication(args: UpdateWorkspaceAuthenticationCommandInput, cb: (err: any, data?: UpdateWorkspaceAuthenticationCommandOutput) => void): void;
|
|
171
189
|
updateWorkspaceAuthentication(args: UpdateWorkspaceAuthenticationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceAuthenticationCommandOutput) => void): void;
|
|
172
190
|
/**
|
|
191
|
+
* @public
|
|
173
192
|
* <p>Updates the configuration string for the given workspace</p>
|
|
174
193
|
*/
|
|
175
194
|
updateWorkspaceConfiguration(args: UpdateWorkspaceConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkspaceConfigurationCommandOutput>;
|
|
@@ -26,15 +26,24 @@ import { UpdateWorkspaceAuthenticationCommandInput, UpdateWorkspaceAuthenticatio
|
|
|
26
26
|
import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
27
27
|
import { UpdateWorkspaceConfigurationCommandInput, UpdateWorkspaceConfigurationCommandOutput } from "./commands/UpdateWorkspaceConfigurationCommand";
|
|
28
28
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
29
32
|
export type ServiceInputTypes = AssociateLicenseCommandInput | CreateWorkspaceApiKeyCommandInput | CreateWorkspaceCommandInput | DeleteWorkspaceApiKeyCommandInput | DeleteWorkspaceCommandInput | DescribeWorkspaceAuthenticationCommandInput | DescribeWorkspaceCommandInput | DescribeWorkspaceConfigurationCommandInput | DisassociateLicenseCommandInput | ListPermissionsCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdatePermissionsCommandInput | UpdateWorkspaceAuthenticationCommandInput | UpdateWorkspaceCommandInput | UpdateWorkspaceConfigurationCommandInput;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
30
36
|
export type ServiceOutputTypes = AssociateLicenseCommandOutput | CreateWorkspaceApiKeyCommandOutput | CreateWorkspaceCommandOutput | DeleteWorkspaceApiKeyCommandOutput | DeleteWorkspaceCommandOutput | DescribeWorkspaceAuthenticationCommandOutput | DescribeWorkspaceCommandOutput | DescribeWorkspaceConfigurationCommandOutput | DisassociateLicenseCommandOutput | ListPermissionsCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdatePermissionsCommandOutput | UpdateWorkspaceAuthenticationCommandOutput | UpdateWorkspaceCommandOutput | UpdateWorkspaceConfigurationCommandOutput;
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
31
40
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
32
41
|
/**
|
|
33
42
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
34
43
|
*/
|
|
35
44
|
requestHandler?: __HttpHandler;
|
|
36
45
|
/**
|
|
37
|
-
* A constructor for a class implementing the {@link
|
|
46
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
38
47
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
39
48
|
* @internal
|
|
40
49
|
*/
|
|
@@ -124,23 +133,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
124
133
|
*/
|
|
125
134
|
logger?: __Logger;
|
|
126
135
|
/**
|
|
127
|
-
* The {@link
|
|
136
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
128
137
|
*/
|
|
129
138
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
130
139
|
}
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
131
143
|
type GrafanaClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
132
144
|
/**
|
|
133
|
-
*
|
|
145
|
+
* @public
|
|
146
|
+
*
|
|
147
|
+
* The configuration interface of GrafanaClient class constructor that set the region, credentials and other options.
|
|
134
148
|
*/
|
|
135
149
|
export interface GrafanaClientConfig extends GrafanaClientConfigType {
|
|
136
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
137
154
|
type GrafanaClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
138
155
|
/**
|
|
139
|
-
*
|
|
156
|
+
* @public
|
|
157
|
+
*
|
|
158
|
+
* The resolved configuration interface of GrafanaClient class. This is resolved and normalized from the {@link GrafanaClientConfig | constructor configuration interface}.
|
|
140
159
|
*/
|
|
141
160
|
export interface GrafanaClientResolvedConfig extends GrafanaClientResolvedConfigType {
|
|
142
161
|
}
|
|
143
162
|
/**
|
|
163
|
+
* @public
|
|
144
164
|
* <p>Amazon Managed Grafana is a fully managed and secure data visualization service that
|
|
145
165
|
* you can use to instantly query, correlate, and visualize operational metrics, logs, and
|
|
146
166
|
* traces from multiple sources. Amazon Managed Grafana makes it easy to deploy, operate, and
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient";
|
|
5
5
|
import { AssociateLicenseRequest, AssociateLicenseResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateLicenseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateLicenseCommandInput extends AssociateLicenseRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateLicenseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns a Grafana Enterprise license to a workspace. Upgrading to Grafana Enterprise
|
|
18
23
|
* incurs additional fees. For more information, see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html">Upgrade a
|
|
19
24
|
* workspace to Grafana Enterprise</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse,
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param AssociateLicenseCommandInput - {@link AssociateLicenseCommandInput}
|
|
36
|
+
* @returns {@link AssociateLicenseCommandOutput}
|
|
30
37
|
* @see {@link AssociateLicenseCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link AssociateLicenseCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link GrafanaClientResolvedConfig | config} for GrafanaClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse,
|
|
|
51
58
|
export declare class AssociateLicenseCommand extends $Command<AssociateLicenseCommandInput, AssociateLicenseCommandOutput, GrafanaClientResolvedConfig> {
|
|
52
59
|
readonly input: AssociateLicenseCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: AssociateLicenseCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GrafanaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateLicenseCommandInput, AssociateLicenseCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|