@aws-sdk/client-codestar-connections 3.952.0 → 3.954.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-cjs/index.js +417 -268
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateConnectionCommand.js +2 -2
- package/dist-es/commands/CreateHostCommand.js +2 -2
- package/dist-es/commands/CreateRepositoryLinkCommand.js +2 -2
- package/dist-es/commands/CreateSyncConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteHostCommand.js +2 -2
- package/dist-es/commands/DeleteRepositoryLinkCommand.js +2 -2
- package/dist-es/commands/DeleteSyncConfigurationCommand.js +2 -2
- package/dist-es/commands/GetConnectionCommand.js +2 -2
- package/dist-es/commands/GetHostCommand.js +2 -2
- package/dist-es/commands/GetRepositoryLinkCommand.js +2 -2
- package/dist-es/commands/GetRepositorySyncStatusCommand.js +2 -2
- package/dist-es/commands/GetResourceSyncStatusCommand.js +2 -2
- package/dist-es/commands/GetSyncBlockerSummaryCommand.js +2 -2
- package/dist-es/commands/GetSyncConfigurationCommand.js +2 -2
- package/dist-es/commands/ListConnectionsCommand.js +2 -2
- package/dist-es/commands/ListHostsCommand.js +2 -2
- package/dist-es/commands/ListRepositoryLinksCommand.js +2 -2
- package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +2 -2
- package/dist-es/commands/ListSyncConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateHostCommand.js +2 -2
- package/dist-es/commands/UpdateRepositoryLinkCommand.js +2 -2
- package/dist-es/commands/UpdateSyncBlockerCommand.js +2 -2
- package/dist-es/commands/UpdateSyncConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +229 -194
- package/dist-types/CodeStarConnectionsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +115 -128
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +114 -128
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.codestarconnections",
|
|
32
|
+
version: "2019-12-01",
|
|
33
|
+
serviceTarget: "CodeStar_connections_20191201",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "CodeStar connections",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "CreateConnection", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "CreateConnectionCommand")
|
|
14
|
-
.sc(CreateConnection)
|
|
14
|
+
.sc(CreateConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateHost } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateHost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateHostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateHostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "CreateHost", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "CreateHostCommand")
|
|
14
|
-
.sc(CreateHost)
|
|
14
|
+
.sc(CreateHost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRepositoryLink } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRepositoryLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRepositoryLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRepositoryLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "CreateRepositoryLink", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "CreateRepositoryLinkCommand")
|
|
14
|
-
.sc(CreateRepositoryLink)
|
|
14
|
+
.sc(CreateRepositoryLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSyncConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSyncConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSyncConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSyncConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "CreateSyncConfiguration", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "CreateSyncConfigurationCommand")
|
|
14
|
-
.sc(CreateSyncConfiguration)
|
|
14
|
+
.sc(CreateSyncConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "DeleteConnection", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "DeleteConnectionCommand")
|
|
14
|
-
.sc(DeleteConnection)
|
|
14
|
+
.sc(DeleteConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteHost } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteHost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteHostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteHostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "DeleteHost", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "DeleteHostCommand")
|
|
14
|
-
.sc(DeleteHost)
|
|
14
|
+
.sc(DeleteHost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRepositoryLink } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRepositoryLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRepositoryLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRepositoryLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "DeleteRepositoryLink", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "DeleteRepositoryLinkCommand")
|
|
14
|
-
.sc(DeleteRepositoryLink)
|
|
14
|
+
.sc(DeleteRepositoryLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSyncConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSyncConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSyncConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSyncConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "DeleteSyncConfiguration", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "DeleteSyncConfigurationCommand")
|
|
14
|
-
.sc(DeleteSyncConfiguration)
|
|
14
|
+
.sc(DeleteSyncConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { GetConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetConnection", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetConnectionCommand")
|
|
14
|
-
.sc(GetConnection)
|
|
14
|
+
.sc(GetConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetHost } from "../schemas/schemas_0";
|
|
4
|
+
import { GetHost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetHostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetHostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetHost", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetHostCommand")
|
|
14
|
-
.sc(GetHost)
|
|
14
|
+
.sc(GetHost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRepositoryLink } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRepositoryLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRepositoryLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRepositoryLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetRepositoryLink", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetRepositoryLinkCommand")
|
|
14
|
-
.sc(GetRepositoryLink)
|
|
14
|
+
.sc(GetRepositoryLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRepositorySyncStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRepositorySyncStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRepositorySyncStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRepositorySyncStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetRepositorySyncStatus", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetRepositorySyncStatusCommand")
|
|
14
|
-
.sc(GetRepositorySyncStatus)
|
|
14
|
+
.sc(GetRepositorySyncStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourceSyncStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourceSyncStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourceSyncStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourceSyncStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetResourceSyncStatus", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetResourceSyncStatusCommand")
|
|
14
|
-
.sc(GetResourceSyncStatus)
|
|
14
|
+
.sc(GetResourceSyncStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSyncBlockerSummary } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSyncBlockerSummary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSyncBlockerSummaryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSyncBlockerSummaryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetSyncBlockerSummary", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetSyncBlockerSummaryCommand")
|
|
14
|
-
.sc(GetSyncBlockerSummary)
|
|
14
|
+
.sc(GetSyncBlockerSummary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSyncConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSyncConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSyncConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSyncConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "GetSyncConfiguration", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "GetSyncConfigurationCommand")
|
|
14
|
-
.sc(GetSyncConfiguration)
|
|
14
|
+
.sc(GetSyncConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConnectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "ListConnections", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "ListConnectionsCommand")
|
|
14
|
-
.sc(ListConnections)
|
|
14
|
+
.sc(ListConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListHosts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListHosts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListHostsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListHostsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "ListHosts", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "ListHostsCommand")
|
|
14
|
-
.sc(ListHosts)
|
|
14
|
+
.sc(ListHosts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRepositoryLinks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRepositoryLinks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRepositoryLinksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRepositoryLinksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "ListRepositoryLinks", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "ListRepositoryLinksCommand")
|
|
14
|
-
.sc(ListRepositoryLinks)
|
|
14
|
+
.sc(ListRepositoryLinks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRepositorySyncDefinitions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRepositorySyncDefinitions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRepositorySyncDefinitionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRepositorySyncDefinitionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "ListRepositorySyncDefinitions", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "ListRepositorySyncDefinitionsCommand")
|
|
14
|
-
.sc(ListRepositorySyncDefinitions)
|
|
14
|
+
.sc(ListRepositorySyncDefinitions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSyncConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSyncConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSyncConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSyncConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "ListSyncConfigurations", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "ListSyncConfigurationsCommand")
|
|
14
|
-
.sc(ListSyncConfigurations)
|
|
14
|
+
.sc(ListSyncConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "ListTagsForResource", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "TagResource", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "UntagResource", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateHost } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateHost$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateHostCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateHostCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "UpdateHost", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "UpdateHostCommand")
|
|
14
|
-
.sc(UpdateHost)
|
|
14
|
+
.sc(UpdateHost$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateRepositoryLink } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRepositoryLink$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRepositoryLinkCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRepositoryLinkCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "UpdateRepositoryLink", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "UpdateRepositoryLinkCommand")
|
|
14
|
-
.sc(UpdateRepositoryLink)
|
|
14
|
+
.sc(UpdateRepositoryLink$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSyncBlocker } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSyncBlocker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSyncBlockerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSyncBlockerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "UpdateSyncBlocker", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "UpdateSyncBlockerCommand")
|
|
14
|
-
.sc(UpdateSyncBlocker)
|
|
14
|
+
.sc(UpdateSyncBlocker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateSyncConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSyncConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSyncConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSyncConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeStar_connections_20191201", "UpdateSyncConfiguration", {})
|
|
13
13
|
.n("CodeStarConnectionsClient", "UpdateSyncConfigurationCommand")
|
|
14
|
-
.sc(UpdateSyncConfiguration)
|
|
14
|
+
.sc(UpdateSyncConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.codestarconnections",
|
|
29
|
+
version: "2019-12-01",
|
|
30
|
+
serviceTarget: "CodeStar_connections_20191201",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "CodeStar connections",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|