@aws-sdk/client-cleanrooms 3.894.0 → 3.895.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
@@ -122,6 +122,7 @@ __export(index_exports, {
122
122
  GetSchemaCommand: () => GetSchemaCommand,
123
123
  IdNamespaceType: () => IdNamespaceType,
124
124
  InternalServerException: () => InternalServerException,
125
+ JobType: () => JobType,
125
126
  JoinOperator: () => JoinOperator,
126
127
  JoinRequiredOption: () => JoinRequiredOption,
127
128
  ListAnalysisTemplatesCommand: () => ListAnalysisTemplatesCommand,
@@ -960,6 +961,11 @@ var ConfiguredTableAnalysisRulePolicy;
960
961
  return visitor._(value.$unknown[0], value.$unknown[1]);
961
962
  }, "visit");
962
963
  })(ConfiguredTableAnalysisRulePolicy || (ConfiguredTableAnalysisRulePolicy = {}));
964
+ var JobType = {
965
+ BATCH: "BATCH",
966
+ DELETE_ONLY: "DELETE_ONLY",
967
+ INCREMENTAL: "INCREMENTAL"
968
+ };
963
969
  var MembershipProtectedJobOutputConfiguration;
964
970
  ((MembershipProtectedJobOutputConfiguration3) => {
965
971
  MembershipProtectedJobOutputConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -982,10 +988,6 @@ var MembershipJobLogStatus = {
982
988
  DISABLED: "DISABLED",
983
989
  ENABLED: "ENABLED"
984
990
  };
985
- var MembershipQueryLogStatus = {
986
- DISABLED: "DISABLED",
987
- ENABLED: "ENABLED"
988
- };
989
991
  var AnalysisParameterFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
990
992
  ...obj
991
993
  }), "AnalysisParameterFilterSensitiveLog");
@@ -2007,11 +2009,18 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
2007
2009
  }, "se_ListTagsForResourceCommand");
2008
2010
  var se_PopulateIdMappingTableCommand = /* @__PURE__ */ __name(async (input, context) => {
2009
2011
  const b = (0, import_core.requestBuilder)(input, context);
2010
- const headers = {};
2012
+ const headers = {
2013
+ "content-type": "application/json"
2014
+ };
2011
2015
  b.bp("/memberships/{membershipIdentifier}/idmappingtables/{idMappingTableIdentifier}/populate");
2012
2016
  b.p("idMappingTableIdentifier", () => input.idMappingTableIdentifier, "{idMappingTableIdentifier}", false);
2013
2017
  b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
2014
2018
  let body;
2019
+ body = JSON.stringify(
2020
+ (0, import_smithy_client.take)(input, {
2021
+ jobType: []
2022
+ })
2023
+ );
2015
2024
  b.m("POST").h(headers).b(body);
2016
2025
  return b.build();
2017
2026
  }, "se_PopulateIdMappingTableCommand");
@@ -5145,6 +5154,10 @@ var GetProtectedJobCommand = class extends import_smithy_client.Command.classBui
5145
5154
 
5146
5155
  // src/models/models_1.ts
5147
5156
 
5157
+ var MembershipQueryLogStatus = {
5158
+ DISABLED: "DISABLED",
5159
+ ENABLED: "ENABLED"
5160
+ };
5148
5161
  var MembershipStatus = {
5149
5162
  ACTIVE: "ACTIVE",
5150
5163
  COLLABORATION_DELETED: "COLLABORATION_DELETED",
@@ -6329,11 +6342,11 @@ var paginateListSchemas = (0, import_core.createPaginator)(CleanRoomsClient, Lis
6329
6342
  ConfiguredTableAnalysisRuleType,
6330
6343
  ConfiguredTableAnalysisRulePolicyV1,
6331
6344
  ConfiguredTableAnalysisRulePolicy,
6345
+ JobType,
6332
6346
  MembershipProtectedJobOutputConfiguration,
6333
6347
  ResultFormat,
6334
6348
  MembershipProtectedQueryOutputConfiguration,
6335
6349
  MembershipJobLogStatus,
6336
- MembershipQueryLogStatus,
6337
6350
  AnalysisParameterFilterSensitiveLog,
6338
6351
  AnalysisSourceFilterSensitiveLog,
6339
6352
  AnalysisTemplateFilterSensitiveLog,
@@ -6344,6 +6357,7 @@ var paginateListSchemas = (0, import_core.createPaginator)(CleanRoomsClient, Lis
6344
6357
  CollaborationAnalysisTemplateFilterSensitiveLog,
6345
6358
  BatchGetCollaborationAnalysisTemplateOutputFilterSensitiveLog,
6346
6359
  GetCollaborationAnalysisTemplateOutputFilterSensitiveLog,
6360
+ MembershipQueryLogStatus,
6347
6361
  MembershipStatus,
6348
6362
  ProtectedJobWorkerComputeType,
6349
6363
  ProtectedJobComputeConfiguration,
@@ -495,6 +495,11 @@ export var ConfiguredTableAnalysisRulePolicy;
495
495
  return visitor._(value.$unknown[0], value.$unknown[1]);
496
496
  };
497
497
  })(ConfiguredTableAnalysisRulePolicy || (ConfiguredTableAnalysisRulePolicy = {}));
498
+ export const JobType = {
499
+ BATCH: "BATCH",
500
+ DELETE_ONLY: "DELETE_ONLY",
501
+ INCREMENTAL: "INCREMENTAL",
502
+ };
498
503
  export var MembershipProtectedJobOutputConfiguration;
499
504
  (function (MembershipProtectedJobOutputConfiguration) {
500
505
  MembershipProtectedJobOutputConfiguration.visit = (value, visitor) => {
@@ -519,10 +524,6 @@ export const MembershipJobLogStatus = {
519
524
  DISABLED: "DISABLED",
520
525
  ENABLED: "ENABLED",
521
526
  };
522
- export const MembershipQueryLogStatus = {
523
- DISABLED: "DISABLED",
524
- ENABLED: "ENABLED",
525
- };
526
527
  export const AnalysisParameterFilterSensitiveLog = (obj) => ({
527
528
  ...obj,
528
529
  });
@@ -1,4 +1,8 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const MembershipQueryLogStatus = {
3
+ DISABLED: "DISABLED",
4
+ ENABLED: "ENABLED",
5
+ };
2
6
  export const MembershipStatus = {
3
7
  ACTIVE: "ACTIVE",
4
8
  COLLABORATION_DELETED: "COLLABORATION_DELETED",
@@ -856,11 +856,16 @@ export const se_ListTagsForResourceCommand = async (input, context) => {
856
856
  };
857
857
  export const se_PopulateIdMappingTableCommand = async (input, context) => {
858
858
  const b = rb(input, context);
859
- const headers = {};
859
+ const headers = {
860
+ "content-type": "application/json",
861
+ };
860
862
  b.bp("/memberships/{membershipIdentifier}/idmappingtables/{idMappingTableIdentifier}/populate");
861
863
  b.p("idMappingTableIdentifier", () => input.idMappingTableIdentifier, "{idMappingTableIdentifier}", false);
862
864
  b.p("membershipIdentifier", () => input.membershipIdentifier, "{membershipIdentifier}", false);
863
865
  let body;
866
+ body = JSON.stringify(take(input, {
867
+ jobType: [],
868
+ }));
864
869
  b.m("POST").h(headers).b(body);
865
870
  return b.build();
866
871
  };
@@ -93,6 +93,9 @@ declare const CreatePrivacyBudgetTemplateCommand_base: {
93
93
  * @throws {@link ResourceNotFoundException} (client fault)
94
94
  * <p>Request references a resource which does not exist.</p>
95
95
  *
96
+ * @throws {@link ServiceQuotaExceededException} (client fault)
97
+ * <p>Request denied because service quota has been exceeded.</p>
98
+ *
96
99
  * @throws {@link ThrottlingException} (client fault)
97
100
  * <p>Request was denied due to request throttling.</p>
98
101
  *
@@ -39,6 +39,7 @@ declare const PopulateIdMappingTableCommand_base: {
39
39
  * const input = { // PopulateIdMappingTableInput
40
40
  * idMappingTableIdentifier: "STRING_VALUE", // required
41
41
  * membershipIdentifier: "STRING_VALUE", // required
42
+ * jobType: "BATCH" || "INCREMENTAL" || "DELETE_ONLY",
42
43
  * };
43
44
  * const command = new PopulateIdMappingTableCommand(input);
44
45
  * const response = await client.send(command);
@@ -6015,6 +6015,19 @@ export interface ListIdMappingTablesOutput {
6015
6015
  */
6016
6016
  nextToken?: string | undefined;
6017
6017
  }
6018
+ /**
6019
+ * @public
6020
+ * @enum
6021
+ */
6022
+ export declare const JobType: {
6023
+ readonly BATCH: "BATCH";
6024
+ readonly DELETE_ONLY: "DELETE_ONLY";
6025
+ readonly INCREMENTAL: "INCREMENTAL";
6026
+ };
6027
+ /**
6028
+ * @public
6029
+ */
6030
+ export type JobType = (typeof JobType)[keyof typeof JobType];
6018
6031
  /**
6019
6032
  * @public
6020
6033
  */
@@ -6029,6 +6042,11 @@ export interface PopulateIdMappingTableInput {
6029
6042
  * @public
6030
6043
  */
6031
6044
  membershipIdentifier: string | undefined;
6045
+ /**
6046
+ * <p>The job type of the rule-based ID mapping job. Valid values include:</p> <p> <code>INCREMENTAL</code>: Processes only new or changed data since the last job run. This is the default job type if the ID mapping workflow was created in Entity Resolution with <code>incrementalRunConfig</code> specified.</p> <p> <code>BATCH</code>: Processes all data from the input source, regardless of previous job runs. This is the default job type if the ID mapping workflow was created in Entity Resolution but <code>incrementalRunConfig</code> wasn't specified.</p> <p> <code>DELETE_ONLY</code>: Processes only deletion requests from <code>BatchDeleteUniqueId</code>, which is set in Entity Resolution.</p> <p>For more information about <code>incrementalRunConfig</code> and <code>BatchDeleteUniqueId</code>, see the <a href="https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html">Entity Resolution API Reference</a>.</p>
6047
+ * @public
6048
+ */
6049
+ jobType?: JobType | undefined;
6032
6050
  }
6033
6051
  /**
6034
6052
  * @public
@@ -6636,18 +6654,6 @@ export interface MembershipPaymentConfiguration {
6636
6654
  */
6637
6655
  jobCompute?: MembershipJobComputePaymentConfig | undefined;
6638
6656
  }
6639
- /**
6640
- * @public
6641
- * @enum
6642
- */
6643
- export declare const MembershipQueryLogStatus: {
6644
- readonly DISABLED: "DISABLED";
6645
- readonly ENABLED: "ENABLED";
6646
- };
6647
- /**
6648
- * @public
6649
- */
6650
- export type MembershipQueryLogStatus = (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
6651
6657
  /**
6652
6658
  * @internal
6653
6659
  */
@@ -1,4 +1,16 @@
1
- import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MembershipQueryLogStatus, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetTemplateParametersOutput, PrivacyBudgetType, ProtectedQueryS3OutputConfiguration } from "./models_0";
1
+ import { AnalysisType, DifferentialPrivacyAggregationType, MemberAbility, MembershipJobLogStatus, MembershipPaymentConfiguration, MembershipProtectedJobResultConfiguration, MembershipProtectedQueryResultConfiguration, MLMemberAbilities, PrivacyBudget, PrivacyBudgetTemplateAutoRefresh, PrivacyBudgetTemplateParametersOutput, PrivacyBudgetType, ProtectedQueryS3OutputConfiguration } from "./models_0";
2
+ /**
3
+ * @public
4
+ * @enum
5
+ */
6
+ export declare const MembershipQueryLogStatus: {
7
+ readonly DISABLED: "DISABLED";
8
+ readonly ENABLED: "ENABLED";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type MembershipQueryLogStatus = (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
2
14
  /**
3
15
  * @public
4
16
  */
@@ -1949,9 +1949,16 @@ export interface ListIdMappingTablesOutput {
1949
1949
  idMappingTableSummaries: IdMappingTableSummary[] | undefined;
1950
1950
  nextToken?: string | undefined;
1951
1951
  }
1952
+ export declare const JobType: {
1953
+ readonly BATCH: "BATCH";
1954
+ readonly DELETE_ONLY: "DELETE_ONLY";
1955
+ readonly INCREMENTAL: "INCREMENTAL";
1956
+ };
1957
+ export type JobType = (typeof JobType)[keyof typeof JobType];
1952
1958
  export interface PopulateIdMappingTableInput {
1953
1959
  idMappingTableIdentifier: string | undefined;
1954
1960
  membershipIdentifier: string | undefined;
1961
+ jobType?: JobType | undefined;
1955
1962
  }
1956
1963
  export interface PopulateIdMappingTableOutput {
1957
1964
  idMappingJobId: string | undefined;
@@ -2138,12 +2145,6 @@ export interface MembershipPaymentConfiguration {
2138
2145
  machineLearning?: MembershipMLPaymentConfig | undefined;
2139
2146
  jobCompute?: MembershipJobComputePaymentConfig | undefined;
2140
2147
  }
2141
- export declare const MembershipQueryLogStatus: {
2142
- readonly DISABLED: "DISABLED";
2143
- readonly ENABLED: "ENABLED";
2144
- };
2145
- export type MembershipQueryLogStatus =
2146
- (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
2147
2148
  export declare const AnalysisParameterFilterSensitiveLog: (
2148
2149
  obj: AnalysisParameter
2149
2150
  ) => any;
@@ -6,7 +6,6 @@ import {
6
6
  MembershipPaymentConfiguration,
7
7
  MembershipProtectedJobResultConfiguration,
8
8
  MembershipProtectedQueryResultConfiguration,
9
- MembershipQueryLogStatus,
10
9
  MLMemberAbilities,
11
10
  PrivacyBudget,
12
11
  PrivacyBudgetTemplateAutoRefresh,
@@ -14,6 +13,12 @@ import {
14
13
  PrivacyBudgetType,
15
14
  ProtectedQueryS3OutputConfiguration,
16
15
  } from "./models_0";
16
+ export declare const MembershipQueryLogStatus: {
17
+ readonly DISABLED: "DISABLED";
18
+ readonly ENABLED: "ENABLED";
19
+ };
20
+ export type MembershipQueryLogStatus =
21
+ (typeof MembershipQueryLogStatus)[keyof typeof MembershipQueryLogStatus];
17
22
  export interface CreateMembershipInput {
18
23
  collaborationIdentifier: string | undefined;
19
24
  queryLogStatus: MembershipQueryLogStatus | undefined;
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.894.0",
4
+ "version": "3.895.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",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.894.0",
24
- "@aws-sdk/credential-provider-node": "3.894.0",
24
+ "@aws-sdk/credential-provider-node": "3.895.0",
25
25
  "@aws-sdk/middleware-host-header": "3.893.0",
26
26
  "@aws-sdk/middleware-logger": "3.893.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
- "@aws-sdk/middleware-user-agent": "3.894.0",
28
+ "@aws-sdk/middleware-user-agent": "3.895.0",
29
29
  "@aws-sdk/region-config-resolver": "3.893.0",
30
30
  "@aws-sdk/types": "3.893.0",
31
- "@aws-sdk/util-endpoints": "3.893.0",
31
+ "@aws-sdk/util-endpoints": "3.895.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.893.0",
33
- "@aws-sdk/util-user-agent-node": "3.894.0",
33
+ "@aws-sdk/util-user-agent-node": "3.895.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.1",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",