@aws-sdk/client-glue 3.427.0 → 3.428.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.
@@ -383,7 +383,9 @@ exports.SourceControlAuthStrategy = {
383
383
  };
384
384
  exports.SourceControlProvider = {
385
385
  AWS_CODE_COMMIT: "AWS_CODE_COMMIT",
386
+ BITBUCKET: "BITBUCKET",
386
387
  GITHUB: "GITHUB",
388
+ GITLAB: "GITLAB",
387
389
  };
388
390
  exports.FederationSourceErrorCode = {
389
391
  InternalServiceException: "InternalServiceException",
@@ -370,7 +370,9 @@ export const SourceControlAuthStrategy = {
370
370
  };
371
371
  export const SourceControlProvider = {
372
372
  AWS_CODE_COMMIT: "AWS_CODE_COMMIT",
373
+ BITBUCKET: "BITBUCKET",
373
374
  GITHUB: "GITHUB",
375
+ GITLAB: "GITLAB",
374
376
  };
375
377
  export const FederationSourceErrorCode = {
376
378
  InternalServiceException: "InternalServiceException",
@@ -1089,7 +1089,7 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad
1089
1089
  * // },
1090
1090
  * // ExecutionClass: "FLEX" || "STANDARD",
1091
1091
  * // SourceControlDetails: { // SourceControlDetails
1092
- * // Provider: "GITHUB" || "AWS_CODE_COMMIT",
1092
+ * // Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
1093
1093
  * // Repository: "STRING_VALUE",
1094
1094
  * // Owner: "STRING_VALUE",
1095
1095
  * // Branch: "STRING_VALUE",
@@ -1080,7 +1080,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
1080
1080
  * },
1081
1081
  * ExecutionClass: "FLEX" || "STANDARD",
1082
1082
  * SourceControlDetails: { // SourceControlDetails
1083
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
1083
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
1084
1084
  * Repository: "STRING_VALUE",
1085
1085
  * Owner: "STRING_VALUE",
1086
1086
  * Branch: "STRING_VALUE",
@@ -1085,7 +1085,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
1085
1085
  * // },
1086
1086
  * // ExecutionClass: "FLEX" || "STANDARD",
1087
1087
  * // SourceControlDetails: { // SourceControlDetails
1088
- * // Provider: "GITHUB" || "AWS_CODE_COMMIT",
1088
+ * // Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
1089
1089
  * // Repository: "STRING_VALUE",
1090
1090
  * // Owner: "STRING_VALUE",
1091
1091
  * // Branch: "STRING_VALUE",
@@ -1087,7 +1087,7 @@ export interface GetJobsCommandOutput extends GetJobsResponse, __MetadataBearer
1087
1087
  * // },
1088
1088
  * // ExecutionClass: "FLEX" || "STANDARD",
1089
1089
  * // SourceControlDetails: { // SourceControlDetails
1090
- * // Provider: "GITHUB" || "AWS_CODE_COMMIT",
1090
+ * // Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
1091
1091
  * // Repository: "STRING_VALUE",
1092
1092
  * // Owner: "STRING_VALUE",
1093
1093
  * // Branch: "STRING_VALUE",
@@ -1077,7 +1077,7 @@ export interface UpdateJobCommandOutput extends UpdateJobResponse, __MetadataBea
1077
1077
  * },
1078
1078
  * ExecutionClass: "FLEX" || "STANDARD",
1079
1079
  * SourceControlDetails: { // SourceControlDetails
1080
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
1080
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
1081
1081
  * Repository: "STRING_VALUE",
1082
1082
  * Owner: "STRING_VALUE",
1083
1083
  * Branch: "STRING_VALUE",
@@ -33,7 +33,7 @@ export interface UpdateJobFromSourceControlCommandOutput extends UpdateJobFromSo
33
33
  * const client = new GlueClient(config);
34
34
  * const input = { // UpdateJobFromSourceControlRequest
35
35
  * JobName: "STRING_VALUE",
36
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
36
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
37
37
  * RepositoryName: "STRING_VALUE",
38
38
  * RepositoryOwner: "STRING_VALUE",
39
39
  * BranchName: "STRING_VALUE",
@@ -33,7 +33,7 @@ export interface UpdateSourceControlFromJobCommandOutput extends UpdateSourceCon
33
33
  * const client = new GlueClient(config);
34
34
  * const input = { // UpdateSourceControlFromJobRequest
35
35
  * JobName: "STRING_VALUE",
36
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
36
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
37
37
  * RepositoryName: "STRING_VALUE",
38
38
  * RepositoryOwner: "STRING_VALUE",
39
39
  * BranchName: "STRING_VALUE",
@@ -5632,7 +5632,9 @@ export type SourceControlAuthStrategy = (typeof SourceControlAuthStrategy)[keyof
5632
5632
  */
5633
5633
  export declare const SourceControlProvider: {
5634
5634
  readonly AWS_CODE_COMMIT: "AWS_CODE_COMMIT";
5635
+ readonly BITBUCKET: "BITBUCKET";
5635
5636
  readonly GITHUB: "GITHUB";
5637
+ readonly GITLAB: "GITLAB";
5636
5638
  };
5637
5639
  /**
5638
5640
  * @public
@@ -3769,12 +3769,17 @@ export interface UpdateJobFromSourceControlRequest {
3769
3769
  JobName?: string;
3770
3770
  /**
3771
3771
  * @public
3772
- * <p>The provider for the remote repository.</p>
3772
+ * <p>
3773
+ * The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
3774
+ * </p>
3773
3775
  */
3774
3776
  Provider?: SourceControlProvider | string;
3775
3777
  /**
3776
3778
  * @public
3777
- * <p>The name of the remote repository that contains the job artifacts.</p>
3779
+ * <p>The name of the remote repository that contains the job artifacts.
3780
+ * For BitBucket providers, <code>RepositoryName</code> should include <code>WorkspaceName</code>.
3781
+ * Use the format <code><WorkspaceName>/<RepositoryName></code>.
3782
+ * </p>
3778
3783
  */
3779
3784
  RepositoryName?: string;
3780
3785
  /**
@@ -4037,12 +4042,17 @@ export interface UpdateSourceControlFromJobRequest {
4037
4042
  JobName?: string;
4038
4043
  /**
4039
4044
  * @public
4040
- * <p>The provider for the remote repository.</p>
4045
+ * <p>
4046
+ * The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
4047
+ * </p>
4041
4048
  */
4042
4049
  Provider?: SourceControlProvider | string;
4043
4050
  /**
4044
4051
  * @public
4045
- * <p>The name of the remote repository that contains the job artifacts.</p>
4052
+ * <p>The name of the remote repository that contains the job artifacts.
4053
+ * For BitBucket providers, <code>RepositoryName</code> should include <code>WorkspaceName</code>.
4054
+ * Use the format <code><WorkspaceName>/<RepositoryName></code>.
4055
+ * </p>
4046
4056
  */
4047
4057
  RepositoryName?: string;
4048
4058
  /**
@@ -1465,7 +1465,9 @@ export type SourceControlAuthStrategy =
1465
1465
  (typeof SourceControlAuthStrategy)[keyof typeof SourceControlAuthStrategy];
1466
1466
  export declare const SourceControlProvider: {
1467
1467
  readonly AWS_CODE_COMMIT: "AWS_CODE_COMMIT";
1468
+ readonly BITBUCKET: "BITBUCKET";
1468
1469
  readonly GITHUB: "GITHUB";
1470
+ readonly GITLAB: "GITLAB";
1469
1471
  };
1470
1472
  export type SourceControlProvider =
1471
1473
  (typeof SourceControlProvider)[keyof typeof SourceControlProvider];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4
- "version": "3.427.0",
4
+ "version": "3.428.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.427.0",
25
- "@aws-sdk/credential-provider-node": "3.427.0",
26
- "@aws-sdk/middleware-host-header": "3.425.0",
27
- "@aws-sdk/middleware-logger": "3.425.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
- "@aws-sdk/middleware-signing": "3.425.0",
30
- "@aws-sdk/middleware-user-agent": "3.427.0",
31
- "@aws-sdk/region-config-resolver": "3.425.0",
32
- "@aws-sdk/types": "3.425.0",
33
- "@aws-sdk/util-endpoints": "3.427.0",
34
- "@aws-sdk/util-user-agent-browser": "3.425.0",
35
- "@aws-sdk/util-user-agent-node": "3.425.0",
36
- "@smithy/config-resolver": "^2.0.11",
37
- "@smithy/fetch-http-handler": "^2.2.1",
38
- "@smithy/hash-node": "^2.0.10",
39
- "@smithy/invalid-dependency": "^2.0.10",
40
- "@smithy/middleware-content-length": "^2.0.12",
41
- "@smithy/middleware-endpoint": "^2.0.10",
42
- "@smithy/middleware-retry": "^2.0.13",
43
- "@smithy/middleware-serde": "^2.0.10",
44
- "@smithy/middleware-stack": "^2.0.4",
45
- "@smithy/node-config-provider": "^2.0.13",
46
- "@smithy/node-http-handler": "^2.1.6",
47
- "@smithy/protocol-http": "^3.0.6",
48
- "@smithy/smithy-client": "^2.1.9",
49
- "@smithy/types": "^2.3.4",
50
- "@smithy/url-parser": "^2.0.10",
24
+ "@aws-sdk/client-sts": "3.428.0",
25
+ "@aws-sdk/credential-provider-node": "3.428.0",
26
+ "@aws-sdk/middleware-host-header": "3.428.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.0",
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.13",
55
- "@smithy/util-defaults-mode-node": "^2.0.15",
56
- "@smithy/util-retry": "^2.0.3",
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
  },