@aws-sdk/client-codestar-connections 3.927.0 → 3.929.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 +888 -1106
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/CodeStarConnectionsClient.js +2 -0
- package/dist-es/commands/CreateConnectionCommand.js +3 -9
- package/dist-es/commands/CreateHostCommand.js +3 -9
- package/dist-es/commands/CreateRepositoryLinkCommand.js +3 -9
- package/dist-es/commands/CreateSyncConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteConnectionCommand.js +3 -9
- package/dist-es/commands/DeleteHostCommand.js +3 -9
- package/dist-es/commands/DeleteRepositoryLinkCommand.js +3 -9
- package/dist-es/commands/DeleteSyncConfigurationCommand.js +3 -9
- package/dist-es/commands/GetConnectionCommand.js +3 -9
- package/dist-es/commands/GetHostCommand.js +3 -9
- package/dist-es/commands/GetRepositoryLinkCommand.js +3 -9
- package/dist-es/commands/GetRepositorySyncStatusCommand.js +3 -9
- package/dist-es/commands/GetResourceSyncStatusCommand.js +3 -9
- package/dist-es/commands/GetSyncBlockerSummaryCommand.js +3 -9
- package/dist-es/commands/GetSyncConfigurationCommand.js +3 -9
- package/dist-es/commands/ListConnectionsCommand.js +3 -9
- package/dist-es/commands/ListHostsCommand.js +3 -9
- package/dist-es/commands/ListRepositoryLinksCommand.js +3 -9
- package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +3 -9
- package/dist-es/commands/ListSyncConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateHostCommand.js +3 -9
- package/dist-es/commands/UpdateRepositoryLinkCommand.js +3 -9
- package/dist-es/commands/UpdateSyncBlockerCommand.js +3 -9
- package/dist-es/commands/UpdateSyncConfigurationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +785 -0
- package/dist-types/CodeStarConnectionsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +129 -0
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -870
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -245
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -329
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
11
11
|
import { CreateHostCommandInput, CreateHostCommandOutput } from "./commands/CreateHostCommand";
|
|
@@ -168,6 +168,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
168
168
|
* Optional extensions
|
|
169
169
|
*/
|
|
170
170
|
extensions?: RuntimeExtension[];
|
|
171
|
+
/**
|
|
172
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
173
|
+
* may be overridden. A default will always be set by the client.
|
|
174
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
175
|
+
* the client.
|
|
176
|
+
* @alpha
|
|
177
|
+
*
|
|
178
|
+
*/
|
|
179
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
171
180
|
/**
|
|
172
181
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
173
182
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: CodeStarConnectionsClientConfig)
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: CodeStarConnectionsClientConfig)
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: CodeStarConnectionsClientConfig)
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: CodeStarConnectionsClientConfig)
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
3
|
+
export declare var ConcurrentModificationException: StaticErrorSchema;
|
|
4
|
+
export declare var ConditionalCheckFailedException: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
6
|
+
export declare var Connection: StaticStructureSchema;
|
|
7
|
+
export declare var CreateConnectionInput: StaticStructureSchema;
|
|
8
|
+
export declare var CreateConnectionOutput: StaticStructureSchema;
|
|
9
|
+
export declare var CreateHostInput: StaticStructureSchema;
|
|
10
|
+
export declare var CreateHostOutput: StaticStructureSchema;
|
|
11
|
+
export declare var CreateRepositoryLinkInput: StaticStructureSchema;
|
|
12
|
+
export declare var CreateRepositoryLinkOutput: StaticStructureSchema;
|
|
13
|
+
export declare var CreateSyncConfigurationInput: StaticStructureSchema;
|
|
14
|
+
export declare var CreateSyncConfigurationOutput: StaticStructureSchema;
|
|
15
|
+
export declare var DeleteConnectionInput: StaticStructureSchema;
|
|
16
|
+
export declare var DeleteConnectionOutput: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteHostInput: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteHostOutput: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteRepositoryLinkInput: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteRepositoryLinkOutput: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteSyncConfigurationInput: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteSyncConfigurationOutput: StaticStructureSchema;
|
|
23
|
+
export declare var GetConnectionInput: StaticStructureSchema;
|
|
24
|
+
export declare var GetConnectionOutput: StaticStructureSchema;
|
|
25
|
+
export declare var GetHostInput: StaticStructureSchema;
|
|
26
|
+
export declare var GetHostOutput: StaticStructureSchema;
|
|
27
|
+
export declare var GetRepositoryLinkInput: StaticStructureSchema;
|
|
28
|
+
export declare var GetRepositoryLinkOutput: StaticStructureSchema;
|
|
29
|
+
export declare var GetRepositorySyncStatusInput: StaticStructureSchema;
|
|
30
|
+
export declare var GetRepositorySyncStatusOutput: StaticStructureSchema;
|
|
31
|
+
export declare var GetResourceSyncStatusInput: StaticStructureSchema;
|
|
32
|
+
export declare var GetResourceSyncStatusOutput: StaticStructureSchema;
|
|
33
|
+
export declare var GetSyncBlockerSummaryInput: StaticStructureSchema;
|
|
34
|
+
export declare var GetSyncBlockerSummaryOutput: StaticStructureSchema;
|
|
35
|
+
export declare var GetSyncConfigurationInput: StaticStructureSchema;
|
|
36
|
+
export declare var GetSyncConfigurationOutput: StaticStructureSchema;
|
|
37
|
+
export declare var Host: StaticStructureSchema;
|
|
38
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
39
|
+
export declare var InvalidInputException: StaticErrorSchema;
|
|
40
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
41
|
+
export declare var ListConnectionsInput: StaticStructureSchema;
|
|
42
|
+
export declare var ListConnectionsOutput: StaticStructureSchema;
|
|
43
|
+
export declare var ListHostsInput: StaticStructureSchema;
|
|
44
|
+
export declare var ListHostsOutput: StaticStructureSchema;
|
|
45
|
+
export declare var ListRepositoryLinksInput: StaticStructureSchema;
|
|
46
|
+
export declare var ListRepositoryLinksOutput: StaticStructureSchema;
|
|
47
|
+
export declare var ListRepositorySyncDefinitionsInput: StaticStructureSchema;
|
|
48
|
+
export declare var ListRepositorySyncDefinitionsOutput: StaticStructureSchema;
|
|
49
|
+
export declare var ListSyncConfigurationsInput: StaticStructureSchema;
|
|
50
|
+
export declare var ListSyncConfigurationsOutput: StaticStructureSchema;
|
|
51
|
+
export declare var ListTagsForResourceInput: StaticStructureSchema;
|
|
52
|
+
export declare var ListTagsForResourceOutput: StaticStructureSchema;
|
|
53
|
+
export declare var RepositoryLinkInfo: StaticStructureSchema;
|
|
54
|
+
export declare var RepositorySyncAttempt: StaticStructureSchema;
|
|
55
|
+
export declare var RepositorySyncDefinition: StaticStructureSchema;
|
|
56
|
+
export declare var RepositorySyncEvent: StaticStructureSchema;
|
|
57
|
+
export declare var ResourceAlreadyExistsException: StaticErrorSchema;
|
|
58
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
59
|
+
export declare var ResourceSyncAttempt: StaticStructureSchema;
|
|
60
|
+
export declare var ResourceSyncEvent: StaticStructureSchema;
|
|
61
|
+
export declare var ResourceUnavailableException: StaticErrorSchema;
|
|
62
|
+
export declare var RetryLatestCommitFailedException: StaticErrorSchema;
|
|
63
|
+
export declare var Revision: StaticStructureSchema;
|
|
64
|
+
export declare var SyncBlocker: StaticStructureSchema;
|
|
65
|
+
export declare var SyncBlockerContext: StaticStructureSchema;
|
|
66
|
+
export declare var SyncBlockerDoesNotExistException: StaticErrorSchema;
|
|
67
|
+
export declare var SyncBlockerSummary: StaticStructureSchema;
|
|
68
|
+
export declare var SyncConfiguration: StaticStructureSchema;
|
|
69
|
+
export declare var SyncConfigurationStillExistsException: StaticErrorSchema;
|
|
70
|
+
export declare var Tag: StaticStructureSchema;
|
|
71
|
+
export declare var TagResourceInput: StaticStructureSchema;
|
|
72
|
+
export declare var TagResourceOutput: StaticStructureSchema;
|
|
73
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
74
|
+
export declare var UnsupportedOperationException: StaticErrorSchema;
|
|
75
|
+
export declare var UnsupportedProviderTypeException: StaticErrorSchema;
|
|
76
|
+
export declare var UntagResourceInput: StaticStructureSchema;
|
|
77
|
+
export declare var UntagResourceOutput: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateHostInput: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateHostOutput: StaticStructureSchema;
|
|
80
|
+
export declare var UpdateOutOfSyncException: StaticErrorSchema;
|
|
81
|
+
export declare var UpdateRepositoryLinkInput: StaticStructureSchema;
|
|
82
|
+
export declare var UpdateRepositoryLinkOutput: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateSyncBlockerInput: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateSyncBlockerOutput: StaticStructureSchema;
|
|
85
|
+
export declare var UpdateSyncConfigurationInput: StaticStructureSchema;
|
|
86
|
+
export declare var UpdateSyncConfigurationOutput: StaticStructureSchema;
|
|
87
|
+
export declare var VpcConfiguration: StaticStructureSchema;
|
|
88
|
+
export declare var __Unit: "unit";
|
|
89
|
+
export declare var CodeStarConnectionsServiceException: StaticErrorSchema;
|
|
90
|
+
export declare var ConnectionList: StaticListSchema;
|
|
91
|
+
export declare var HostList: StaticListSchema;
|
|
92
|
+
export declare var LatestSyncBlockerList: StaticListSchema;
|
|
93
|
+
export declare var RepositoryLinkList: StaticListSchema;
|
|
94
|
+
export declare var RepositorySyncDefinitionList: StaticListSchema;
|
|
95
|
+
export declare var RepositorySyncEventList: StaticListSchema;
|
|
96
|
+
export declare var ResourceSyncEventList: StaticListSchema;
|
|
97
|
+
export declare var SecurityGroupIds: number;
|
|
98
|
+
export declare var SubnetIds: number;
|
|
99
|
+
export declare var SyncBlockerContextList: StaticListSchema;
|
|
100
|
+
export declare var SyncConfigurationList: StaticListSchema;
|
|
101
|
+
export declare var TagKeyList: number;
|
|
102
|
+
export declare var TagList: StaticListSchema;
|
|
103
|
+
export declare var CreateConnection: StaticOperationSchema;
|
|
104
|
+
export declare var CreateHost: StaticOperationSchema;
|
|
105
|
+
export declare var CreateRepositoryLink: StaticOperationSchema;
|
|
106
|
+
export declare var CreateSyncConfiguration: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteConnection: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteHost: StaticOperationSchema;
|
|
109
|
+
export declare var DeleteRepositoryLink: StaticOperationSchema;
|
|
110
|
+
export declare var DeleteSyncConfiguration: StaticOperationSchema;
|
|
111
|
+
export declare var GetConnection: StaticOperationSchema;
|
|
112
|
+
export declare var GetHost: StaticOperationSchema;
|
|
113
|
+
export declare var GetRepositoryLink: StaticOperationSchema;
|
|
114
|
+
export declare var GetRepositorySyncStatus: StaticOperationSchema;
|
|
115
|
+
export declare var GetResourceSyncStatus: StaticOperationSchema;
|
|
116
|
+
export declare var GetSyncBlockerSummary: StaticOperationSchema;
|
|
117
|
+
export declare var GetSyncConfiguration: StaticOperationSchema;
|
|
118
|
+
export declare var ListConnections: StaticOperationSchema;
|
|
119
|
+
export declare var ListHosts: StaticOperationSchema;
|
|
120
|
+
export declare var ListRepositoryLinks: StaticOperationSchema;
|
|
121
|
+
export declare var ListRepositorySyncDefinitions: StaticOperationSchema;
|
|
122
|
+
export declare var ListSyncConfigurations: StaticOperationSchema;
|
|
123
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
124
|
+
export declare var TagResource: StaticOperationSchema;
|
|
125
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
126
|
+
export declare var UpdateHost: StaticOperationSchema;
|
|
127
|
+
export declare var UpdateRepositoryLink: StaticOperationSchema;
|
|
128
|
+
export declare var UpdateSyncBlocker: StaticOperationSchema;
|
|
129
|
+
export declare var UpdateSyncConfiguration: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -240,6 +243,7 @@ export interface ClientDefaults
|
|
|
240
243
|
retryMode?: string | __Provider<string>;
|
|
241
244
|
logger?: __Logger;
|
|
242
245
|
extensions?: RuntimeExtension[];
|
|
246
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
243
247
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
244
248
|
}
|
|
245
249
|
export type CodeStarConnectionsClientConfigType = Partial<
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
8
|
+
export declare var ConcurrentModificationException: StaticErrorSchema;
|
|
9
|
+
export declare var ConditionalCheckFailedException: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
11
|
+
export declare var Connection: StaticStructureSchema;
|
|
12
|
+
export declare var CreateConnectionInput: StaticStructureSchema;
|
|
13
|
+
export declare var CreateConnectionOutput: StaticStructureSchema;
|
|
14
|
+
export declare var CreateHostInput: StaticStructureSchema;
|
|
15
|
+
export declare var CreateHostOutput: StaticStructureSchema;
|
|
16
|
+
export declare var CreateRepositoryLinkInput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateRepositoryLinkOutput: StaticStructureSchema;
|
|
18
|
+
export declare var CreateSyncConfigurationInput: StaticStructureSchema;
|
|
19
|
+
export declare var CreateSyncConfigurationOutput: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteConnectionInput: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteConnectionOutput: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteHostInput: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteHostOutput: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteRepositoryLinkInput: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteRepositoryLinkOutput: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteSyncConfigurationInput: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteSyncConfigurationOutput: StaticStructureSchema;
|
|
28
|
+
export declare var GetConnectionInput: StaticStructureSchema;
|
|
29
|
+
export declare var GetConnectionOutput: StaticStructureSchema;
|
|
30
|
+
export declare var GetHostInput: StaticStructureSchema;
|
|
31
|
+
export declare var GetHostOutput: StaticStructureSchema;
|
|
32
|
+
export declare var GetRepositoryLinkInput: StaticStructureSchema;
|
|
33
|
+
export declare var GetRepositoryLinkOutput: StaticStructureSchema;
|
|
34
|
+
export declare var GetRepositorySyncStatusInput: StaticStructureSchema;
|
|
35
|
+
export declare var GetRepositorySyncStatusOutput: StaticStructureSchema;
|
|
36
|
+
export declare var GetResourceSyncStatusInput: StaticStructureSchema;
|
|
37
|
+
export declare var GetResourceSyncStatusOutput: StaticStructureSchema;
|
|
38
|
+
export declare var GetSyncBlockerSummaryInput: StaticStructureSchema;
|
|
39
|
+
export declare var GetSyncBlockerSummaryOutput: StaticStructureSchema;
|
|
40
|
+
export declare var GetSyncConfigurationInput: StaticStructureSchema;
|
|
41
|
+
export declare var GetSyncConfigurationOutput: StaticStructureSchema;
|
|
42
|
+
export declare var Host: StaticStructureSchema;
|
|
43
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
44
|
+
export declare var InvalidInputException: StaticErrorSchema;
|
|
45
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
46
|
+
export declare var ListConnectionsInput: StaticStructureSchema;
|
|
47
|
+
export declare var ListConnectionsOutput: StaticStructureSchema;
|
|
48
|
+
export declare var ListHostsInput: StaticStructureSchema;
|
|
49
|
+
export declare var ListHostsOutput: StaticStructureSchema;
|
|
50
|
+
export declare var ListRepositoryLinksInput: StaticStructureSchema;
|
|
51
|
+
export declare var ListRepositoryLinksOutput: StaticStructureSchema;
|
|
52
|
+
export declare var ListRepositorySyncDefinitionsInput: StaticStructureSchema;
|
|
53
|
+
export declare var ListRepositorySyncDefinitionsOutput: StaticStructureSchema;
|
|
54
|
+
export declare var ListSyncConfigurationsInput: StaticStructureSchema;
|
|
55
|
+
export declare var ListSyncConfigurationsOutput: StaticStructureSchema;
|
|
56
|
+
export declare var ListTagsForResourceInput: StaticStructureSchema;
|
|
57
|
+
export declare var ListTagsForResourceOutput: StaticStructureSchema;
|
|
58
|
+
export declare var RepositoryLinkInfo: StaticStructureSchema;
|
|
59
|
+
export declare var RepositorySyncAttempt: StaticStructureSchema;
|
|
60
|
+
export declare var RepositorySyncDefinition: StaticStructureSchema;
|
|
61
|
+
export declare var RepositorySyncEvent: StaticStructureSchema;
|
|
62
|
+
export declare var ResourceAlreadyExistsException: StaticErrorSchema;
|
|
63
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
64
|
+
export declare var ResourceSyncAttempt: StaticStructureSchema;
|
|
65
|
+
export declare var ResourceSyncEvent: StaticStructureSchema;
|
|
66
|
+
export declare var ResourceUnavailableException: StaticErrorSchema;
|
|
67
|
+
export declare var RetryLatestCommitFailedException: StaticErrorSchema;
|
|
68
|
+
export declare var Revision: StaticStructureSchema;
|
|
69
|
+
export declare var SyncBlocker: StaticStructureSchema;
|
|
70
|
+
export declare var SyncBlockerContext: StaticStructureSchema;
|
|
71
|
+
export declare var SyncBlockerDoesNotExistException: StaticErrorSchema;
|
|
72
|
+
export declare var SyncBlockerSummary: StaticStructureSchema;
|
|
73
|
+
export declare var SyncConfiguration: StaticStructureSchema;
|
|
74
|
+
export declare var SyncConfigurationStillExistsException: StaticErrorSchema;
|
|
75
|
+
export declare var Tag: StaticStructureSchema;
|
|
76
|
+
export declare var TagResourceInput: StaticStructureSchema;
|
|
77
|
+
export declare var TagResourceOutput: StaticStructureSchema;
|
|
78
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
79
|
+
export declare var UnsupportedOperationException: StaticErrorSchema;
|
|
80
|
+
export declare var UnsupportedProviderTypeException: StaticErrorSchema;
|
|
81
|
+
export declare var UntagResourceInput: StaticStructureSchema;
|
|
82
|
+
export declare var UntagResourceOutput: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateHostInput: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateHostOutput: StaticStructureSchema;
|
|
85
|
+
export declare var UpdateOutOfSyncException: StaticErrorSchema;
|
|
86
|
+
export declare var UpdateRepositoryLinkInput: StaticStructureSchema;
|
|
87
|
+
export declare var UpdateRepositoryLinkOutput: StaticStructureSchema;
|
|
88
|
+
export declare var UpdateSyncBlockerInput: StaticStructureSchema;
|
|
89
|
+
export declare var UpdateSyncBlockerOutput: StaticStructureSchema;
|
|
90
|
+
export declare var UpdateSyncConfigurationInput: StaticStructureSchema;
|
|
91
|
+
export declare var UpdateSyncConfigurationOutput: StaticStructureSchema;
|
|
92
|
+
export declare var VpcConfiguration: StaticStructureSchema;
|
|
93
|
+
export declare var __Unit: "unit";
|
|
94
|
+
export declare var CodeStarConnectionsServiceException: StaticErrorSchema;
|
|
95
|
+
export declare var ConnectionList: StaticListSchema;
|
|
96
|
+
export declare var HostList: StaticListSchema;
|
|
97
|
+
export declare var LatestSyncBlockerList: StaticListSchema;
|
|
98
|
+
export declare var RepositoryLinkList: StaticListSchema;
|
|
99
|
+
export declare var RepositorySyncDefinitionList: StaticListSchema;
|
|
100
|
+
export declare var RepositorySyncEventList: StaticListSchema;
|
|
101
|
+
export declare var ResourceSyncEventList: StaticListSchema;
|
|
102
|
+
export declare var SecurityGroupIds: number;
|
|
103
|
+
export declare var SubnetIds: number;
|
|
104
|
+
export declare var SyncBlockerContextList: StaticListSchema;
|
|
105
|
+
export declare var SyncConfigurationList: StaticListSchema;
|
|
106
|
+
export declare var TagKeyList: number;
|
|
107
|
+
export declare var TagList: StaticListSchema;
|
|
108
|
+
export declare var CreateConnection: StaticOperationSchema;
|
|
109
|
+
export declare var CreateHost: StaticOperationSchema;
|
|
110
|
+
export declare var CreateRepositoryLink: StaticOperationSchema;
|
|
111
|
+
export declare var CreateSyncConfiguration: StaticOperationSchema;
|
|
112
|
+
export declare var DeleteConnection: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteHost: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteRepositoryLink: StaticOperationSchema;
|
|
115
|
+
export declare var DeleteSyncConfiguration: StaticOperationSchema;
|
|
116
|
+
export declare var GetConnection: StaticOperationSchema;
|
|
117
|
+
export declare var GetHost: StaticOperationSchema;
|
|
118
|
+
export declare var GetRepositoryLink: StaticOperationSchema;
|
|
119
|
+
export declare var GetRepositorySyncStatus: StaticOperationSchema;
|
|
120
|
+
export declare var GetResourceSyncStatus: StaticOperationSchema;
|
|
121
|
+
export declare var GetSyncBlockerSummary: StaticOperationSchema;
|
|
122
|
+
export declare var GetSyncConfiguration: StaticOperationSchema;
|
|
123
|
+
export declare var ListConnections: StaticOperationSchema;
|
|
124
|
+
export declare var ListHosts: StaticOperationSchema;
|
|
125
|
+
export declare var ListRepositoryLinks: StaticOperationSchema;
|
|
126
|
+
export declare var ListRepositorySyncDefinitions: StaticOperationSchema;
|
|
127
|
+
export declare var ListSyncConfigurations: StaticOperationSchema;
|
|
128
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
129
|
+
export declare var TagResource: StaticOperationSchema;
|
|
130
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
131
|
+
export declare var UpdateHost: StaticOperationSchema;
|
|
132
|
+
export declare var UpdateRepositoryLink: StaticOperationSchema;
|
|
133
|
+
export declare var UpdateSyncBlocker: StaticOperationSchema;
|
|
134
|
+
export declare var UpdateSyncConfiguration: StaticOperationSchema;
|
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.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codestar-connections",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|