@aws-sdk/client-codedeploy 3.296.0 → 3.297.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/CodeDeploy.d.ts +48 -0
- package/dist-types/CodeDeployClient.d.ts +24 -4
- package/dist-types/commands/AddTagsToOnPremisesInstancesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetApplicationRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetDeploymentGroupsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetOnPremisesInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ContinueDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDeploymentConfigCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDeploymentGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGitHubAccountTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcesByExternalIdCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterOnPremisesInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationRevisionCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentConfigCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentTargetCommand.d.ts +16 -0
- package/dist-types/commands/GetOnPremisesInstanceCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationRevisionsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentConfigsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentTargetsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListGitHubAccountTokenNamesCommand.d.ts +16 -0
- package/dist-types/commands/ListOnPremisesInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +16 -0
- package/dist-types/commands/RegisterApplicationRevisionCommand.d.ts +16 -0
- package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromOnPremisesInstancesCommand.d.ts +16 -0
- package/dist-types/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +16 -0
- package/dist-types/commands/StopDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +16 -0
- package/dist-types/models/CodeDeployServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +382 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationRevisionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentConfigsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationRevisionsCommandInput, ListApplicationRevisionsCommandOutput } from "../commands/ListApplicationRevisionsCommand";
|
|
3
3
|
import { CodeDeployPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplicationRevisions(config: CodeDeployPaginationConfiguration, input: ListApplicationRevisionsCommandInput, ...additionalArguments: any): Paginator<ListApplicationRevisionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
3
3
|
import { CodeDeployPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplications(config: CodeDeployPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDeploymentConfigsCommandInput, ListDeploymentConfigsCommandOutput } from "../commands/ListDeploymentConfigsCommand";
|
|
3
3
|
import { CodeDeployPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDeploymentConfigs(config: CodeDeployPaginationConfiguration, input: ListDeploymentConfigsCommandInput, ...additionalArguments: any): Paginator<ListDeploymentConfigsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDeploymentGroupsCommandInput, ListDeploymentGroupsCommandOutput } from "../commands/ListDeploymentGroupsCommand";
|
|
3
3
|
import { CodeDeployPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDeploymentGroups(config: CodeDeployPaginationConfiguration, input: ListDeploymentGroupsCommandInput, ...additionalArguments: any): Paginator<ListDeploymentGroupsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDeploymentInstancesCommandInput, ListDeploymentInstancesCommandOutput } from "../commands/ListDeploymentInstancesCommand";
|
|
3
3
|
import { CodeDeployPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDeploymentInstances(config: CodeDeployPaginationConfiguration, input: ListDeploymentInstancesCommandInput, ...additionalArguments: any): Paginator<ListDeploymentInstancesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
|
|
3
3
|
import { CodeDeployPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDeployments(config: CodeDeployPaginationConfiguration, input: ListDeploymentsCommandInput, ...additionalArguments: any): Paginator<ListDeploymentsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codedeploy",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codedeploy Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|