@aws-sdk/client-grafana 3.990.0 → 3.992.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 +1 -9
- package/dist-cjs/schemas/schemas_0.js +5 -4
- package/dist-es/schemas/schemas_0.js +5 -4
- package/dist-types/Grafana.d.ts +1 -9
- package/dist-types/GrafanaClient.d.ts +1 -9
- package/dist-types/commands/AssociateLicenseCommand.d.ts +2 -5
- package/dist-types/commands/CreateWorkspaceApiKeyCommand.d.ts +1 -7
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +3 -5
- package/dist-types/commands/CreateWorkspaceServiceAccountCommand.d.ts +1 -13
- package/dist-types/commands/CreateWorkspaceServiceAccountTokenCommand.d.ts +1 -13
- package/dist-types/commands/DeleteWorkspaceApiKeyCommand.d.ts +1 -5
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteWorkspaceServiceAccountCommand.d.ts +1 -6
- package/dist-types/commands/DeleteWorkspaceServiceAccountTokenCommand.d.ts +1 -6
- package/dist-types/commands/DescribeWorkspaceAuthenticationCommand.d.ts +1 -2
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateLicenseCommand.d.ts +1 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +1 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -4
- package/dist-types/commands/ListVersionsCommand.d.ts +1 -3
- package/dist-types/commands/ListWorkspaceServiceAccountTokensCommand.d.ts +1 -7
- package/dist-types/commands/ListWorkspaceServiceAccountsCommand.d.ts +1 -3
- package/dist-types/commands/ListWorkspacesCommand.d.ts +1 -2
- package/dist-types/commands/TagResourceCommand.d.ts +1 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
- package/dist-types/commands/UpdatePermissionsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateWorkspaceAuthenticationCommand.d.ts +1 -8
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +2 -6
- package/dist-types/index.d.ts +1 -9
- package/dist-types/models/models_0.d.ts +119 -400
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +2 -2
|
@@ -86,6 +86,7 @@ export interface WorkspaceDescription {
|
|
|
86
86
|
vpcConfiguration?: VpcConfiguration | undefined;
|
|
87
87
|
networkAccessControl?: NetworkAccessConfiguration | undefined;
|
|
88
88
|
grafanaToken?: string | undefined;
|
|
89
|
+
kmsKeyId?: string | undefined;
|
|
89
90
|
}
|
|
90
91
|
export interface AssociateLicenseResponse {
|
|
91
92
|
workspace: WorkspaceDescription | undefined;
|
|
@@ -333,6 +334,7 @@ export interface CreateWorkspaceRequest {
|
|
|
333
334
|
configuration?: __AutomaticJsonStringConversion | string | undefined;
|
|
334
335
|
networkAccessControl?: NetworkAccessConfiguration | undefined;
|
|
335
336
|
grafanaVersion?: string | undefined;
|
|
337
|
+
kmsKeyId?: string | undefined;
|
|
336
338
|
}
|
|
337
339
|
export interface CreateWorkspaceResponse {
|
|
338
340
|
workspace: WorkspaceDescription | undefined;
|
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.992.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-grafana",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@aws-sdk/middleware-user-agent": "^3.972.10",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.992.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "^3.972.8",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|