@aws-sdk/client-cleanrooms 3.848.0 → 3.856.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
@@ -2107,10 +2107,12 @@ var se_UpdateConfiguredTableCommand = /* @__PURE__ */ __name(async (input, conte
2107
2107
  let body;
2108
2108
  body = JSON.stringify(
2109
2109
  (0, import_smithy_client.take)(input, {
2110
+ allowedColumns: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "allowedColumns"),
2110
2111
  analysisMethod: [],
2111
2112
  description: [],
2112
2113
  name: [],
2113
- selectedAnalysisMethods: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "selectedAnalysisMethods")
2114
+ selectedAnalysisMethods: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "selectedAnalysisMethods"),
2115
+ tableReference: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "tableReference")
2114
2116
  })
2115
2117
  );
2116
2118
  b.m("PATCH").h(headers).b(body);
@@ -953,10 +953,12 @@ export const se_UpdateConfiguredTableCommand = async (input, context) => {
953
953
  b.p("configuredTableIdentifier", () => input.configuredTableIdentifier, "{configuredTableIdentifier}", false);
954
954
  let body;
955
955
  body = JSON.stringify(take(input, {
956
+ allowedColumns: (_) => _json(_),
956
957
  analysisMethod: [],
957
958
  description: [],
958
959
  name: [],
959
960
  selectedAnalysisMethods: (_) => _json(_),
961
+ tableReference: (_) => _json(_),
960
962
  }));
961
963
  b.m("PATCH").h(headers).b(body);
962
964
  return b.build();
@@ -27,7 +27,7 @@ declare const CreatePrivacyBudgetTemplateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a privacy budget template for a specified membership. Each membership can have only one privacy budget template, but it can be deleted and recreated. If you need to change the privacy budget template for a membership, use the <a>UpdatePrivacyBudgetTemplate</a> operation.</p>
30
+ * <p>Creates a privacy budget template for a specified collaboration. Each collaboration can have only one privacy budget template. If you need to change the privacy budget template, use the <a>UpdatePrivacyBudgetTemplate</a> operation.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,7 +27,7 @@ declare const DeletePrivacyBudgetTemplateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a privacy budget template for a specified membership.</p>
30
+ * <p>Deletes a privacy budget template for a specified collaboration.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -38,6 +38,36 @@ declare const UpdateConfiguredTableCommand_base: {
38
38
  * configuredTableIdentifier: "STRING_VALUE", // required
39
39
  * name: "STRING_VALUE",
40
40
  * description: "STRING_VALUE",
41
+ * tableReference: { // TableReference Union: only one key present
42
+ * glue: { // GlueTableReference
43
+ * tableName: "STRING_VALUE", // required
44
+ * databaseName: "STRING_VALUE", // required
45
+ * },
46
+ * snowflake: { // SnowflakeTableReference
47
+ * secretArn: "STRING_VALUE", // required
48
+ * accountIdentifier: "STRING_VALUE", // required
49
+ * databaseName: "STRING_VALUE", // required
50
+ * tableName: "STRING_VALUE", // required
51
+ * schemaName: "STRING_VALUE", // required
52
+ * tableSchema: { // SnowflakeTableSchema Union: only one key present
53
+ * v1: [ // SnowflakeTableSchemaList
54
+ * { // SnowflakeTableSchemaV1
55
+ * columnName: "STRING_VALUE", // required
56
+ * columnType: "STRING_VALUE", // required
57
+ * },
58
+ * ],
59
+ * },
60
+ * },
61
+ * athena: { // AthenaTableReference
62
+ * workGroup: "STRING_VALUE", // required
63
+ * outputLocation: "STRING_VALUE",
64
+ * databaseName: "STRING_VALUE", // required
65
+ * tableName: "STRING_VALUE", // required
66
+ * },
67
+ * },
68
+ * allowedColumns: [ // AllowedColumnList
69
+ * "STRING_VALUE",
70
+ * ],
41
71
  * analysisMethod: "DIRECT_QUERY" || "DIRECT_JOB" || "MULTIPLE",
42
72
  * selectedAnalysisMethods: [ // SelectedAnalysisMethods
43
73
  * "DIRECT_QUERY" || "DIRECT_JOB",
@@ -113,6 +143,9 @@ declare const UpdateConfiguredTableCommand_base: {
113
143
  * @throws {@link ResourceNotFoundException} (client fault)
114
144
  * <p>Request references a resource which does not exist.</p>
115
145
  *
146
+ * @throws {@link ServiceQuotaExceededException} (client fault)
147
+ * <p>Request denied because service quota has been exceeded.</p>
148
+ *
116
149
  * @throws {@link ThrottlingException} (client fault)
117
150
  * <p>Request was denied due to request throttling.</p>
118
151
  *
@@ -27,7 +27,7 @@ declare const UpdatePrivacyBudgetTemplateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Updates the privacy budget template for the specified membership.</p>
30
+ * <p>Updates the privacy budget template for the specified collaboration.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -1327,7 +1327,7 @@ export interface CreateAnalysisTemplateInput {
1327
1327
  */
1328
1328
  format: AnalysisFormat | undefined;
1329
1329
  /**
1330
- * <p>The information in the analysis template. Currently supports <code>text</code>, the query text for the analysis template.</p>
1330
+ * <p>The information in the analysis template.</p>
1331
1331
  * @public
1332
1332
  */
1333
1333
  source: AnalysisSource | undefined;
@@ -2487,7 +2487,7 @@ export interface CreateCollaborationInput {
2487
2487
  */
2488
2488
  creatorPaymentConfiguration?: PaymentConfiguration | undefined;
2489
2489
  /**
2490
- * <p> The analytics engine.</p>
2490
+ * <p> The analytics engine.</p> <note> <p>After July 16, 2025, the <code>CLEAN_ROOMS_SQL</code> parameter will no longer be available. </p> </note>
2491
2491
  * @public
2492
2492
  */
2493
2493
  analyticsEngine?: AnalyticsEngine | undefined;
@@ -2582,7 +2582,7 @@ export interface Collaboration {
2582
2582
  */
2583
2583
  jobLogStatus?: CollaborationJobLogStatus | undefined;
2584
2584
  /**
2585
- * <p> The analytics engine for the collaboration.</p>
2585
+ * <p> The analytics engine for the collaboration.</p> <note> <p>After July 16, 2025, the <code>CLEAN_ROOMS_SQL</code> parameter will no longer be available. </p> </note>
2586
2586
  * @public
2587
2587
  */
2588
2588
  analyticsEngine?: AnalyticsEngine | undefined;
@@ -3723,7 +3723,7 @@ export interface CollaborationSummary {
3723
3723
  */
3724
3724
  membershipArn?: string | undefined;
3725
3725
  /**
3726
- * <p> The analytics engine.</p>
3726
+ * <p> The analytics engine.</p> <note> <p>After July 16, 2025, the <code>CLEAN_ROOMS_SQL</code> parameter will no longer be available. </p> </note>
3727
3727
  * @public
3728
3728
  */
3729
3729
  analyticsEngine?: AnalyticsEngine | undefined;
@@ -3950,7 +3950,7 @@ export interface UpdateCollaborationInput {
3950
3950
  */
3951
3951
  description?: string | undefined;
3952
3952
  /**
3953
- * <p>The analytics engine.</p>
3953
+ * <p>The analytics engine.</p> <note> <p>After July 16, 2025, the <code>CLEAN_ROOMS_SQL</code> parameter will no longer be available. </p> </note>
3954
3954
  * @public
3955
3955
  */
3956
3956
  analyticsEngine?: AnalyticsEngine | undefined;
@@ -5315,6 +5315,16 @@ export interface UpdateConfiguredTableInput {
5315
5315
  * @public
5316
5316
  */
5317
5317
  description?: string | undefined;
5318
+ /**
5319
+ * <p>A pointer to the dataset that underlies this table.</p>
5320
+ * @public
5321
+ */
5322
+ tableReference?: TableReference | undefined;
5323
+ /**
5324
+ * <p>The columns of the underlying table that can be used by collaborations or analysis rules.</p>
5325
+ * @public
5326
+ */
5327
+ allowedColumns?: string[] | undefined;
5318
5328
  /**
5319
5329
  * <p> The analysis method for the configured table.</p> <p> <code>DIRECT_QUERY</code> allows SQL queries to be run directly on this table.</p> <p> <code>DIRECT_JOB</code> allows PySpark jobs to be run directly on this table.</p> <p> <code>MULTIPLE</code> allows both SQL queries and PySpark jobs to be run directly on this table.</p>
5320
5330
  * @public
@@ -1754,6 +1754,8 @@ export interface UpdateConfiguredTableInput {
1754
1754
  configuredTableIdentifier: string | undefined;
1755
1755
  name?: string | undefined;
1756
1756
  description?: string | undefined;
1757
+ tableReference?: TableReference | undefined;
1758
+ allowedColumns?: string[] | undefined;
1757
1759
  analysisMethod?: AnalysisMethod | undefined;
1758
1760
  selectedAnalysisMethods?: SelectedAnalysisMethod[] | undefined;
1759
1761
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cleanrooms",
3
3
  "description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
4
- "version": "3.848.0",
4
+ "version": "3.856.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-cleanrooms",
@@ -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.846.0",
24
- "@aws-sdk/credential-provider-node": "3.848.0",
23
+ "@aws-sdk/core": "3.856.0",
24
+ "@aws-sdk/credential-provider-node": "3.856.0",
25
25
  "@aws-sdk/middleware-host-header": "3.840.0",
26
26
  "@aws-sdk/middleware-logger": "3.840.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
- "@aws-sdk/middleware-user-agent": "3.848.0",
28
+ "@aws-sdk/middleware-user-agent": "3.856.0",
29
29
  "@aws-sdk/region-config-resolver": "3.840.0",
30
30
  "@aws-sdk/types": "3.840.0",
31
31
  "@aws-sdk/util-endpoints": "3.848.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.840.0",
33
- "@aws-sdk/util-user-agent-node": "3.848.0",
33
+ "@aws-sdk/util-user-agent-node": "3.856.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.7.0",
36
36
  "@smithy/fetch-http-handler": "^5.1.0",