@aws-sdk/client-codebuild 3.651.1 → 3.653.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 CHANGED
@@ -517,7 +517,8 @@ var WebhookFilterType = {
517
517
  };
518
518
  var WebhookScopeType = {
519
519
  GITHUB_GLOBAL: "GITHUB_GLOBAL",
520
- GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION"
520
+ GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION",
521
+ GITLAB_GROUP: "GITLAB_GROUP"
521
522
  };
522
523
  var ReportExportConfigType = {
523
524
  NO_EXPORT: "NO_EXPORT",
@@ -199,6 +199,7 @@ export const WebhookFilterType = {
199
199
  export const WebhookScopeType = {
200
200
  GITHUB_GLOBAL: "GITHUB_GLOBAL",
201
201
  GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION",
202
+ GITLAB_GROUP: "GITLAB_GROUP",
202
203
  };
203
204
  export const ReportExportConfigType = {
204
205
  NO_EXPORT: "NO_EXPORT",
@@ -183,7 +183,7 @@ declare const BatchGetProjectsCommand_base: {
183
183
  * // scopeConfiguration: { // ScopeConfiguration
184
184
  * // name: "STRING_VALUE", // required
185
185
  * // domain: "STRING_VALUE",
186
- * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL", // required
186
+ * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL" || "GITLAB_GROUP", // required
187
187
  * // },
188
188
  * // },
189
189
  * // vpcConfig: { // VpcConfig
@@ -340,7 +340,7 @@ declare const CreateProjectCommand_base: {
340
340
  * // scopeConfiguration: { // ScopeConfiguration
341
341
  * // name: "STRING_VALUE", // required
342
342
  * // domain: "STRING_VALUE",
343
- * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL", // required
343
+ * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL" || "GITLAB_GROUP", // required
344
344
  * // },
345
345
  * // },
346
346
  * // vpcConfig: { // VpcConfig
@@ -61,7 +61,7 @@ declare const CreateWebhookCommand_base: {
61
61
  * scopeConfiguration: { // ScopeConfiguration
62
62
  * name: "STRING_VALUE", // required
63
63
  * domain: "STRING_VALUE",
64
- * scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL", // required
64
+ * scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL" || "GITLAB_GROUP", // required
65
65
  * },
66
66
  * };
67
67
  * const command = new CreateWebhookCommand(input);
@@ -87,7 +87,7 @@ declare const CreateWebhookCommand_base: {
87
87
  * // scopeConfiguration: { // ScopeConfiguration
88
88
  * // name: "STRING_VALUE", // required
89
89
  * // domain: "STRING_VALUE",
90
- * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL", // required
90
+ * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL" || "GITLAB_GROUP", // required
91
91
  * // },
92
92
  * // },
93
93
  * // };
@@ -340,7 +340,7 @@ declare const UpdateProjectCommand_base: {
340
340
  * // scopeConfiguration: { // ScopeConfiguration
341
341
  * // name: "STRING_VALUE", // required
342
342
  * // domain: "STRING_VALUE",
343
- * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL", // required
343
+ * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL" || "GITLAB_GROUP", // required
344
344
  * // },
345
345
  * // },
346
346
  * // vpcConfig: { // VpcConfig
@@ -76,7 +76,7 @@ declare const UpdateWebhookCommand_base: {
76
76
  * // scopeConfiguration: { // ScopeConfiguration
77
77
  * // name: "STRING_VALUE", // required
78
78
  * // domain: "STRING_VALUE",
79
- * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL", // required
79
+ * // scope: "GITHUB_ORGANIZATION" || "GITHUB_GLOBAL" || "GITLAB_GROUP", // required
80
80
  * // },
81
81
  * // },
82
82
  * // };
@@ -3392,6 +3392,7 @@ export interface WebhookFilter {
3392
3392
  export declare const WebhookScopeType: {
3393
3393
  readonly GITHUB_GLOBAL: "GITHUB_GLOBAL";
3394
3394
  readonly GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION";
3395
+ readonly GITLAB_GROUP: "GITLAB_GROUP";
3395
3396
  };
3396
3397
  /**
3397
3398
  * @public
@@ -3403,17 +3404,17 @@ export type WebhookScopeType = (typeof WebhookScopeType)[keyof typeof WebhookSco
3403
3404
  */
3404
3405
  export interface ScopeConfiguration {
3405
3406
  /**
3406
- * <p>The name of either the enterprise or organization that will send webhook events to CodeBuild, depending on if the webhook is a global or organization webhook respectively.</p>
3407
+ * <p>The name of either the group, enterprise, or organization that will send webhook events to CodeBuild, depending on the type of webhook.</p>
3407
3408
  * @public
3408
3409
  */
3409
3410
  name: string | undefined;
3410
3411
  /**
3411
- * <p>The domain of the GitHub Enterprise organization. Note that this parameter is only required if your project's source type is GITHUB_ENTERPRISE</p>
3412
+ * <p>The domain of the GitHub Enterprise organization or the GitLab Self Managed group. Note that this parameter is only required if your project's source type is GITHUB_ENTERPRISE or GITLAB_SELF_MANAGED.</p>
3412
3413
  * @public
3413
3414
  */
3414
3415
  domain?: string;
3415
3416
  /**
3416
- * <p>The type of scope for a GitHub webhook.</p>
3417
+ * <p>The type of scope for a GitHub or GitLab webhook.</p>
3417
3418
  * @public
3418
3419
  */
3419
3420
  scope: WebhookScopeType | undefined;
@@ -559,6 +559,7 @@ export interface WebhookFilter {
559
559
  export declare const WebhookScopeType: {
560
560
  readonly GITHUB_GLOBAL: "GITHUB_GLOBAL";
561
561
  readonly GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION";
562
+ readonly GITLAB_GROUP: "GITLAB_GROUP";
562
563
  };
563
564
  export type WebhookScopeType =
564
565
  (typeof WebhookScopeType)[keyof typeof WebhookScopeType];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codebuild",
3
3
  "description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
4
- "version": "3.651.1",
4
+ "version": "3.653.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-codebuild",