@aws-sdk/client-codestar-connections 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/CreateConnectionCommand.d.ts +3 -3
- package/dist-types/commands/CreateHostCommand.d.ts +6 -6
- package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHostCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GetHostCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListHostsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHostCommand.d.ts +4 -4
- package/package.json +3 -3
|
@@ -28,11 +28,11 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
|
|
|
28
28
|
* import { CodeStarConnectionsClient, CreateConnectionCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
29
29
|
* // const { CodeStarConnectionsClient, CreateConnectionCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
30
30
|
* const client = new CodeStarConnectionsClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateConnectionInput
|
|
32
32
|
* ProviderType: "STRING_VALUE",
|
|
33
33
|
* ConnectionName: "STRING_VALUE", // required
|
|
34
|
-
* Tags: [
|
|
35
|
-
* {
|
|
34
|
+
* Tags: [ // TagList
|
|
35
|
+
* { // Tag
|
|
36
36
|
* Key: "STRING_VALUE", // required
|
|
37
37
|
* Value: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
@@ -33,22 +33,22 @@ export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBea
|
|
|
33
33
|
* import { CodeStarConnectionsClient, CreateHostCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
34
34
|
* // const { CodeStarConnectionsClient, CreateHostCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
35
35
|
* const client = new CodeStarConnectionsClient(config);
|
|
36
|
-
* const input = {
|
|
36
|
+
* const input = { // CreateHostInput
|
|
37
37
|
* Name: "STRING_VALUE", // required
|
|
38
38
|
* ProviderType: "STRING_VALUE", // required
|
|
39
39
|
* ProviderEndpoint: "STRING_VALUE", // required
|
|
40
|
-
* VpcConfiguration: {
|
|
40
|
+
* VpcConfiguration: { // VpcConfiguration
|
|
41
41
|
* VpcId: "STRING_VALUE", // required
|
|
42
|
-
* SubnetIds: [ // required
|
|
42
|
+
* SubnetIds: [ // SubnetIds // required
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
|
-
* SecurityGroupIds: [ // required
|
|
45
|
+
* SecurityGroupIds: [ // SecurityGroupIds // required
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* TlsCertificate: "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
|
-
* Tags: [
|
|
51
|
-
* {
|
|
50
|
+
* Tags: [ // TagList
|
|
51
|
+
* { // Tag
|
|
52
52
|
* Key: "STRING_VALUE", // required
|
|
53
53
|
* Value: "STRING_VALUE", // required
|
|
54
54
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, _
|
|
|
26
26
|
* import { CodeStarConnectionsClient, DeleteConnectionCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, DeleteConnectionCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteConnectionInput
|
|
30
30
|
* ConnectionArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteConnectionCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBea
|
|
|
29
29
|
* import { CodeStarConnectionsClient, DeleteHostCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
30
30
|
* // const { CodeStarConnectionsClient, DeleteHostCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
31
31
|
* const client = new CodeStarConnectionsClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteHostInput
|
|
33
33
|
* HostArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteHostCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
|
|
|
26
26
|
* import { CodeStarConnectionsClient, GetConnectionCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, GetConnectionCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetConnectionInput
|
|
30
30
|
* ConnectionArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetConnectionCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {
|
|
|
27
27
|
* import { CodeStarConnectionsClient, GetHostCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
28
28
|
* // const { CodeStarConnectionsClient, GetHostCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
29
29
|
* const client = new CodeStarConnectionsClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetHostInput
|
|
31
31
|
* HostArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetHostCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
|
|
|
26
26
|
* import { CodeStarConnectionsClient, ListConnectionsCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, ListConnectionsCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListConnectionsInput
|
|
30
30
|
* ProviderTypeFilter: "STRING_VALUE",
|
|
31
31
|
* HostArnFilter: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBeare
|
|
|
26
26
|
* import { CodeStarConnectionsClient, ListHostsCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, ListHostsCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListHostsInput
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
26
26
|
* import { CodeStarConnectionsClient, ListTagsForResourceCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,10 +27,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
27
27
|
* import { CodeStarConnectionsClient, TagResourceCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
28
28
|
* // const { CodeStarConnectionsClient, TagResourceCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
29
29
|
* const client = new CodeStarConnectionsClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // TagResourceInput
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
-
* Tags: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Tags: [ // TagList // required
|
|
33
|
+
* { // Tag
|
|
34
34
|
* Key: "STRING_VALUE", // required
|
|
35
35
|
* Value: "STRING_VALUE", // required
|
|
36
36
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { CodeStarConnectionsClient, UntagResourceCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, UntagResourceCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,15 +26,15 @@ export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBea
|
|
|
26
26
|
* import { CodeStarConnectionsClient, UpdateHostCommand } from "@aws-sdk/client-codestar-connections"; // ES Modules import
|
|
27
27
|
* // const { CodeStarConnectionsClient, UpdateHostCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
28
28
|
* const client = new CodeStarConnectionsClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateHostInput
|
|
30
30
|
* HostArn: "STRING_VALUE", // required
|
|
31
31
|
* ProviderEndpoint: "STRING_VALUE",
|
|
32
|
-
* VpcConfiguration: {
|
|
32
|
+
* VpcConfiguration: { // VpcConfiguration
|
|
33
33
|
* VpcId: "STRING_VALUE", // required
|
|
34
|
-
* SubnetIds: [ // required
|
|
34
|
+
* SubnetIds: [ // SubnetIds // required
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* SecurityGroupIds: [ // required
|
|
37
|
+
* SecurityGroupIds: [ // SecurityGroupIds // required
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* TlsCertificate: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-connections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Connections 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",
|