@aws-sdk/client-grafana 3.300.0 → 3.301.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/commands/AssociateLicenseCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkspaceApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +12 -12
- package/dist-types/commands/DeleteWorkspaceApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkspaceAuthenticationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkspaceConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateLicenseCommand.d.ts +1 -1
- package/dist-types/commands/ListPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkspacesCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePermissionsCommand.d.ts +5 -5
- package/dist-types/commands/UpdateWorkspaceAuthenticationCommand.d.ts +8 -8
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +10 -10
- package/dist-types/commands/UpdateWorkspaceConfigurationCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -28,7 +28,7 @@ export interface AssociateLicenseCommandOutput extends AssociateLicenseResponse,
|
|
|
28
28
|
* import { GrafanaClient, AssociateLicenseCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
29
29
|
* // const { GrafanaClient, AssociateLicenseCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
30
30
|
* const client = new GrafanaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // AssociateLicenseRequest
|
|
32
32
|
* workspaceId: "STRING_VALUE", // required
|
|
33
33
|
* licenseType: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -28,7 +28,7 @@ export interface CreateWorkspaceApiKeyCommandOutput extends CreateWorkspaceApiKe
|
|
|
28
28
|
* import { GrafanaClient, CreateWorkspaceApiKeyCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
29
29
|
* // const { GrafanaClient, CreateWorkspaceApiKeyCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
30
30
|
* const client = new GrafanaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateWorkspaceApiKeyRequest
|
|
32
32
|
* keyName: "STRING_VALUE", // required
|
|
33
33
|
* keyRole: "STRING_VALUE", // required
|
|
34
34
|
* secondsToLive: Number("int"), // required
|
|
@@ -30,44 +30,44 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
|
|
|
30
30
|
* import { GrafanaClient, CreateWorkspaceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
31
31
|
* // const { GrafanaClient, CreateWorkspaceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
32
32
|
* const client = new GrafanaClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // CreateWorkspaceRequest
|
|
34
34
|
* accountAccessType: "STRING_VALUE", // required
|
|
35
35
|
* clientToken: "STRING_VALUE",
|
|
36
36
|
* organizationRoleName: "STRING_VALUE",
|
|
37
37
|
* permissionType: "STRING_VALUE", // required
|
|
38
38
|
* stackSetName: "STRING_VALUE",
|
|
39
|
-
* workspaceDataSources: [
|
|
39
|
+
* workspaceDataSources: [ // DataSourceTypesList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* workspaceDescription: "STRING_VALUE",
|
|
43
43
|
* workspaceName: "STRING_VALUE",
|
|
44
|
-
* workspaceNotificationDestinations: [
|
|
44
|
+
* workspaceNotificationDestinations: [ // NotificationDestinationsList
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* workspaceOrganizationalUnits: [
|
|
47
|
+
* workspaceOrganizationalUnits: [ // OrganizationalUnitList
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* workspaceRoleArn: "STRING_VALUE",
|
|
51
|
-
* authenticationProviders: [ // required
|
|
51
|
+
* authenticationProviders: [ // AuthenticationProviders // required
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
|
-
* tags: {
|
|
54
|
+
* tags: { // TagMap
|
|
55
55
|
* "<keys>": "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
|
-
* vpcConfiguration: {
|
|
58
|
-
* securityGroupIds: [ // required
|
|
57
|
+
* vpcConfiguration: { // VpcConfiguration
|
|
58
|
+
* securityGroupIds: [ // SecurityGroupIds // required
|
|
59
59
|
* "STRING_VALUE",
|
|
60
60
|
* ],
|
|
61
|
-
* subnetIds: [ // required
|
|
61
|
+
* subnetIds: [ // SubnetIds // required
|
|
62
62
|
* "STRING_VALUE",
|
|
63
63
|
* ],
|
|
64
64
|
* },
|
|
65
65
|
* configuration: "STRING_VALUE",
|
|
66
|
-
* networkAccessControl: {
|
|
67
|
-
* prefixListIds: [ // required
|
|
66
|
+
* networkAccessControl: { // NetworkAccessConfiguration
|
|
67
|
+
* prefixListIds: [ // PrefixListIds // required
|
|
68
68
|
* "STRING_VALUE",
|
|
69
69
|
* ],
|
|
70
|
-
* vpceIds: [ // required
|
|
70
|
+
* vpceIds: [ // VpceIds // required
|
|
71
71
|
* "STRING_VALUE",
|
|
72
72
|
* ],
|
|
73
73
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteWorkspaceApiKeyCommandOutput extends DeleteWorkspaceApiKe
|
|
|
26
26
|
* import { GrafanaClient, DeleteWorkspaceApiKeyCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
27
27
|
* // const { GrafanaClient, DeleteWorkspaceApiKeyCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
28
28
|
* const client = new GrafanaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteWorkspaceApiKeyRequest
|
|
30
30
|
* keyName: "STRING_VALUE", // required
|
|
31
31
|
* workspaceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, _
|
|
|
26
26
|
* import { GrafanaClient, DeleteWorkspaceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
27
27
|
* // const { GrafanaClient, DeleteWorkspaceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
28
28
|
* const client = new GrafanaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteWorkspaceRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkspaceCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeWorkspaceAuthenticationCommandOutput extends DescribeWo
|
|
|
27
27
|
* import { GrafanaClient, DescribeWorkspaceAuthenticationCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
28
28
|
* // const { GrafanaClient, DescribeWorkspaceAuthenticationCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
29
29
|
* const client = new GrafanaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeWorkspaceAuthenticationRequest
|
|
31
31
|
* workspaceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeWorkspaceAuthenticationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons
|
|
|
26
26
|
* import { GrafanaClient, DescribeWorkspaceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
27
27
|
* // const { GrafanaClient, DescribeWorkspaceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
28
28
|
* const client = new GrafanaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeWorkspaceRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeWorkspaceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeWorkspaceConfigurationCommandOutput extends DescribeWor
|
|
|
26
26
|
* import { GrafanaClient, DescribeWorkspaceConfigurationCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
27
27
|
* // const { GrafanaClient, DescribeWorkspaceConfigurationCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
28
28
|
* const client = new GrafanaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeWorkspaceConfigurationRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeWorkspaceConfigurationCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DisassociateLicenseCommandOutput extends DisassociateLicenseRes
|
|
|
26
26
|
* import { GrafanaClient, DisassociateLicenseCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
27
27
|
* // const { GrafanaClient, DisassociateLicenseCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
28
28
|
* const client = new GrafanaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DisassociateLicenseRequest
|
|
30
30
|
* workspaceId: "STRING_VALUE", // required
|
|
31
31
|
* licenseType: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -31,7 +31,7 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
|
|
|
31
31
|
* import { GrafanaClient, ListPermissionsCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
32
32
|
* // const { GrafanaClient, ListPermissionsCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
33
33
|
* const client = new GrafanaClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListPermissionsRequest
|
|
35
35
|
* maxResults: Number("int"),
|
|
36
36
|
* nextToken: "STRING_VALUE",
|
|
37
37
|
* userType: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* import { GrafanaClient, ListTagsForResourceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
30
30
|
* // const { GrafanaClient, ListTagsForResourceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
31
31
|
* const client = new GrafanaClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListTagsForResourceRequest
|
|
33
33
|
* resourceArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
27
27
|
* import { GrafanaClient, ListWorkspacesCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
28
28
|
* // const { GrafanaClient, ListWorkspacesCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
29
29
|
* const client = new GrafanaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListWorkspacesRequest
|
|
31
31
|
* maxResults: Number("int"),
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -31,9 +31,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* import { GrafanaClient, TagResourceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
32
32
|
* // const { GrafanaClient, TagResourceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
33
33
|
* const client = new GrafanaClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // TagResourceRequest
|
|
35
35
|
* resourceArn: "STRING_VALUE", // required
|
|
36
|
-
* tags: { // required
|
|
36
|
+
* tags: { // TagMap // required
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { GrafanaClient, UntagResourceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
28
28
|
* // const { GrafanaClient, UntagResourceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
29
29
|
* const client = new GrafanaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
|
-
* tagKeys: [ // required
|
|
32
|
+
* tagKeys: [ // TagKeys // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -27,13 +27,13 @@ export interface UpdatePermissionsCommandOutput extends UpdatePermissionsRespons
|
|
|
27
27
|
* import { GrafanaClient, UpdatePermissionsCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
28
28
|
* // const { GrafanaClient, UpdatePermissionsCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
29
29
|
* const client = new GrafanaClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* updateInstructionBatch: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // UpdatePermissionsRequest
|
|
31
|
+
* updateInstructionBatch: [ // UpdateInstructionBatch // required
|
|
32
|
+
* { // UpdateInstruction
|
|
33
33
|
* action: "STRING_VALUE", // required
|
|
34
34
|
* role: "STRING_VALUE", // required
|
|
35
|
-
* users: [ // required
|
|
36
|
-
* {
|
|
35
|
+
* users: [ // UserList // required
|
|
36
|
+
* { // User
|
|
37
37
|
* id: "STRING_VALUE", // required
|
|
38
38
|
* type: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -33,17 +33,17 @@ export interface UpdateWorkspaceAuthenticationCommandOutput extends UpdateWorksp
|
|
|
33
33
|
* import { GrafanaClient, UpdateWorkspaceAuthenticationCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
34
34
|
* // const { GrafanaClient, UpdateWorkspaceAuthenticationCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
35
35
|
* const client = new GrafanaClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // UpdateWorkspaceAuthenticationRequest
|
|
37
37
|
* workspaceId: "STRING_VALUE", // required
|
|
38
|
-
* authenticationProviders: [ // required
|
|
38
|
+
* authenticationProviders: [ // AuthenticationProviders // required
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* samlConfiguration: {
|
|
42
|
-
* idpMetadata: { // Union: only one key present
|
|
41
|
+
* samlConfiguration: { // SamlConfiguration
|
|
42
|
+
* idpMetadata: { // IdpMetadata Union: only one key present
|
|
43
43
|
* url: "STRING_VALUE",
|
|
44
44
|
* xml: "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
|
-
* assertionAttributes: {
|
|
46
|
+
* assertionAttributes: { // AssertionAttributes
|
|
47
47
|
* name: "STRING_VALUE",
|
|
48
48
|
* login: "STRING_VALUE",
|
|
49
49
|
* email: "STRING_VALUE",
|
|
@@ -51,15 +51,15 @@ export interface UpdateWorkspaceAuthenticationCommandOutput extends UpdateWorksp
|
|
|
51
51
|
* role: "STRING_VALUE",
|
|
52
52
|
* org: "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
|
-
* roleValues: {
|
|
55
|
-
* editor: [
|
|
54
|
+
* roleValues: { // RoleValues
|
|
55
|
+
* editor: [ // RoleValueList
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
58
|
* admin: [
|
|
59
59
|
* "STRING_VALUE",
|
|
60
60
|
* ],
|
|
61
61
|
* },
|
|
62
|
-
* allowedOrganizations: [
|
|
62
|
+
* allowedOrganizations: [ // AllowedOrganizations
|
|
63
63
|
* "STRING_VALUE",
|
|
64
64
|
* ],
|
|
65
65
|
* loginValidityDuration: Number("int"),
|
|
@@ -31,38 +31,38 @@ export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, _
|
|
|
31
31
|
* import { GrafanaClient, UpdateWorkspaceCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
32
32
|
* // const { GrafanaClient, UpdateWorkspaceCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
33
33
|
* const client = new GrafanaClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // UpdateWorkspaceRequest
|
|
35
35
|
* accountAccessType: "STRING_VALUE",
|
|
36
36
|
* organizationRoleName: "STRING_VALUE",
|
|
37
37
|
* permissionType: "STRING_VALUE",
|
|
38
38
|
* stackSetName: "STRING_VALUE",
|
|
39
|
-
* workspaceDataSources: [
|
|
39
|
+
* workspaceDataSources: [ // DataSourceTypesList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* workspaceDescription: "STRING_VALUE",
|
|
43
43
|
* workspaceId: "STRING_VALUE", // required
|
|
44
44
|
* workspaceName: "STRING_VALUE",
|
|
45
|
-
* workspaceNotificationDestinations: [
|
|
45
|
+
* workspaceNotificationDestinations: [ // NotificationDestinationsList
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
|
-
* workspaceOrganizationalUnits: [
|
|
48
|
+
* workspaceOrganizationalUnits: [ // OrganizationalUnitList
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* workspaceRoleArn: "STRING_VALUE",
|
|
52
|
-
* vpcConfiguration: {
|
|
53
|
-
* securityGroupIds: [ // required
|
|
52
|
+
* vpcConfiguration: { // VpcConfiguration
|
|
53
|
+
* securityGroupIds: [ // SecurityGroupIds // required
|
|
54
54
|
* "STRING_VALUE",
|
|
55
55
|
* ],
|
|
56
|
-
* subnetIds: [ // required
|
|
56
|
+
* subnetIds: [ // SubnetIds // required
|
|
57
57
|
* "STRING_VALUE",
|
|
58
58
|
* ],
|
|
59
59
|
* },
|
|
60
60
|
* removeVpcConfiguration: true || false,
|
|
61
|
-
* networkAccessControl: {
|
|
62
|
-
* prefixListIds: [ // required
|
|
61
|
+
* networkAccessControl: { // NetworkAccessConfiguration
|
|
62
|
+
* prefixListIds: [ // PrefixListIds // required
|
|
63
63
|
* "STRING_VALUE",
|
|
64
64
|
* ],
|
|
65
|
-
* vpceIds: [ // required
|
|
65
|
+
* vpceIds: [ // VpceIds // required
|
|
66
66
|
* "STRING_VALUE",
|
|
67
67
|
* ],
|
|
68
68
|
* },
|
|
@@ -26,7 +26,7 @@ export interface UpdateWorkspaceConfigurationCommandOutput extends UpdateWorkspa
|
|
|
26
26
|
* import { GrafanaClient, UpdateWorkspaceConfigurationCommand } from "@aws-sdk/client-grafana"; // ES Modules import
|
|
27
27
|
* // const { GrafanaClient, UpdateWorkspaceConfigurationCommand } = require("@aws-sdk/client-grafana"); // CommonJS import
|
|
28
28
|
* const client = new GrafanaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateWorkspaceConfigurationRequest
|
|
30
30
|
* configuration: "STRING_VALUE", // required
|
|
31
31
|
* workspaceId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
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.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|