@aws-sdk/client-codestar-connections 3.481.0 → 3.483.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/models/models_0.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateHostCommand.d.ts +1 -1
- package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +1 -1
- package/dist-types/commands/CreateSyncConfigurationCommand.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/GetRepositoryLinkCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +5 -5
- package/dist-types/commands/GetSyncConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +2 -2
- package/dist-types/commands/ListHostsCommand.d.ts +1 -1
- package/dist-types/commands/ListRepositoryLinksCommand.d.ts +1 -1
- package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -28,6 +28,7 @@ exports.ProviderType = {
|
|
|
28
28
|
GITHUB: "GitHub",
|
|
29
29
|
GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
|
|
30
30
|
GITLAB: "GitLab",
|
|
31
|
+
GITLAB_SELF_MANAGED: "GitLabSelfManaged",
|
|
31
32
|
};
|
|
32
33
|
class LimitExceededException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
|
|
33
34
|
constructor(opts) {
|
|
@@ -24,6 +24,7 @@ export const ProviderType = {
|
|
|
24
24
|
GITHUB: "GitHub",
|
|
25
25
|
GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
|
|
26
26
|
GITLAB: "GitLab",
|
|
27
|
+
GITLAB_SELF_MANAGED: "GitLabSelfManaged",
|
|
27
28
|
};
|
|
28
29
|
export class LimitExceededException extends __BaseException {
|
|
29
30
|
constructor(opts) {
|
|
@@ -36,7 +36,7 @@ declare const CreateConnectionCommand_base: {
|
|
|
36
36
|
* // const { CodeStarConnectionsClient, CreateConnectionCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
37
37
|
* const client = new CodeStarConnectionsClient(config);
|
|
38
38
|
* const input = { // CreateConnectionInput
|
|
39
|
-
* ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab",
|
|
39
|
+
* ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged",
|
|
40
40
|
* ConnectionName: "STRING_VALUE", // required
|
|
41
41
|
* Tags: [ // TagList
|
|
42
42
|
* { // Tag
|
|
@@ -42,7 +42,7 @@ declare const CreateHostCommand_base: {
|
|
|
42
42
|
* const client = new CodeStarConnectionsClient(config);
|
|
43
43
|
* const input = { // CreateHostInput
|
|
44
44
|
* Name: "STRING_VALUE", // required
|
|
45
|
-
* ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
45
|
+
* ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
46
46
|
* ProviderEndpoint: "STRING_VALUE", // required
|
|
47
47
|
* VpcConfiguration: { // VpcConfiguration
|
|
48
48
|
* VpcId: "STRING_VALUE", // required
|
|
@@ -52,7 +52,7 @@ declare const CreateRepositoryLinkCommand_base: {
|
|
|
52
52
|
* // ConnectionArn: "STRING_VALUE", // required
|
|
53
53
|
* // EncryptionKeyArn: "STRING_VALUE",
|
|
54
54
|
* // OwnerId: "STRING_VALUE", // required
|
|
55
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
55
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
56
56
|
* // RepositoryLinkArn: "STRING_VALUE", // required
|
|
57
57
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
58
58
|
* // RepositoryName: "STRING_VALUE", // required
|
|
@@ -50,7 +50,7 @@ declare const CreateSyncConfigurationCommand_base: {
|
|
|
50
50
|
* // Branch: "STRING_VALUE", // required
|
|
51
51
|
* // ConfigFile: "STRING_VALUE",
|
|
52
52
|
* // OwnerId: "STRING_VALUE", // required
|
|
53
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
53
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
54
54
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
55
55
|
* // RepositoryName: "STRING_VALUE", // required
|
|
56
56
|
* // ResourceName: "STRING_VALUE", // required
|
|
@@ -42,7 +42,7 @@ declare const GetConnectionCommand_base: {
|
|
|
42
42
|
* // Connection: { // Connection
|
|
43
43
|
* // ConnectionName: "STRING_VALUE",
|
|
44
44
|
* // ConnectionArn: "STRING_VALUE",
|
|
45
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab",
|
|
45
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged",
|
|
46
46
|
* // OwnerAccountId: "STRING_VALUE",
|
|
47
47
|
* // ConnectionStatus: "PENDING" || "AVAILABLE" || "ERROR",
|
|
48
48
|
* // HostArn: "STRING_VALUE",
|
|
@@ -42,7 +42,7 @@ declare const GetHostCommand_base: {
|
|
|
42
42
|
* // { // GetHostOutput
|
|
43
43
|
* // Name: "STRING_VALUE",
|
|
44
44
|
* // Status: "STRING_VALUE",
|
|
45
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab",
|
|
45
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged",
|
|
46
46
|
* // ProviderEndpoint: "STRING_VALUE",
|
|
47
47
|
* // VpcConfiguration: { // VpcConfiguration
|
|
48
48
|
* // VpcId: "STRING_VALUE", // required
|
|
@@ -44,7 +44,7 @@ declare const GetRepositoryLinkCommand_base: {
|
|
|
44
44
|
* // ConnectionArn: "STRING_VALUE", // required
|
|
45
45
|
* // EncryptionKeyArn: "STRING_VALUE",
|
|
46
46
|
* // OwnerId: "STRING_VALUE", // required
|
|
47
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
47
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
48
48
|
* // RepositoryLinkArn: "STRING_VALUE", // required
|
|
49
49
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
50
50
|
* // RepositoryName: "STRING_VALUE", // required
|
|
@@ -46,7 +46,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
46
46
|
* // Directory: "STRING_VALUE", // required
|
|
47
47
|
* // OwnerId: "STRING_VALUE", // required
|
|
48
48
|
* // RepositoryName: "STRING_VALUE", // required
|
|
49
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
49
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
50
50
|
* // Sha: "STRING_VALUE", // required
|
|
51
51
|
* // },
|
|
52
52
|
* // LatestSuccessfulSync: { // ResourceSyncAttempt
|
|
@@ -63,7 +63,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
63
63
|
* // Directory: "STRING_VALUE", // required
|
|
64
64
|
* // OwnerId: "STRING_VALUE", // required
|
|
65
65
|
* // RepositoryName: "STRING_VALUE", // required
|
|
66
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
66
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
67
67
|
* // Sha: "STRING_VALUE", // required
|
|
68
68
|
* // },
|
|
69
69
|
* // StartedAt: new Date("TIMESTAMP"), // required
|
|
@@ -73,7 +73,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
73
73
|
* // Directory: "STRING_VALUE", // required
|
|
74
74
|
* // OwnerId: "STRING_VALUE", // required
|
|
75
75
|
* // RepositoryName: "STRING_VALUE", // required
|
|
76
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
76
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
77
77
|
* // Sha: "STRING_VALUE", // required
|
|
78
78
|
* // },
|
|
79
79
|
* // Target: "STRING_VALUE", // required
|
|
@@ -92,7 +92,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
92
92
|
* // Directory: "STRING_VALUE", // required
|
|
93
93
|
* // OwnerId: "STRING_VALUE", // required
|
|
94
94
|
* // RepositoryName: "STRING_VALUE", // required
|
|
95
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
95
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
96
96
|
* // Sha: "STRING_VALUE", // required
|
|
97
97
|
* // },
|
|
98
98
|
* // StartedAt: new Date("TIMESTAMP"), // required
|
|
@@ -102,7 +102,7 @@ declare const GetResourceSyncStatusCommand_base: {
|
|
|
102
102
|
* // Directory: "STRING_VALUE", // required
|
|
103
103
|
* // OwnerId: "STRING_VALUE", // required
|
|
104
104
|
* // RepositoryName: "STRING_VALUE", // required
|
|
105
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
105
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
106
106
|
* // Sha: "STRING_VALUE", // required
|
|
107
107
|
* // },
|
|
108
108
|
* // Target: "STRING_VALUE", // required
|
|
@@ -44,7 +44,7 @@ declare const GetSyncConfigurationCommand_base: {
|
|
|
44
44
|
* // Branch: "STRING_VALUE", // required
|
|
45
45
|
* // ConfigFile: "STRING_VALUE",
|
|
46
46
|
* // OwnerId: "STRING_VALUE", // required
|
|
47
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
47
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
48
48
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
49
49
|
* // RepositoryName: "STRING_VALUE", // required
|
|
50
50
|
* // ResourceName: "STRING_VALUE", // required
|
|
@@ -34,7 +34,7 @@ declare const ListConnectionsCommand_base: {
|
|
|
34
34
|
* // const { CodeStarConnectionsClient, ListConnectionsCommand } = require("@aws-sdk/client-codestar-connections"); // CommonJS import
|
|
35
35
|
* const client = new CodeStarConnectionsClient(config);
|
|
36
36
|
* const input = { // ListConnectionsInput
|
|
37
|
-
* ProviderTypeFilter: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab",
|
|
37
|
+
* ProviderTypeFilter: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged",
|
|
38
38
|
* HostArnFilter: "STRING_VALUE",
|
|
39
39
|
* MaxResults: Number("int"),
|
|
40
40
|
* NextToken: "STRING_VALUE",
|
|
@@ -46,7 +46,7 @@ declare const ListConnectionsCommand_base: {
|
|
|
46
46
|
* // { // Connection
|
|
47
47
|
* // ConnectionName: "STRING_VALUE",
|
|
48
48
|
* // ConnectionArn: "STRING_VALUE",
|
|
49
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab",
|
|
49
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged",
|
|
50
50
|
* // OwnerAccountId: "STRING_VALUE",
|
|
51
51
|
* // ConnectionStatus: "PENDING" || "AVAILABLE" || "ERROR",
|
|
52
52
|
* // HostArn: "STRING_VALUE",
|
|
@@ -44,7 +44,7 @@ declare const ListHostsCommand_base: {
|
|
|
44
44
|
* // { // Host
|
|
45
45
|
* // Name: "STRING_VALUE",
|
|
46
46
|
* // HostArn: "STRING_VALUE",
|
|
47
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab",
|
|
47
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged",
|
|
48
48
|
* // ProviderEndpoint: "STRING_VALUE",
|
|
49
49
|
* // VpcConfiguration: { // VpcConfiguration
|
|
50
50
|
* // VpcId: "STRING_VALUE", // required
|
|
@@ -45,7 +45,7 @@ declare const ListRepositoryLinksCommand_base: {
|
|
|
45
45
|
* // ConnectionArn: "STRING_VALUE", // required
|
|
46
46
|
* // EncryptionKeyArn: "STRING_VALUE",
|
|
47
47
|
* // OwnerId: "STRING_VALUE", // required
|
|
48
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
48
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
49
49
|
* // RepositoryLinkArn: "STRING_VALUE", // required
|
|
50
50
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
51
51
|
* // RepositoryName: "STRING_VALUE", // required
|
|
@@ -47,7 +47,7 @@ declare const ListSyncConfigurationsCommand_base: {
|
|
|
47
47
|
* // Branch: "STRING_VALUE", // required
|
|
48
48
|
* // ConfigFile: "STRING_VALUE",
|
|
49
49
|
* // OwnerId: "STRING_VALUE", // required
|
|
50
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
50
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
51
51
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
52
52
|
* // RepositoryName: "STRING_VALUE", // required
|
|
53
53
|
* // ResourceName: "STRING_VALUE", // required
|
|
@@ -47,7 +47,7 @@ declare const UpdateRepositoryLinkCommand_base: {
|
|
|
47
47
|
* // ConnectionArn: "STRING_VALUE", // required
|
|
48
48
|
* // EncryptionKeyArn: "STRING_VALUE",
|
|
49
49
|
* // OwnerId: "STRING_VALUE", // required
|
|
50
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
50
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
51
51
|
* // RepositoryLinkArn: "STRING_VALUE", // required
|
|
52
52
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
53
53
|
* // RepositoryName: "STRING_VALUE", // required
|
|
@@ -48,7 +48,7 @@ declare const UpdateSyncConfigurationCommand_base: {
|
|
|
48
48
|
* // Branch: "STRING_VALUE", // required
|
|
49
49
|
* // ConfigFile: "STRING_VALUE",
|
|
50
50
|
* // OwnerId: "STRING_VALUE", // required
|
|
51
|
-
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab", // required
|
|
51
|
+
* // ProviderType: "Bitbucket" || "GitHub" || "GitHubEnterpriseServer" || "GitLab" || "GitLabSelfManaged", // required
|
|
52
52
|
* // RepositoryLinkId: "STRING_VALUE", // required
|
|
53
53
|
* // RepositoryName: "STRING_VALUE", // required
|
|
54
54
|
* // ResourceName: "STRING_VALUE", // required
|
|
@@ -22,6 +22,7 @@ export declare const ProviderType: {
|
|
|
22
22
|
readonly GITHUB: "GitHub";
|
|
23
23
|
readonly GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer";
|
|
24
24
|
readonly GITLAB: "GitLab";
|
|
25
|
+
readonly GITLAB_SELF_MANAGED: "GitLabSelfManaged";
|
|
25
26
|
};
|
|
26
27
|
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
27
28
|
export interface Tag {
|
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.483.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",
|