@aws-sdk/client-grafana 3.575.0 → 3.577.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/README.md +48 -0
- package/dist-cjs/index.js +341 -0
- package/dist-es/Grafana.js +12 -0
- package/dist-es/commands/CreateWorkspaceServiceAccountCommand.js +24 -0
- package/dist-es/commands/CreateWorkspaceServiceAccountTokenCommand.js +25 -0
- package/dist-es/commands/DeleteWorkspaceServiceAccountCommand.js +24 -0
- package/dist-es/commands/DeleteWorkspaceServiceAccountTokenCommand.js +24 -0
- package/dist-es/commands/ListWorkspaceServiceAccountTokensCommand.js +24 -0
- package/dist-es/commands/ListWorkspaceServiceAccountsCommand.js +24 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/pagination/ListWorkspaceServiceAccountTokensPaginator.js +4 -0
- package/dist-es/pagination/ListWorkspaceServiceAccountsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +193 -0
- package/dist-types/Grafana.d.ts +42 -0
- package/dist-types/GrafanaClient.d.ts +8 -2
- package/dist-types/commands/AssociateLicenseCommand.d.ts +3 -1
- package/dist-types/commands/CreateWorkspaceApiKeyCommand.d.ts +4 -0
- package/dist-types/commands/CreateWorkspaceServiceAccountCommand.d.ts +97 -0
- package/dist-types/commands/CreateWorkspaceServiceAccountTokenCommand.d.ts +101 -0
- package/dist-types/commands/DeleteWorkspaceApiKeyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWorkspaceServiceAccountCommand.d.ts +84 -0
- package/dist-types/commands/DeleteWorkspaceServiceAccountTokenCommand.d.ts +86 -0
- package/dist-types/commands/DescribeWorkspaceAuthenticationCommand.d.ts +3 -0
- package/dist-types/commands/ListWorkspaceServiceAccountTokensCommand.d.ts +97 -0
- package/dist-types/commands/ListWorkspaceServiceAccountsCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +357 -5
- package/dist-types/pagination/ListWorkspaceServiceAccountTokensPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkspaceServiceAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/Grafana.d.ts +120 -0
- package/dist-types/ts3.4/GrafanaClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceServiceAccountCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceServiceAccountTokenCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceServiceAccountCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceServiceAccountTokenCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListWorkspaceServiceAccountTokensCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListWorkspaceServiceAccountsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +86 -0
- package/dist-types/ts3.4/pagination/ListWorkspaceServiceAccountTokensPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkspaceServiceAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +14 -14
|
@@ -15,6 +15,14 @@ import {
|
|
|
15
15
|
CreateWorkspaceCommandInput,
|
|
16
16
|
CreateWorkspaceCommandOutput,
|
|
17
17
|
} from "../commands/CreateWorkspaceCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateWorkspaceServiceAccountCommandInput,
|
|
20
|
+
CreateWorkspaceServiceAccountCommandOutput,
|
|
21
|
+
} from "../commands/CreateWorkspaceServiceAccountCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateWorkspaceServiceAccountTokenCommandInput,
|
|
24
|
+
CreateWorkspaceServiceAccountTokenCommandOutput,
|
|
25
|
+
} from "../commands/CreateWorkspaceServiceAccountTokenCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeleteWorkspaceApiKeyCommandInput,
|
|
20
28
|
DeleteWorkspaceApiKeyCommandOutput,
|
|
@@ -23,6 +31,14 @@ import {
|
|
|
23
31
|
DeleteWorkspaceCommandInput,
|
|
24
32
|
DeleteWorkspaceCommandOutput,
|
|
25
33
|
} from "../commands/DeleteWorkspaceCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteWorkspaceServiceAccountCommandInput,
|
|
36
|
+
DeleteWorkspaceServiceAccountCommandOutput,
|
|
37
|
+
} from "../commands/DeleteWorkspaceServiceAccountCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteWorkspaceServiceAccountTokenCommandInput,
|
|
40
|
+
DeleteWorkspaceServiceAccountTokenCommandOutput,
|
|
41
|
+
} from "../commands/DeleteWorkspaceServiceAccountTokenCommand";
|
|
26
42
|
import {
|
|
27
43
|
DescribeWorkspaceAuthenticationCommandInput,
|
|
28
44
|
DescribeWorkspaceAuthenticationCommandOutput,
|
|
@@ -55,6 +71,14 @@ import {
|
|
|
55
71
|
ListWorkspacesCommandInput,
|
|
56
72
|
ListWorkspacesCommandOutput,
|
|
57
73
|
} from "../commands/ListWorkspacesCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListWorkspaceServiceAccountsCommandInput,
|
|
76
|
+
ListWorkspaceServiceAccountsCommandOutput,
|
|
77
|
+
} from "../commands/ListWorkspaceServiceAccountsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListWorkspaceServiceAccountTokensCommandInput,
|
|
80
|
+
ListWorkspaceServiceAccountTokensCommandOutput,
|
|
81
|
+
} from "../commands/ListWorkspaceServiceAccountTokensCommand";
|
|
58
82
|
import {
|
|
59
83
|
TagResourceCommandInput,
|
|
60
84
|
TagResourceCommandOutput,
|
|
@@ -91,6 +115,14 @@ export declare const se_CreateWorkspaceApiKeyCommand: (
|
|
|
91
115
|
input: CreateWorkspaceApiKeyCommandInput,
|
|
92
116
|
context: __SerdeContext
|
|
93
117
|
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_CreateWorkspaceServiceAccountCommand: (
|
|
119
|
+
input: CreateWorkspaceServiceAccountCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_CreateWorkspaceServiceAccountTokenCommand: (
|
|
123
|
+
input: CreateWorkspaceServiceAccountTokenCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
94
126
|
export declare const se_DeleteWorkspaceCommand: (
|
|
95
127
|
input: DeleteWorkspaceCommandInput,
|
|
96
128
|
context: __SerdeContext
|
|
@@ -99,6 +131,14 @@ export declare const se_DeleteWorkspaceApiKeyCommand: (
|
|
|
99
131
|
input: DeleteWorkspaceApiKeyCommandInput,
|
|
100
132
|
context: __SerdeContext
|
|
101
133
|
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_DeleteWorkspaceServiceAccountCommand: (
|
|
135
|
+
input: DeleteWorkspaceServiceAccountCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_DeleteWorkspaceServiceAccountTokenCommand: (
|
|
139
|
+
input: DeleteWorkspaceServiceAccountTokenCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
102
142
|
export declare const se_DescribeWorkspaceCommand: (
|
|
103
143
|
input: DescribeWorkspaceCommandInput,
|
|
104
144
|
context: __SerdeContext
|
|
@@ -131,6 +171,14 @@ export declare const se_ListWorkspacesCommand: (
|
|
|
131
171
|
input: ListWorkspacesCommandInput,
|
|
132
172
|
context: __SerdeContext
|
|
133
173
|
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_ListWorkspaceServiceAccountsCommand: (
|
|
175
|
+
input: ListWorkspaceServiceAccountsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_ListWorkspaceServiceAccountTokensCommand: (
|
|
179
|
+
input: ListWorkspaceServiceAccountTokensCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
134
182
|
export declare const se_TagResourceCommand: (
|
|
135
183
|
input: TagResourceCommandInput,
|
|
136
184
|
context: __SerdeContext
|
|
@@ -167,6 +215,14 @@ export declare const de_CreateWorkspaceApiKeyCommand: (
|
|
|
167
215
|
output: __HttpResponse,
|
|
168
216
|
context: __SerdeContext
|
|
169
217
|
) => Promise<CreateWorkspaceApiKeyCommandOutput>;
|
|
218
|
+
export declare const de_CreateWorkspaceServiceAccountCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<CreateWorkspaceServiceAccountCommandOutput>;
|
|
222
|
+
export declare const de_CreateWorkspaceServiceAccountTokenCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateWorkspaceServiceAccountTokenCommandOutput>;
|
|
170
226
|
export declare const de_DeleteWorkspaceCommand: (
|
|
171
227
|
output: __HttpResponse,
|
|
172
228
|
context: __SerdeContext
|
|
@@ -175,6 +231,14 @@ export declare const de_DeleteWorkspaceApiKeyCommand: (
|
|
|
175
231
|
output: __HttpResponse,
|
|
176
232
|
context: __SerdeContext
|
|
177
233
|
) => Promise<DeleteWorkspaceApiKeyCommandOutput>;
|
|
234
|
+
export declare const de_DeleteWorkspaceServiceAccountCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DeleteWorkspaceServiceAccountCommandOutput>;
|
|
238
|
+
export declare const de_DeleteWorkspaceServiceAccountTokenCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DeleteWorkspaceServiceAccountTokenCommandOutput>;
|
|
178
242
|
export declare const de_DescribeWorkspaceCommand: (
|
|
179
243
|
output: __HttpResponse,
|
|
180
244
|
context: __SerdeContext
|
|
@@ -207,6 +271,14 @@ export declare const de_ListWorkspacesCommand: (
|
|
|
207
271
|
output: __HttpResponse,
|
|
208
272
|
context: __SerdeContext
|
|
209
273
|
) => Promise<ListWorkspacesCommandOutput>;
|
|
274
|
+
export declare const de_ListWorkspaceServiceAccountsCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListWorkspaceServiceAccountsCommandOutput>;
|
|
278
|
+
export declare const de_ListWorkspaceServiceAccountTokensCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<ListWorkspaceServiceAccountTokensCommandOutput>;
|
|
210
282
|
export declare const de_TagResourceCommand: (
|
|
211
283
|
output: __HttpResponse,
|
|
212
284
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-grafana",
|
|
3
3
|
"description": "AWS SDK for JavaScript Grafana Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.577.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-grafana",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.577.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.577.0",
|
|
25
|
+
"@aws-sdk/core": "3.576.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.577.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.577.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.577.0",
|
|
32
|
+
"@aws-sdk/types": "3.577.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.577.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.577.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.0",
|
|
37
37
|
"@smithy/core": "^2.0.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.0",
|