@aws-sdk/client-grafana 3.533.0 → 3.535.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-types/Grafana.d.ts +3 -1
- package/dist-types/GrafanaClient.d.ts +1 -1
- package/dist-types/commands/AssociateLicenseCommand.d.ts +2 -1
- package/dist-types/commands/CreateWorkspaceApiKeyCommand.d.ts +2 -1
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteWorkspaceApiKeyCommand.d.ts +2 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +2 -1
- package/dist-types/commands/DescribeWorkspaceAuthenticationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +2 -1
- package/dist-types/commands/DescribeWorkspaceConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateLicenseCommand.d.ts +2 -1
- package/dist-types/commands/ListPermissionsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePermissionsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkspaceAuthenticationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkspaceConfigurationCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +209 -209
- package/dist-types/ts3.4/Grafana.d.ts +2 -0
- package/dist-types/ts3.4/commands/AssociateLicenseCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceApiKeyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceApiKeyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeWorkspaceAuthenticationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeWorkspaceConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DisassociateLicenseCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePermissionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceAuthenticationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceConfigurationCommand.d.ts +9 -0
- package/package.json +40 -40
package/dist-types/Grafana.d.ts
CHANGED
|
@@ -89,12 +89,14 @@ export interface Grafana {
|
|
|
89
89
|
/**
|
|
90
90
|
* @see {@link ListVersionsCommand}
|
|
91
91
|
*/
|
|
92
|
+
listVersions(): Promise<ListVersionsCommandOutput>;
|
|
92
93
|
listVersions(args: ListVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListVersionsCommandOutput>;
|
|
93
94
|
listVersions(args: ListVersionsCommandInput, cb: (err: any, data?: ListVersionsCommandOutput) => void): void;
|
|
94
95
|
listVersions(args: ListVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVersionsCommandOutput) => void): void;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListWorkspacesCommand}
|
|
97
98
|
*/
|
|
99
|
+
listWorkspaces(): Promise<ListWorkspacesCommandOutput>;
|
|
98
100
|
listWorkspaces(args: ListWorkspacesCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkspacesCommandOutput>;
|
|
99
101
|
listWorkspaces(args: ListWorkspacesCommandInput, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
100
102
|
listWorkspaces(args: ListWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
@@ -136,7 +138,6 @@ export interface Grafana {
|
|
|
136
138
|
updateWorkspaceConfiguration(args: UpdateWorkspaceConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceConfigurationCommandOutput) => void): void;
|
|
137
139
|
}
|
|
138
140
|
/**
|
|
139
|
-
* @public
|
|
140
141
|
* <p>Amazon Managed Grafana is a fully managed and secure data visualization service that
|
|
141
142
|
* you can use to instantly query, correlate, and visualize operational metrics, logs, and
|
|
142
143
|
* traces from multiple sources. Amazon Managed Grafana makes it easy to deploy, operate, and
|
|
@@ -146,6 +147,7 @@ export interface Grafana {
|
|
|
146
147
|
* <i>workspaces</i>. In a workspace, you can create Grafana dashboards
|
|
147
148
|
* and visualizations to analyze your metrics, logs, and traces without having to build,
|
|
148
149
|
* package, or deploy any hardware to run Grafana servers. </p>
|
|
150
|
+
* @public
|
|
149
151
|
*/
|
|
150
152
|
export declare class Grafana extends GrafanaClient implements Grafana {
|
|
151
153
|
}
|
|
@@ -170,7 +170,6 @@ export type GrafanaClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
|
|
|
170
170
|
export interface GrafanaClientResolvedConfig extends GrafanaClientResolvedConfigType {
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
|
-
* @public
|
|
174
173
|
* <p>Amazon Managed Grafana is a fully managed and secure data visualization service that
|
|
175
174
|
* you can use to instantly query, correlate, and visualize operational metrics, logs, and
|
|
176
175
|
* traces from multiple sources. Amazon Managed Grafana makes it easy to deploy, operate, and
|
|
@@ -180,6 +179,7 @@ export interface GrafanaClientResolvedConfig extends GrafanaClientResolvedConfig
|
|
|
180
179
|
* <i>workspaces</i>. In a workspace, you can create Grafana dashboards
|
|
181
180
|
* and visualizations to analyze your metrics, logs, and traces without having to build,
|
|
182
181
|
* package, or deploy any hardware to run Grafana servers. </p>
|
|
182
|
+
* @public
|
|
183
183
|
*/
|
|
184
184
|
export declare class GrafanaClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, GrafanaClientResolvedConfig> {
|
|
185
185
|
/**
|
|
@@ -22,10 +22,10 @@ export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const AssociateLicenseCommand_base: {
|
|
24
24
|
new (input: AssociateLicenseCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateLicenseCommandInput, AssociateLicenseCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AssociateLicenseCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateLicenseCommandInput, AssociateLicenseCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns a Grafana Enterprise license to a workspace. Upgrading to Grafana Enterprise
|
|
30
30
|
* incurs additional fees. For more information, see <a href="https://docs.aws.amazon.com/grafana/latest/userguide/upgrade-to-Grafana-Enterprise.html">Upgrade a
|
|
31
31
|
* workspace to Grafana Enterprise</a>.</p>
|
|
@@ -125,6 +125,7 @@ declare const AssociateLicenseCommand_base: {
|
|
|
125
125
|
* @throws {@link GrafanaServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
127
127
|
*
|
|
128
|
+
* @public
|
|
128
129
|
*/
|
|
129
130
|
export declare class AssociateLicenseCommand extends AssociateLicenseCommand_base {
|
|
130
131
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateWorkspaceApiKeyCommandOutput extends CreateWorkspaceApiKe
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateWorkspaceApiKeyCommand_base: {
|
|
24
24
|
new (input: CreateWorkspaceApiKeyCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWorkspaceApiKeyCommandInput, CreateWorkspaceApiKeyCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateWorkspaceApiKeyCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWorkspaceApiKeyCommandInput, CreateWorkspaceApiKeyCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a Grafana API key for the workspace. This key can be used to authenticate
|
|
30
30
|
* 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>
|
|
31
31
|
* for available APIs and example requests.</p>
|
|
@@ -81,6 +81,7 @@ declare const CreateWorkspaceApiKeyCommand_base: {
|
|
|
81
81
|
* @throws {@link GrafanaServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class CreateWorkspaceApiKeyCommand extends CreateWorkspaceApiKeyCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateWorkspaceCommand_base: {
|
|
24
24
|
new (input: CreateWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a <i>workspace</i>. In a workspace, you can create Grafana
|
|
30
30
|
* dashboards and visualizations to analyze your metrics, logs, and traces. You don't have
|
|
31
31
|
* to build, package, or deploy any hardware to run the Grafana server.</p>
|
|
@@ -168,6 +168,7 @@ declare const CreateWorkspaceCommand_base: {
|
|
|
168
168
|
* @throws {@link GrafanaServiceException}
|
|
169
169
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
170
170
|
*
|
|
171
|
+
* @public
|
|
171
172
|
*/
|
|
172
173
|
export declare class CreateWorkspaceCommand extends CreateWorkspaceCommand_base {
|
|
173
174
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteWorkspaceApiKeyCommandOutput extends DeleteWorkspaceApiKe
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteWorkspaceApiKeyCommand_base: {
|
|
24
24
|
new (input: DeleteWorkspaceApiKeyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkspaceApiKeyCommandInput, DeleteWorkspaceApiKeyCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteWorkspaceApiKeyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkspaceApiKeyCommandInput, DeleteWorkspaceApiKeyCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a Grafana API key for the workspace.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const DeleteWorkspaceApiKeyCommand_base: {
|
|
|
73
73
|
* @throws {@link GrafanaServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DeleteWorkspaceApiKeyCommand extends DeleteWorkspaceApiKeyCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteWorkspaceCommand_base: {
|
|
24
24
|
new (input: DeleteWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an Amazon Managed Grafana workspace.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -124,6 +124,7 @@ declare const DeleteWorkspaceCommand_base: {
|
|
|
124
124
|
* @throws {@link GrafanaServiceException}
|
|
125
125
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
126
126
|
*
|
|
127
|
+
* @public
|
|
127
128
|
*/
|
|
128
129
|
export declare class DeleteWorkspaceCommand extends DeleteWorkspaceCommand_base {
|
|
129
130
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeWorkspaceAuthenticationCommandOutput extends DescribeWo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeWorkspaceAuthenticationCommand_base: {
|
|
24
24
|
new (input: DescribeWorkspaceAuthenticationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkspaceAuthenticationCommandInput, DescribeWorkspaceAuthenticationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeWorkspaceAuthenticationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkspaceAuthenticationCommandInput, DescribeWorkspaceAuthenticationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays information about the authentication methods used in one Amazon Managed Grafana
|
|
30
30
|
* workspace.</p>
|
|
31
31
|
* @example
|
|
@@ -105,6 +105,7 @@ declare const DescribeWorkspaceAuthenticationCommand_base: {
|
|
|
105
105
|
* @throws {@link GrafanaServiceException}
|
|
106
106
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
107
107
|
*
|
|
108
|
+
* @public
|
|
108
109
|
*/
|
|
109
110
|
export declare class DescribeWorkspaceAuthenticationCommand extends DescribeWorkspaceAuthenticationCommand_base {
|
|
110
111
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeWorkspaceCommand_base: {
|
|
24
24
|
new (input: DescribeWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays information about one Amazon Managed Grafana workspace.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -121,6 +121,7 @@ declare const DescribeWorkspaceCommand_base: {
|
|
|
121
121
|
* @throws {@link GrafanaServiceException}
|
|
122
122
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
123
123
|
*
|
|
124
|
+
* @public
|
|
124
125
|
*/
|
|
125
126
|
export declare class DescribeWorkspaceCommand extends DescribeWorkspaceCommand_base {
|
|
126
127
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeWorkspaceConfigurationCommandOutput extends DescribeWor
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeWorkspaceConfigurationCommand_base: {
|
|
24
24
|
new (input: DescribeWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkspaceConfigurationCommandInput, DescribeWorkspaceConfigurationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWorkspaceConfigurationCommandInput, DescribeWorkspaceConfigurationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the current configuration string for the given workspace.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const DescribeWorkspaceConfigurationCommand_base: {
|
|
|
66
66
|
* @throws {@link GrafanaServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class DescribeWorkspaceConfigurationCommand extends DescribeWorkspaceConfigurationCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface DisassociateLicenseCommandOutput extends DisassociateLicenseRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const DisassociateLicenseCommand_base: {
|
|
24
24
|
new (input: DisassociateLicenseCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateLicenseCommandInput, DisassociateLicenseCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DisassociateLicenseCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateLicenseCommandInput, DisassociateLicenseCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes the Grafana Enterprise license from a workspace.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -122,6 +122,7 @@ declare const DisassociateLicenseCommand_base: {
|
|
|
122
122
|
* @throws {@link GrafanaServiceException}
|
|
123
123
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
124
124
|
*
|
|
125
|
+
* @public
|
|
125
126
|
*/
|
|
126
127
|
export declare class DisassociateLicenseCommand extends DisassociateLicenseCommand_base {
|
|
127
128
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListPermissionsCommand_base: {
|
|
24
24
|
new (input: ListPermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPermissionsCommandInput, ListPermissionsCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListPermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPermissionsCommandInput, ListPermissionsCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the users and groups who have the Grafana <code>Admin</code> and
|
|
30
30
|
* <code>Editor</code> roles in this workspace. If you use this operation without
|
|
31
31
|
* specifying <code>userId</code> or <code>groupId</code>, the operation returns the roles
|
|
@@ -87,6 +87,7 @@ declare const ListPermissionsCommand_base: {
|
|
|
87
87
|
* @throws {@link GrafanaServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListPermissionsCommand extends ListPermissionsCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>The <code>ListTagsForResource</code> operation returns the tags that are associated
|
|
30
30
|
* with the Amazon Managed Service for Grafana resource specified by the
|
|
31
31
|
* <code>resourceArn</code>. Currently, the only resource that can be tagged is a
|
|
@@ -73,6 +73,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
73
73
|
* @throws {@link GrafanaServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListVersionsCommandOutput extends ListVersionsResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListVersionsCommand_base: {
|
|
24
24
|
new (input: ListVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListVersionsCommandInput, ListVersionsCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListVersionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListVersionsCommandInput, ListVersionsCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists available versions of Grafana. These are available when calling
|
|
30
30
|
* <code>CreateWorkspace</code>. Optionally, include a workspace to list the versions
|
|
31
31
|
* to which it can be upgraded.</p>
|
|
@@ -75,6 +75,7 @@ declare const ListVersionsCommand_base: {
|
|
|
75
75
|
* @throws {@link GrafanaServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class ListVersionsCommand extends ListVersionsCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListWorkspacesCommand_base: {
|
|
24
24
|
new (input: ListWorkspacesCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListWorkspacesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of Amazon Managed Grafana workspaces in the account, with some information
|
|
30
30
|
* 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>
|
|
31
31
|
* @example
|
|
@@ -90,6 +90,7 @@ declare const ListWorkspacesCommand_base: {
|
|
|
90
90
|
* @throws {@link GrafanaServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class ListWorkspacesCommand extends ListWorkspacesCommand_base {
|
|
95
96
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>The <code>TagResource</code> operation associates tags with an Amazon Managed Grafana
|
|
30
30
|
* resource. Currently, the only resource that can be tagged is workspaces. </p>
|
|
31
31
|
* <p>If you specify a new tag key for the resource, this tag is appended to the list of
|
|
@@ -74,6 +74,7 @@ declare const TagResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link GrafanaServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>The <code>UntagResource</code> operation removes the association of the tag with the
|
|
30
30
|
* Amazon Managed Grafana resource. </p>
|
|
31
31
|
* @example
|
|
@@ -70,6 +70,7 @@ declare const UntagResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link GrafanaServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdatePermissionsCommandOutput extends UpdatePermissionsRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdatePermissionsCommand_base: {
|
|
24
24
|
new (input: UpdatePermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePermissionsCommandInput, UpdatePermissionsCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdatePermissionsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePermissionsCommandInput, UpdatePermissionsCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates which users in a workspace have the Grafana <code>Admin</code> or
|
|
30
30
|
* <code>Editor</code> roles.</p>
|
|
31
31
|
* @example
|
|
@@ -96,6 +96,7 @@ declare const UpdatePermissionsCommand_base: {
|
|
|
96
96
|
* @throws {@link GrafanaServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class UpdatePermissionsCommand extends UpdatePermissionsCommand_base {
|
|
101
102
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateWorkspaceAuthenticationCommandOutput extends UpdateWorksp
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateWorkspaceAuthenticationCommand_base: {
|
|
24
24
|
new (input: UpdateWorkspaceAuthenticationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkspaceAuthenticationCommandInput, UpdateWorkspaceAuthenticationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateWorkspaceAuthenticationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkspaceAuthenticationCommandInput, UpdateWorkspaceAuthenticationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Use this operation to define the identity provider (IdP) that this workspace
|
|
30
30
|
* authenticates users from, using SAML. You can also map SAML assertion attributes to
|
|
31
31
|
* workspace user information and define which groups in the assertion attribute are to
|
|
@@ -143,6 +143,7 @@ declare const UpdateWorkspaceAuthenticationCommand_base: {
|
|
|
143
143
|
* @throws {@link GrafanaServiceException}
|
|
144
144
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
145
145
|
*
|
|
146
|
+
* @public
|
|
146
147
|
*/
|
|
147
148
|
export declare class UpdateWorkspaceAuthenticationCommand extends UpdateWorkspaceAuthenticationCommand_base {
|
|
148
149
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateWorkspaceCommand_base: {
|
|
24
24
|
new (input: UpdateWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateWorkspaceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Modifies an existing Amazon Managed Grafana workspace. If you use this operation and omit
|
|
30
30
|
* any optional parameters, the existing values of those parameters are not changed.</p>
|
|
31
31
|
* <p>To modify the user authentication methods that the workspace uses, such as SAML or
|
|
@@ -163,6 +163,7 @@ declare const UpdateWorkspaceCommand_base: {
|
|
|
163
163
|
* @throws {@link GrafanaServiceException}
|
|
164
164
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
165
165
|
*
|
|
166
|
+
* @public
|
|
166
167
|
*/
|
|
167
168
|
export declare class UpdateWorkspaceCommand extends UpdateWorkspaceCommand_base {
|
|
168
169
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateWorkspaceConfigurationCommandOutput extends UpdateWorkspa
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateWorkspaceConfigurationCommand_base: {
|
|
24
24
|
new (input: UpdateWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkspaceConfigurationCommandInput, UpdateWorkspaceConfigurationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateWorkspaceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkspaceConfigurationCommandInput, UpdateWorkspaceConfigurationCommandOutput, GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the configuration string for the given workspace</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const UpdateWorkspaceConfigurationCommand_base: {
|
|
|
71
71
|
* @throws {@link GrafanaServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from Grafana service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class UpdateWorkspaceConfigurationCommand extends UpdateWorkspaceConfigurationCommand_base {
|
|
76
77
|
}
|