@aws-sdk/client-codedeploy 3.408.0 → 3.410.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.
Files changed (29) hide show
  1. package/dist-cjs/endpoint/ruleset.js +3 -3
  2. package/dist-cjs/runtimeExtensions.js +3 -0
  3. package/dist-es/endpoint/ruleset.js +3 -3
  4. package/dist-es/runtimeExtensions.js +3 -0
  5. package/dist-types/CodeDeploy.d.ts +25 -25
  6. package/dist-types/CodeDeployClient.d.ts +25 -25
  7. package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +2 -2
  8. package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +9 -9
  9. package/dist-types/commands/CreateDeploymentCommand.d.ts +11 -11
  10. package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +6 -6
  11. package/dist-types/commands/DeleteDeploymentConfigCommand.d.ts +2 -2
  12. package/dist-types/commands/GetDeploymentCommand.d.ts +2 -2
  13. package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +2 -2
  14. package/dist-types/commands/ListOnPremisesInstancesCommand.d.ts +1 -1
  15. package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +2 -2
  16. package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +6 -6
  17. package/dist-types/extensionConfiguration.d.ts +2 -1
  18. package/dist-types/index.d.ts +25 -25
  19. package/dist-types/models/models_0.d.ts +210 -218
  20. package/dist-types/runtimeConfig.browser.d.ts +4 -1
  21. package/dist-types/runtimeConfig.d.ts +4 -1
  22. package/dist-types/runtimeConfig.native.d.ts +4 -1
  23. package/dist-types/runtimeExtensions.d.ts +1 -1
  24. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -1
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -1
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
  28. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  29. package/package.json +29 -29
@@ -3,32 +3,32 @@
3
3
  * to Amazon EC2 instances, on-premises instances running in your own facility,
4
4
  * serverless Lambda functions, or applications in an Amazon ECS
5
5
  * service.</p>
6
- * <p>You can deploy a nearly unlimited variety of application content, such as an updated
6
+ * <p>You can deploy a nearly unlimited variety of application content, such as an updated
7
7
  * Lambda function, updated applications in an Amazon ECS service,
8
8
  * code, web and configuration files, executables, packages, scripts, multimedia files, and
9
9
  * so on. CodeDeploy can deploy application content stored in Amazon S3
10
10
  * buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes
11
11
  * to your existing code before you can use CodeDeploy.</p>
12
- * <p>CodeDeploy makes it easier for you to rapidly release new features, helps
12
+ * <p>CodeDeploy makes it easier for you to rapidly release new features, helps
13
13
  * you avoid downtime during application deployment, and handles the complexity of updating
14
14
  * your applications, without many of the risks associated with error-prone manual
15
15
  * deployments.</p>
16
- * <p>
16
+ * <p>
17
17
  * <b>CodeDeploy Components</b>
18
- * </p>
19
- * <p>Use the information in this guide to help you work with the following CodeDeploy components:</p>
20
- * <ul>
18
+ * </p>
19
+ * <p>Use the information in this guide to help you work with the following CodeDeploy components:</p>
20
+ * <ul>
21
21
  * <li>
22
- * <p>
23
- * <b>Application</b>: A name that uniquely identifies
22
+ * <p>
23
+ * <b>Application</b>: A name that uniquely identifies
24
24
  * the application you want to deploy. CodeDeploy uses this name, which
25
25
  * functions as a container, to ensure the correct combination of revision,
26
26
  * deployment configuration, and deployment group are referenced during a
27
27
  * deployment.</p>
28
28
  * </li>
29
29
  * <li>
30
- * <p>
31
- * <b>Deployment group</b>: A set of individual
30
+ * <p>
31
+ * <b>Deployment group</b>: A set of individual
32
32
  * instances, CodeDeploy
33
33
  * Lambda deployment configuration settings, or an Amazon ECS
34
34
  * service and network details. A Lambda deployment group specifies how
@@ -38,20 +38,20 @@
38
38
  * settings.</p>
39
39
  * </li>
40
40
  * <li>
41
- * <p>
42
- * <b>Deployment configuration</b>: A set of deployment
41
+ * <p>
42
+ * <b>Deployment configuration</b>: A set of deployment
43
43
  * rules and deployment success and failure conditions used by CodeDeploy during a deployment.</p>
44
44
  * </li>
45
45
  * <li>
46
- * <p>
47
- * <b>Deployment</b>: The process and the components used
46
+ * <p>
47
+ * <b>Deployment</b>: The process and the components used
48
48
  * when updating a Lambda function, a containerized application in an
49
49
  * Amazon ECS service, or of installing content on one or more
50
50
  * instances. </p>
51
51
  * </li>
52
52
  * <li>
53
- * <p>
54
- * <b>Application revisions</b>: For an Lambda deployment, this is an AppSpec file that specifies the
53
+ * <p>
54
+ * <b>Application revisions</b>: For an Lambda deployment, this is an AppSpec file that specifies the
55
55
  * Lambda function to be updated and one or more functions to
56
56
  * validate deployment lifecycle events. For an Amazon ECS deployment, this
57
57
  * is an AppSpec file that specifies the Amazon ECS task definition,
@@ -63,33 +63,33 @@
63
63
  * identified by its commit ID.</p>
64
64
  * </li>
65
65
  * </ul>
66
- * <p>This guide also contains information to help you get details about the instances in
66
+ * <p>This guide also contains information to help you get details about the instances in
67
67
  * your deployments, to make on-premises instances available for CodeDeploy
68
68
  * deployments, to get details about a Lambda function deployment, and to get
69
69
  * details about Amazon ECS service deployments.</p>
70
- * <p>
70
+ * <p>
71
71
  * <b>CodeDeploy Information Resources</b>
72
72
  * </p>
73
- * <ul>
73
+ * <ul>
74
74
  * <li>
75
- * <p>
75
+ * <p>
76
76
  * <a href="https://docs.aws.amazon.com/codedeploy/latest/userguide">CodeDeploy User Guide</a>
77
77
  * </p>
78
78
  * </li>
79
79
  * <li>
80
- * <p>
80
+ * <p>
81
81
  * <a href="https://docs.aws.amazon.com/codedeploy/latest/APIReference/">CodeDeploy API Reference Guide</a>
82
82
  * </p>
83
83
  * </li>
84
84
  * <li>
85
- * <p>
85
+ * <p>
86
86
  * <a href="https://docs.aws.amazon.com/cli/latest/reference/deploy/index.html">CLI Reference for CodeDeploy</a>
87
87
  * </p>
88
88
  * </li>
89
89
  * <li>
90
- * <p>
91
- * <a href="https://forums.aws.amazon.com/forum.jspa?forumID=179">CodeDeploy Developer Forum</a>
92
- * </p>
90
+ * <p>
91
+ * <a href="https://forums.aws.amazon.com/forum.jspa?forumID=179">CodeDeploy Developer Forum</a>
92
+ * </p>
93
93
  * </li>
94
94
  * </ul>
95
95
  *