@aws-sdk/client-codestar-connections 3.427.0 → 3.429.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.
|
@@ -40,7 +40,7 @@ export interface CreateConnectionInput {
|
|
|
40
40
|
* <p>The name of the external provider where your third-party code repository is
|
|
41
41
|
* configured.</p>
|
|
42
42
|
*/
|
|
43
|
-
ProviderType?: ProviderType
|
|
43
|
+
ProviderType?: ProviderType;
|
|
44
44
|
/**
|
|
45
45
|
* @public
|
|
46
46
|
* <p>The name of the connection to be created.</p>
|
|
@@ -159,7 +159,7 @@ export interface CreateHostInput {
|
|
|
159
159
|
* resource represents the infrastructure where your provider type is installed. The valid
|
|
160
160
|
* provider type is GitHub Enterprise Server.</p>
|
|
161
161
|
*/
|
|
162
|
-
ProviderType: ProviderType |
|
|
162
|
+
ProviderType: ProviderType | undefined;
|
|
163
163
|
/**
|
|
164
164
|
* @public
|
|
165
165
|
* <p>The endpoint of the infrastructure to be represented by the host after it is
|
|
@@ -267,7 +267,7 @@ export interface Connection {
|
|
|
267
267
|
* <p>The name of the external provider where your third-party code repository is
|
|
268
268
|
* configured.</p>
|
|
269
269
|
*/
|
|
270
|
-
ProviderType?: ProviderType
|
|
270
|
+
ProviderType?: ProviderType;
|
|
271
271
|
/**
|
|
272
272
|
* @public
|
|
273
273
|
* <p>The identifier of the external provider where your third-party code repository is configured.
|
|
@@ -278,7 +278,7 @@ export interface Connection {
|
|
|
278
278
|
* @public
|
|
279
279
|
* <p>The current status of the connection. </p>
|
|
280
280
|
*/
|
|
281
|
-
ConnectionStatus?: ConnectionStatus
|
|
281
|
+
ConnectionStatus?: ConnectionStatus;
|
|
282
282
|
/**
|
|
283
283
|
* @public
|
|
284
284
|
* <p>The Amazon Resource Name (ARN) of the host associated with the connection.</p>
|
|
@@ -323,7 +323,7 @@ export interface GetHostOutput {
|
|
|
323
323
|
* @public
|
|
324
324
|
* <p>The provider type of the requested host, such as GitHub Enterprise Server.</p>
|
|
325
325
|
*/
|
|
326
|
-
ProviderType?: ProviderType
|
|
326
|
+
ProviderType?: ProviderType;
|
|
327
327
|
/**
|
|
328
328
|
* @public
|
|
329
329
|
* <p>The endpoint of the infrastructure represented by the requested host.</p>
|
|
@@ -344,7 +344,7 @@ export interface ListConnectionsInput {
|
|
|
344
344
|
* <p>Filters the list of connections to those associated with a specified provider, such as
|
|
345
345
|
* Bitbucket.</p>
|
|
346
346
|
*/
|
|
347
|
-
ProviderTypeFilter?: ProviderType
|
|
347
|
+
ProviderTypeFilter?: ProviderType;
|
|
348
348
|
/**
|
|
349
349
|
* @public
|
|
350
350
|
* <p>Filters the list of connections to those associated with a specified host.</p>
|
|
@@ -425,7 +425,7 @@ export interface Host {
|
|
|
425
425
|
* resource represents the infrastructure where your provider type is installed. The valid
|
|
426
426
|
* provider type is GitHub Enterprise Server.</p>
|
|
427
427
|
*/
|
|
428
|
-
ProviderType?: ProviderType
|
|
428
|
+
ProviderType?: ProviderType;
|
|
429
429
|
/**
|
|
430
430
|
* @public
|
|
431
431
|
* <p>The endpoint of the infrastructure where your provider type is installed.</p>
|
|
@@ -12,7 +12,7 @@ export interface Tag {
|
|
|
12
12
|
Value: string | undefined;
|
|
13
13
|
}
|
|
14
14
|
export interface CreateConnectionInput {
|
|
15
|
-
ProviderType?: ProviderType
|
|
15
|
+
ProviderType?: ProviderType;
|
|
16
16
|
ConnectionName: string | undefined;
|
|
17
17
|
Tags?: Tag[];
|
|
18
18
|
HostArn?: string;
|
|
@@ -53,7 +53,7 @@ export interface VpcConfiguration {
|
|
|
53
53
|
}
|
|
54
54
|
export interface CreateHostInput {
|
|
55
55
|
Name: string | undefined;
|
|
56
|
-
ProviderType: ProviderType |
|
|
56
|
+
ProviderType: ProviderType | undefined;
|
|
57
57
|
ProviderEndpoint: string | undefined;
|
|
58
58
|
VpcConfiguration?: VpcConfiguration;
|
|
59
59
|
Tags?: Tag[];
|
|
@@ -83,9 +83,9 @@ export type ConnectionStatus =
|
|
|
83
83
|
export interface Connection {
|
|
84
84
|
ConnectionName?: string;
|
|
85
85
|
ConnectionArn?: string;
|
|
86
|
-
ProviderType?: ProviderType
|
|
86
|
+
ProviderType?: ProviderType;
|
|
87
87
|
OwnerAccountId?: string;
|
|
88
|
-
ConnectionStatus?: ConnectionStatus
|
|
88
|
+
ConnectionStatus?: ConnectionStatus;
|
|
89
89
|
HostArn?: string;
|
|
90
90
|
}
|
|
91
91
|
export interface GetConnectionOutput {
|
|
@@ -97,12 +97,12 @@ export interface GetHostInput {
|
|
|
97
97
|
export interface GetHostOutput {
|
|
98
98
|
Name?: string;
|
|
99
99
|
Status?: string;
|
|
100
|
-
ProviderType?: ProviderType
|
|
100
|
+
ProviderType?: ProviderType;
|
|
101
101
|
ProviderEndpoint?: string;
|
|
102
102
|
VpcConfiguration?: VpcConfiguration;
|
|
103
103
|
}
|
|
104
104
|
export interface ListConnectionsInput {
|
|
105
|
-
ProviderTypeFilter?: ProviderType
|
|
105
|
+
ProviderTypeFilter?: ProviderType;
|
|
106
106
|
HostArnFilter?: string;
|
|
107
107
|
MaxResults?: number;
|
|
108
108
|
NextToken?: string;
|
|
@@ -118,7 +118,7 @@ export interface ListHostsInput {
|
|
|
118
118
|
export interface Host {
|
|
119
119
|
Name?: string;
|
|
120
120
|
HostArn?: string;
|
|
121
|
-
ProviderType?: ProviderType
|
|
121
|
+
ProviderType?: ProviderType;
|
|
122
122
|
ProviderEndpoint?: string;
|
|
123
123
|
VpcConfiguration?: VpcConfiguration;
|
|
124
124
|
Status?: string;
|
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.429.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,39 +21,39 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|