@aws-sdk/client-grafana 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Grafana.d.ts +276 -85
- package/dist-types/ts3.4/GrafanaClient.d.ts +200 -89
- package/dist-types/ts3.4/commands/AssociateLicenseCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceApiKeyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceApiKeyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeWorkspaceAuthenticationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DisassociateLicenseCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdatePermissionsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceAuthenticationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +16 -16
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/GrafanaServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +520 -693
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -50
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeWorkspaceRequest,
|
|
15
|
+
DescribeWorkspaceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeWorkspaceCommandInput
|
|
18
|
+
extends DescribeWorkspaceRequest {}
|
|
19
|
+
export interface DescribeWorkspaceCommandOutput
|
|
20
|
+
extends DescribeWorkspaceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeWorkspaceCommand extends $Command<
|
|
23
|
+
DescribeWorkspaceCommandInput,
|
|
24
|
+
DescribeWorkspaceCommandOutput,
|
|
25
|
+
GrafanaClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeWorkspaceCommandInput;
|
|
28
|
+
constructor(input: DescribeWorkspaceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: GrafanaClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
DisassociateLicenseRequest,
|
|
15
|
+
DisassociateLicenseResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociateLicenseCommandInput
|
|
18
|
+
extends DisassociateLicenseRequest {}
|
|
19
|
+
export interface DisassociateLicenseCommandOutput
|
|
20
|
+
extends DisassociateLicenseResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateLicenseCommand extends $Command<
|
|
23
|
+
DisassociateLicenseCommandInput,
|
|
24
|
+
DisassociateLicenseCommandOutput,
|
|
25
|
+
GrafanaClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateLicenseCommandInput;
|
|
28
|
+
constructor(input: DisassociateLicenseCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: GrafanaClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DisassociateLicenseCommandInput, DisassociateLicenseCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPermissionsRequest,
|
|
15
|
+
ListPermissionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPermissionsCommandInput extends ListPermissionsRequest {}
|
|
18
|
+
export interface ListPermissionsCommandOutput
|
|
19
|
+
extends ListPermissionsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListPermissionsCommand extends $Command<
|
|
22
|
+
ListPermissionsCommandInput,
|
|
23
|
+
ListPermissionsCommandOutput,
|
|
24
|
+
GrafanaClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListPermissionsCommandInput;
|
|
27
|
+
constructor(input: ListPermissionsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: GrafanaClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListPermissionsCommandInput, ListPermissionsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
GrafanaClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: GrafanaClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
ListWorkspacesRequest,
|
|
15
|
+
ListWorkspacesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {}
|
|
18
|
+
export interface ListWorkspacesCommandOutput
|
|
19
|
+
extends ListWorkspacesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListWorkspacesCommand extends $Command<
|
|
22
|
+
ListWorkspacesCommandInput,
|
|
23
|
+
ListWorkspacesCommandOutput,
|
|
24
|
+
GrafanaClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListWorkspacesCommandInput;
|
|
27
|
+
constructor(input: ListWorkspacesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: GrafanaClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListWorkspacesCommandInput, ListWorkspacesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
GrafanaClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: GrafanaClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
GrafanaClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: GrafanaClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdatePermissionsRequest,
|
|
15
|
+
UpdatePermissionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdatePermissionsCommandInput
|
|
18
|
+
extends UpdatePermissionsRequest {}
|
|
19
|
+
export interface UpdatePermissionsCommandOutput
|
|
20
|
+
extends UpdatePermissionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdatePermissionsCommand extends $Command<
|
|
23
|
+
UpdatePermissionsCommandInput,
|
|
24
|
+
UpdatePermissionsCommandOutput,
|
|
25
|
+
GrafanaClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdatePermissionsCommandInput;
|
|
28
|
+
constructor(input: UpdatePermissionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: GrafanaClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdatePermissionsCommandInput, UpdatePermissionsCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateWorkspaceAuthenticationRequest,
|
|
15
|
+
UpdateWorkspaceAuthenticationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateWorkspaceAuthenticationCommandInput
|
|
18
|
+
extends UpdateWorkspaceAuthenticationRequest {}
|
|
19
|
+
export interface UpdateWorkspaceAuthenticationCommandOutput
|
|
20
|
+
extends UpdateWorkspaceAuthenticationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateWorkspaceAuthenticationCommand extends $Command<
|
|
23
|
+
UpdateWorkspaceAuthenticationCommandInput,
|
|
24
|
+
UpdateWorkspaceAuthenticationCommandOutput,
|
|
25
|
+
GrafanaClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateWorkspaceAuthenticationCommandInput;
|
|
28
|
+
constructor(input: UpdateWorkspaceAuthenticationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: GrafanaClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateWorkspaceAuthenticationCommandInput,
|
|
35
|
+
UpdateWorkspaceAuthenticationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GrafanaClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../GrafanaClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateWorkspaceRequest,
|
|
15
|
+
UpdateWorkspaceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateWorkspaceCommandInput extends UpdateWorkspaceRequest {}
|
|
18
|
+
export interface UpdateWorkspaceCommandOutput
|
|
19
|
+
extends UpdateWorkspaceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UpdateWorkspaceCommand extends $Command<
|
|
22
|
+
UpdateWorkspaceCommandInput,
|
|
23
|
+
UpdateWorkspaceCommandOutput,
|
|
24
|
+
GrafanaClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UpdateWorkspaceCommandInput;
|
|
27
|
+
constructor(input: UpdateWorkspaceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: GrafanaClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * from "./AssociateLicenseCommand";
|
|
2
|
-
export * from "./CreateWorkspaceApiKeyCommand";
|
|
3
|
-
export * from "./CreateWorkspaceCommand";
|
|
4
|
-
export * from "./DeleteWorkspaceApiKeyCommand";
|
|
5
|
-
export * from "./DeleteWorkspaceCommand";
|
|
6
|
-
export * from "./DescribeWorkspaceAuthenticationCommand";
|
|
7
|
-
export * from "./DescribeWorkspaceCommand";
|
|
8
|
-
export * from "./DisassociateLicenseCommand";
|
|
9
|
-
export * from "./ListPermissionsCommand";
|
|
10
|
-
export * from "./ListTagsForResourceCommand";
|
|
11
|
-
export * from "./ListWorkspacesCommand";
|
|
12
|
-
export * from "./TagResourceCommand";
|
|
13
|
-
export * from "./UntagResourceCommand";
|
|
14
|
-
export * from "./UpdatePermissionsCommand";
|
|
15
|
-
export * from "./UpdateWorkspaceAuthenticationCommand";
|
|
16
|
-
export * from "./UpdateWorkspaceCommand";
|
|
1
|
+
export * from "./AssociateLicenseCommand";
|
|
2
|
+
export * from "./CreateWorkspaceApiKeyCommand";
|
|
3
|
+
export * from "./CreateWorkspaceCommand";
|
|
4
|
+
export * from "./DeleteWorkspaceApiKeyCommand";
|
|
5
|
+
export * from "./DeleteWorkspaceCommand";
|
|
6
|
+
export * from "./DescribeWorkspaceAuthenticationCommand";
|
|
7
|
+
export * from "./DescribeWorkspaceCommand";
|
|
8
|
+
export * from "./DisassociateLicenseCommand";
|
|
9
|
+
export * from "./ListPermissionsCommand";
|
|
10
|
+
export * from "./ListTagsForResourceCommand";
|
|
11
|
+
export * from "./ListWorkspacesCommand";
|
|
12
|
+
export * from "./TagResourceCommand";
|
|
13
|
+
export * from "./UntagResourceCommand";
|
|
14
|
+
export * from "./UpdatePermissionsCommand";
|
|
15
|
+
export * from "./UpdateWorkspaceAuthenticationCommand";
|
|
16
|
+
export * from "./UpdateWorkspaceCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Grafana";
|
|
2
|
-
export * from "./GrafanaClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { GrafanaServiceException } from "./models/GrafanaServiceException";
|
|
1
|
+
export * from "./Grafana";
|
|
2
|
+
export * from "./GrafanaClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { GrafanaServiceException } from "./models/GrafanaServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class GrafanaServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|