@aws-sdk/client-appconfig 3.298.0 → 3.300.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/CreateApplicationCommand.d.ts +7 -0
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +17 -0
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +12 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +14 -0
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +11 -0
- package/dist-types/commands/CreateExtensionCommand.d.ts +24 -0
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +9 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +3 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteExtensionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +5 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +3 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +4 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +5 -0
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +3 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +4 -0
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +3 -0
- package/dist-types/commands/GetExtensionCommand.d.ts +4 -0
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +5 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
- package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +6 -0
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +4 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +6 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +5 -0
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +7 -0
- package/dist-types/commands/ListExtensionsCommand.d.ts +5 -0
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +7 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +12 -0
- package/dist-types/commands/StopDeploymentCommand.d.ts +5 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +5 -0
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +8 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +12 -0
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateExtensionCommand.d.ts +21 -0
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +5 -0
- package/package.json +12 -12
|
@@ -30,6 +30,13 @@ export interface CreateApplicationCommandOutput extends Application, __MetadataB
|
|
|
30
30
|
* import { AppConfigClient, CreateApplicationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
31
31
|
* // const { AppConfigClient, CreateApplicationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
32
32
|
* const client = new AppConfigClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Description: "STRING_VALUE",
|
|
36
|
+
* Tags: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
33
40
|
* const command = new CreateApplicationCommand(input);
|
|
34
41
|
* const response = await client.send(command);
|
|
35
42
|
* ```
|
|
@@ -65,6 +65,23 @@ export interface CreateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
65
65
|
* import { AppConfigClient, CreateConfigurationProfileCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
66
66
|
* // const { AppConfigClient, CreateConfigurationProfileCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
67
67
|
* const client = new AppConfigClient(config);
|
|
68
|
+
* const input = {
|
|
69
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
70
|
+
* Name: "STRING_VALUE", // required
|
|
71
|
+
* Description: "STRING_VALUE",
|
|
72
|
+
* LocationUri: "STRING_VALUE", // required
|
|
73
|
+
* RetrievalRoleArn: "STRING_VALUE",
|
|
74
|
+
* Validators: [
|
|
75
|
+
* {
|
|
76
|
+
* Type: "JSON_SCHEMA" || "LAMBDA", // required
|
|
77
|
+
* Content: "STRING_VALUE", // required
|
|
78
|
+
* },
|
|
79
|
+
* ],
|
|
80
|
+
* Tags: {
|
|
81
|
+
* "<keys>": "STRING_VALUE",
|
|
82
|
+
* },
|
|
83
|
+
* Type: "STRING_VALUE",
|
|
84
|
+
* };
|
|
68
85
|
* const command = new CreateConfigurationProfileCommand(input);
|
|
69
86
|
* const response = await client.send(command);
|
|
70
87
|
* ```
|
|
@@ -29,6 +29,18 @@ export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
29
29
|
* import { AppConfigClient, CreateDeploymentStrategyCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, CreateDeploymentStrategyCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Description: "STRING_VALUE",
|
|
35
|
+
* DeploymentDurationInMinutes: Number("int"), // required
|
|
36
|
+
* FinalBakeTimeInMinutes: Number("int"),
|
|
37
|
+
* GrowthFactor: Number("float"), // required
|
|
38
|
+
* GrowthType: "LINEAR" || "EXPONENTIAL",
|
|
39
|
+
* ReplicateTo: "NONE" || "SSM_DOCUMENT",
|
|
40
|
+
* Tags: {
|
|
41
|
+
* "<keys>": "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* };
|
|
32
44
|
* const command = new CreateDeploymentStrategyCommand(input);
|
|
33
45
|
* const response = await client.send(command);
|
|
34
46
|
* ```
|
|
@@ -33,6 +33,20 @@ export interface CreateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
33
33
|
* import { AppConfigClient, CreateEnvironmentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
34
34
|
* // const { AppConfigClient, CreateEnvironmentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
35
35
|
* const client = new AppConfigClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* Description: "STRING_VALUE",
|
|
40
|
+
* Monitors: [
|
|
41
|
+
* {
|
|
42
|
+
* AlarmArn: "STRING_VALUE", // required
|
|
43
|
+
* AlarmRoleArn: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* Tags: {
|
|
47
|
+
* "<keys>": "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
36
50
|
* const command = new CreateEnvironmentCommand(input);
|
|
37
51
|
* const response = await client.send(command);
|
|
38
52
|
* ```
|
|
@@ -38,6 +38,17 @@ export interface CreateExtensionAssociationCommandOutput extends ExtensionAssoci
|
|
|
38
38
|
* import { AppConfigClient, CreateExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
39
39
|
* // const { AppConfigClient, CreateExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
40
40
|
* const client = new AppConfigClient(config);
|
|
41
|
+
* const input = {
|
|
42
|
+
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* ExtensionVersionNumber: Number("int"),
|
|
44
|
+
* ResourceIdentifier: "STRING_VALUE", // required
|
|
45
|
+
* Parameters: {
|
|
46
|
+
* "<keys>": "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* Tags: {
|
|
49
|
+
* "<keys>": "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* };
|
|
41
52
|
* const command = new CreateExtensionAssociationCommand(input);
|
|
42
53
|
* const response = await client.send(command);
|
|
43
54
|
* ```
|
|
@@ -34,6 +34,30 @@ export interface CreateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
34
34
|
* import { AppConfigClient, CreateExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
35
35
|
* // const { AppConfigClient, CreateExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
36
36
|
* const client = new AppConfigClient(config);
|
|
37
|
+
* const input = {
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* Description: "STRING_VALUE",
|
|
40
|
+
* Actions: { // required
|
|
41
|
+
* "<keys>": [
|
|
42
|
+
* {
|
|
43
|
+
* Name: "STRING_VALUE",
|
|
44
|
+
* Description: "STRING_VALUE",
|
|
45
|
+
* Uri: "STRING_VALUE",
|
|
46
|
+
* RoleArn: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* },
|
|
50
|
+
* Parameters: {
|
|
51
|
+
* "<keys>": {
|
|
52
|
+
* Description: "STRING_VALUE",
|
|
53
|
+
* Required: true || false,
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* Tags: {
|
|
57
|
+
* "<keys>": "STRING_VALUE",
|
|
58
|
+
* },
|
|
59
|
+
* LatestVersionNumber: Number("int"),
|
|
60
|
+
* };
|
|
37
61
|
* const command = new CreateExtensionCommand(input);
|
|
38
62
|
* const response = await client.send(command);
|
|
39
63
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface CreateHostedConfigurationVersionCommandOutput extends HostedCon
|
|
|
27
27
|
* import { AppConfigClient, CreateHostedConfigurationVersionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, CreateHostedConfigurationVersionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
32
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* Content: "BLOB_VALUE", // required
|
|
35
|
+
* ContentType: "STRING_VALUE", // required
|
|
36
|
+
* LatestVersionNumber: Number("int"),
|
|
37
|
+
* VersionLabel: "STRING_VALUE",
|
|
38
|
+
* };
|
|
30
39
|
* const command = new CreateHostedConfigurationVersionCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { AppConfigClient, DeleteApplicationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteApplicationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteApplicationCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteConfigurationProfileCommandOutput extends __MetadataBeare
|
|
|
27
27
|
* import { AppConfigClient, DeleteConfigurationProfileCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteConfigurationProfileCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
32
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteConfigurationProfileCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteDeploymentStrategyCommandOutput extends __MetadataBearer
|
|
|
27
27
|
* import { AppConfigClient, DeleteDeploymentStrategyCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteDeploymentStrategyCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteDeploymentStrategyCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteEnvironmentCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { AppConfigClient, DeleteEnvironmentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteEnvironmentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
32
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteEnvironmentCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteExtensionAssociationCommandOutput extends __MetadataBeare
|
|
|
27
27
|
* import { AppConfigClient, DeleteExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteExtensionAssociationCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteExtensionCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { AppConfigClient, DeleteExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
32
|
+
* VersionNumber: Number("int"),
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteExtensionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface DeleteHostedConfigurationVersionCommandOutput extends __Metadat
|
|
|
27
27
|
* import { AppConfigClient, DeleteHostedConfigurationVersionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, DeleteHostedConfigurationVersionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
32
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
|
+
* VersionNumber: Number("int"), // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new DeleteHostedConfigurationVersionCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetApplicationCommandOutput extends Application, __MetadataBear
|
|
|
26
26
|
* import { AppConfigClient, GetApplicationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, GetApplicationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetApplicationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -42,6 +42,13 @@ export interface GetConfigurationCommandOutput extends Configuration, __Metadata
|
|
|
42
42
|
* import { AppConfigClient, GetConfigurationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
43
43
|
* // const { AppConfigClient, GetConfigurationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
44
44
|
* const client = new AppConfigClient(config);
|
|
45
|
+
* const input = {
|
|
46
|
+
* Application: "STRING_VALUE", // required
|
|
47
|
+
* Environment: "STRING_VALUE", // required
|
|
48
|
+
* Configuration: "STRING_VALUE", // required
|
|
49
|
+
* ClientId: "STRING_VALUE", // required
|
|
50
|
+
* ClientConfigurationVersion: "STRING_VALUE",
|
|
51
|
+
* };
|
|
45
52
|
* const command = new GetConfigurationCommand(input);
|
|
46
53
|
* const response = await client.send(command);
|
|
47
54
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetConfigurationProfileCommandOutput extends ConfigurationProfi
|
|
|
26
26
|
* import { AppConfigClient, GetConfigurationProfileCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, GetConfigurationProfileCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetConfigurationProfileCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer
|
|
|
26
26
|
* import { AppConfigClient, GetDeploymentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, GetDeploymentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
32
|
+
* DeploymentNumber: Number("int"), // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetDeploymentCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -30,6 +30,9 @@ export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy,
|
|
|
30
30
|
* import { AppConfigClient, GetDeploymentStrategyCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
31
31
|
* // const { AppConfigClient, GetDeploymentStrategyCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
32
32
|
* const client = new AppConfigClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
33
36
|
* const command = new GetDeploymentStrategyCommand(input);
|
|
34
37
|
* const response = await client.send(command);
|
|
35
38
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface GetEnvironmentCommandOutput extends Environment, __MetadataBear
|
|
|
31
31
|
* import { AppConfigClient, GetEnvironmentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
32
32
|
* // const { AppConfigClient, GetEnvironmentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
33
33
|
* const client = new AppConfigClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
36
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new GetEnvironmentCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface GetExtensionAssociationCommandOutput extends ExtensionAssociati
|
|
|
29
29
|
* import { AppConfigClient, GetExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, GetExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new GetExtensionAssociationCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetExtensionCommandOutput extends Extension, __MetadataBearer {
|
|
|
26
26
|
* import { AppConfigClient, GetExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, GetExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* VersionNumber: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetExtensionCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetHostedConfigurationVersionCommandOutput extends HostedConfig
|
|
|
26
26
|
* import { AppConfigClient, GetHostedConfigurationVersionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, GetHostedConfigurationVersionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
|
+
* VersionNumber: Number("int"), // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetHostedConfigurationVersionCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListApplicationsCommandOutput extends Applications, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, ListApplicationsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListApplicationsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListApplicationsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
|
|
|
26
26
|
* import { AppConfigClient, ListConfigurationProfilesCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListConfigurationProfilesCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* Type: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListConfigurationProfilesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
|
|
|
26
26
|
* import { AppConfigClient, ListDeploymentStrategiesCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListDeploymentStrategiesCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListDeploymentStrategiesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
|
|
|
26
26
|
* import { AppConfigClient, ListDeploymentsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListDeploymentsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListDeploymentsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, ListEnvironmentsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListEnvironmentsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListEnvironmentsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -29,6 +29,13 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia
|
|
|
29
29
|
* import { AppConfigClient, ListExtensionAssociationsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, ListExtensionAssociationsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* ResourceIdentifier: "STRING_VALUE",
|
|
34
|
+
* ExtensionIdentifier: "STRING_VALUE",
|
|
35
|
+
* ExtensionVersionNumber: Number("int"),
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
32
39
|
* const command = new ListExtensionAssociationsCommand(input);
|
|
33
40
|
* const response = await client.send(command);
|
|
34
41
|
* ```
|
|
@@ -29,6 +29,11 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare
|
|
|
29
29
|
* import { AppConfigClient, ListExtensionsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, ListExtensionsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* Name: "STRING_VALUE",
|
|
36
|
+
* };
|
|
32
37
|
* const command = new ListExtensionsCommand(input);
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
|
|
|
27
27
|
* import { AppConfigClient, ListHostedConfigurationVersionsCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
28
28
|
* // const { AppConfigClient, ListHostedConfigurationVersionsCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
29
29
|
* const client = new AppConfigClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
32
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* VersionLabel: "STRING_VALUE",
|
|
36
|
+
* };
|
|
30
37
|
* const command = new ListHostedConfigurationVersionsCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
|
|
|
26
26
|
* import { AppConfigClient, ListTagsForResourceCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ListTagsForResourceCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
|
|
|
26
26
|
* import { AppConfigClient, StartDeploymentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, StartDeploymentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
32
|
+
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
33
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
34
|
+
* ConfigurationVersion: "STRING_VALUE", // required
|
|
35
|
+
* Description: "STRING_VALUE",
|
|
36
|
+
* Tags: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* KmsKeyIdentifier: "STRING_VALUE",
|
|
40
|
+
* };
|
|
29
41
|
* const command = new StartDeploymentCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -28,6 +28,11 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
|
|
|
28
28
|
* import { AppConfigClient, StopDeploymentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
29
29
|
* // const { AppConfigClient, StopDeploymentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
30
30
|
* const client = new AppConfigClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
33
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
34
|
+
* DeploymentNumber: Number("int"), // required
|
|
35
|
+
* };
|
|
31
36
|
* const command = new StopDeploymentCommand(input);
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { AppConfigClient, TagResourceCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
29
29
|
* // const { AppConfigClient, TagResourceCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
30
30
|
* const client = new AppConfigClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
+
* Tags: { // required
|
|
34
|
+
* "<keys>": "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* };
|
|
31
37
|
* const command = new TagResourceCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { AppConfigClient, UntagResourceCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UntagResourceCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, UpdateApplicationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateApplicationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* Name: "STRING_VALUE",
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpdateApplicationCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
|
|
|
26
26
|
* import { AppConfigClient, UpdateConfigurationProfileCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateConfigurationProfileCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
|
+
* Name: "STRING_VALUE",
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* RetrievalRoleArn: "STRING_VALUE",
|
|
35
|
+
* Validators: [
|
|
36
|
+
* {
|
|
37
|
+
* Type: "JSON_SCHEMA" || "LAMBDA", // required
|
|
38
|
+
* Content: "STRING_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
29
42
|
* const command = new UpdateConfigurationProfileCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
26
26
|
* import { AppConfigClient, UpdateDeploymentStrategyCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateDeploymentStrategyCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* DeploymentDurationInMinutes: Number("int"),
|
|
33
|
+
* FinalBakeTimeInMinutes: Number("int"),
|
|
34
|
+
* GrowthFactor: Number("float"),
|
|
35
|
+
* GrowthType: "LINEAR" || "EXPONENTIAL",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new UpdateDeploymentStrategyCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
|
|
|
26
26
|
* import { AppConfigClient, UpdateEnvironmentCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, UpdateEnvironmentCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* EnvironmentId: "STRING_VALUE", // required
|
|
32
|
+
* Name: "STRING_VALUE",
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* Monitors: [
|
|
35
|
+
* {
|
|
36
|
+
* AlarmArn: "STRING_VALUE", // required
|
|
37
|
+
* AlarmRoleArn: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
29
41
|
* const command = new UpdateEnvironmentCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -29,6 +29,12 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
|
|
|
29
29
|
* import { AppConfigClient, UpdateExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, UpdateExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
34
|
+
* Parameters: {
|
|
35
|
+
* "<keys>": "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* };
|
|
32
38
|
* const command = new UpdateExtensionAssociationCommand(input);
|
|
33
39
|
* const response = await client.send(command);
|
|
34
40
|
* ```
|
|
@@ -29,6 +29,27 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
29
29
|
* import { AppConfigClient, UpdateExtensionCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
30
30
|
* // const { AppConfigClient, UpdateExtensionCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
31
31
|
* const client = new AppConfigClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* Description: "STRING_VALUE",
|
|
35
|
+
* Actions: {
|
|
36
|
+
* "<keys>": [
|
|
37
|
+
* {
|
|
38
|
+
* Name: "STRING_VALUE",
|
|
39
|
+
* Description: "STRING_VALUE",
|
|
40
|
+
* Uri: "STRING_VALUE",
|
|
41
|
+
* RoleArn: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* Parameters: {
|
|
46
|
+
* "<keys>": {
|
|
47
|
+
* Description: "STRING_VALUE",
|
|
48
|
+
* Required: true || false,
|
|
49
|
+
* },
|
|
50
|
+
* },
|
|
51
|
+
* VersionNumber: Number("int"),
|
|
52
|
+
* };
|
|
32
53
|
* const command = new UpdateExtensionCommand(input);
|
|
33
54
|
* const response = await client.send(command);
|
|
34
55
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { AppConfigClient, ValidateConfigurationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
|
|
27
27
|
* // const { AppConfigClient, ValidateConfigurationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
|
|
28
28
|
* const client = new AppConfigClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
31
|
+
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
|
+
* ConfigurationVersion: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ValidateConfigurationCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfig",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.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,23 +21,23 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.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",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|