@aws-sdk/client-appconfig 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/CreateApplicationCommand.d.ts +2 -2
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +4 -4
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +2 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +4 -4
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +3 -3
- package/dist-types/commands/CreateExtensionCommand.d.ts +7 -7
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExtensionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +1 -1
- package/dist-types/commands/GetExtensionCommand.d.ts +1 -1
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListExtensionsCommand.d.ts +1 -1
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartDeploymentCommand.d.ts +2 -2
- package/dist-types/commands/StopDeploymentCommand.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/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +3 -3
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateExtensionCommand.d.ts +6 -6
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -30,10 +30,10 @@ 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 = {
|
|
33
|
+
* const input = { // CreateApplicationRequest
|
|
34
34
|
* Name: "STRING_VALUE", // required
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
|
-
* Tags: {
|
|
36
|
+
* Tags: { // TagMap
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* };
|
|
@@ -65,19 +65,19 @@ 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 = {
|
|
68
|
+
* const input = { // CreateConfigurationProfileRequest
|
|
69
69
|
* ApplicationId: "STRING_VALUE", // required
|
|
70
70
|
* Name: "STRING_VALUE", // required
|
|
71
71
|
* Description: "STRING_VALUE",
|
|
72
72
|
* LocationUri: "STRING_VALUE", // required
|
|
73
73
|
* RetrievalRoleArn: "STRING_VALUE",
|
|
74
|
-
* Validators: [
|
|
75
|
-
* {
|
|
74
|
+
* Validators: [ // ValidatorList
|
|
75
|
+
* { // Validator
|
|
76
76
|
* Type: "JSON_SCHEMA" || "LAMBDA", // required
|
|
77
77
|
* Content: "STRING_VALUE", // required
|
|
78
78
|
* },
|
|
79
79
|
* ],
|
|
80
|
-
* Tags: {
|
|
80
|
+
* Tags: { // TagMap
|
|
81
81
|
* "<keys>": "STRING_VALUE",
|
|
82
82
|
* },
|
|
83
83
|
* Type: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // CreateDeploymentStrategyRequest
|
|
33
33
|
* Name: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
35
|
* DeploymentDurationInMinutes: Number("int"), // required
|
|
@@ -37,7 +37,7 @@ export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrateg
|
|
|
37
37
|
* GrowthFactor: Number("float"), // required
|
|
38
38
|
* GrowthType: "LINEAR" || "EXPONENTIAL",
|
|
39
39
|
* ReplicateTo: "NONE" || "SSM_DOCUMENT",
|
|
40
|
-
* Tags: {
|
|
40
|
+
* Tags: { // TagMap
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
43
|
* };
|
|
@@ -33,17 +33,17 @@ 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 = {
|
|
36
|
+
* const input = { // CreateEnvironmentRequest
|
|
37
37
|
* ApplicationId: "STRING_VALUE", // required
|
|
38
38
|
* Name: "STRING_VALUE", // required
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
|
-
* Monitors: [
|
|
41
|
-
* {
|
|
40
|
+
* Monitors: [ // MonitorList
|
|
41
|
+
* { // Monitor
|
|
42
42
|
* AlarmArn: "STRING_VALUE", // required
|
|
43
43
|
* AlarmRoleArn: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* ],
|
|
46
|
-
* Tags: {
|
|
46
|
+
* Tags: { // TagMap
|
|
47
47
|
* "<keys>": "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* };
|
|
@@ -38,14 +38,14 @@ 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 = {
|
|
41
|
+
* const input = { // CreateExtensionAssociationRequest
|
|
42
42
|
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
43
43
|
* ExtensionVersionNumber: Number("int"),
|
|
44
44
|
* ResourceIdentifier: "STRING_VALUE", // required
|
|
45
|
-
* Parameters: {
|
|
45
|
+
* Parameters: { // ParameterValueMap
|
|
46
46
|
* "<keys>": "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
|
-
* Tags: {
|
|
48
|
+
* Tags: { // TagMap
|
|
49
49
|
* "<keys>": "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
51
|
* };
|
|
@@ -34,12 +34,12 @@ 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 = {
|
|
37
|
+
* const input = { // CreateExtensionRequest
|
|
38
38
|
* Name: "STRING_VALUE", // required
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
|
-
* Actions: { // required
|
|
41
|
-
* "<keys>": [
|
|
42
|
-
* {
|
|
40
|
+
* Actions: { // ActionsMap // required
|
|
41
|
+
* "<keys>": [ // ActionList
|
|
42
|
+
* { // Action
|
|
43
43
|
* Name: "STRING_VALUE",
|
|
44
44
|
* Description: "STRING_VALUE",
|
|
45
45
|
* Uri: "STRING_VALUE",
|
|
@@ -47,13 +47,13 @@ export interface CreateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
47
47
|
* },
|
|
48
48
|
* ],
|
|
49
49
|
* },
|
|
50
|
-
* Parameters: {
|
|
51
|
-
* "<keys>": {
|
|
50
|
+
* Parameters: { // ParameterMap
|
|
51
|
+
* "<keys>": { // Parameter
|
|
52
52
|
* Description: "STRING_VALUE",
|
|
53
53
|
* Required: true || false,
|
|
54
54
|
* },
|
|
55
55
|
* },
|
|
56
|
-
* Tags: {
|
|
56
|
+
* Tags: { // TagMap
|
|
57
57
|
* "<keys>": "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
59
|
* LatestVersionNumber: Number("int"),
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // CreateHostedConfigurationVersionRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteApplicationRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteApplicationCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteConfigurationProfileRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteDeploymentStrategyRequest
|
|
31
31
|
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteDeploymentStrategyCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteEnvironmentRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* EnvironmentId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteExtensionAssociationRequest
|
|
31
31
|
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteExtensionAssociationCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteExtensionRequest
|
|
31
31
|
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
32
32
|
* VersionNumber: Number("int"),
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteHostedConfigurationVersionRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
33
|
* VersionNumber: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetApplicationRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetApplicationCommand(input);
|
|
@@ -42,7 +42,7 @@ 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 = {
|
|
45
|
+
* const input = { // GetConfigurationRequest
|
|
46
46
|
* Application: "STRING_VALUE", // required
|
|
47
47
|
* Environment: "STRING_VALUE", // required
|
|
48
48
|
* Configuration: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetConfigurationProfileRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetDeploymentRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* DeploymentNumber: Number("int"), // required
|
|
@@ -30,7 +30,7 @@ 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 = {
|
|
33
|
+
* const input = { // GetDeploymentStrategyRequest
|
|
34
34
|
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetDeploymentStrategyCommand(input);
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // GetEnvironmentRequest
|
|
35
35
|
* ApplicationId: "STRING_VALUE", // required
|
|
36
36
|
* EnvironmentId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // GetExtensionAssociationRequest
|
|
33
33
|
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetExtensionAssociationCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetExtensionRequest
|
|
30
30
|
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
31
31
|
* VersionNumber: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetHostedConfigurationVersionRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* VersionNumber: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListApplicationsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListConfigurationProfilesRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListDeploymentStrategiesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListDeploymentsRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListEnvironmentsRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // ListExtensionAssociationsRequest
|
|
33
33
|
* ResourceIdentifier: "STRING_VALUE",
|
|
34
34
|
* ExtensionIdentifier: "STRING_VALUE",
|
|
35
35
|
* ExtensionVersionNumber: Number("int"),
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // ListExtensionsRequest
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* Name: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ListHostedConfigurationVersionsRequest
|
|
31
31
|
* ApplicationId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // StartDeploymentRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
33
33
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
34
34
|
* ConfigurationVersion: "STRING_VALUE", // required
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
|
-
* Tags: {
|
|
36
|
+
* Tags: { // TagMap
|
|
37
37
|
* "<keys>": "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
39
|
* KmsKeyIdentifier: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // StopDeploymentRequest
|
|
32
32
|
* ApplicationId: "STRING_VALUE", // required
|
|
33
33
|
* EnvironmentId: "STRING_VALUE", // required
|
|
34
34
|
* DeploymentNumber: Number("int"), // required
|
|
@@ -28,9 +28,9 @@ 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 = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* ResourceArn: "STRING_VALUE", // required
|
|
33
|
-
* Tags: { // required
|
|
33
|
+
* Tags: { // TagMap // required
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateApplicationRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE",
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
@@ -26,14 +26,14 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateConfigurationProfileRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
34
|
* RetrievalRoleArn: "STRING_VALUE",
|
|
35
|
-
* Validators: [
|
|
36
|
-
* {
|
|
35
|
+
* Validators: [ // ValidatorList
|
|
36
|
+
* { // Validator
|
|
37
37
|
* Type: "JSON_SCHEMA" || "LAMBDA", // required
|
|
38
38
|
* Content: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateDeploymentStrategyRequest
|
|
30
30
|
* DeploymentStrategyId: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* DeploymentDurationInMinutes: Number("int"),
|
|
@@ -26,13 +26,13 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateEnvironmentRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* EnvironmentId: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* Monitors: [
|
|
35
|
-
* {
|
|
34
|
+
* Monitors: [ // MonitorList
|
|
35
|
+
* { // Monitor
|
|
36
36
|
* AlarmArn: "STRING_VALUE", // required
|
|
37
37
|
* AlarmRoleArn: "STRING_VALUE",
|
|
38
38
|
* },
|
|
@@ -29,9 +29,9 @@ 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 = {
|
|
32
|
+
* const input = { // UpdateExtensionAssociationRequest
|
|
33
33
|
* ExtensionAssociationId: "STRING_VALUE", // required
|
|
34
|
-
* Parameters: {
|
|
34
|
+
* Parameters: { // ParameterValueMap
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -29,12 +29,12 @@ 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 = {
|
|
32
|
+
* const input = { // UpdateExtensionRequest
|
|
33
33
|
* ExtensionIdentifier: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* Actions: {
|
|
36
|
-
* "<keys>": [
|
|
37
|
-
* {
|
|
35
|
+
* Actions: { // ActionsMap
|
|
36
|
+
* "<keys>": [ // ActionList
|
|
37
|
+
* { // Action
|
|
38
38
|
* Name: "STRING_VALUE",
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
40
|
* Uri: "STRING_VALUE",
|
|
@@ -42,8 +42,8 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
|
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
|
-
* Parameters: {
|
|
46
|
-
* "<keys>": {
|
|
45
|
+
* Parameters: { // ParameterMap
|
|
46
|
+
* "<keys>": { // Parameter
|
|
47
47
|
* Description: "STRING_VALUE",
|
|
48
48
|
* Required: true || false,
|
|
49
49
|
* },
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ValidateConfigurationRequest
|
|
30
30
|
* ApplicationId: "STRING_VALUE", // required
|
|
31
31
|
* ConfigurationProfileId: "STRING_VALUE", // required
|
|
32
32
|
* ConfigurationVersion: "STRING_VALUE", // required
|
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.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",
|