@aws-sdk/client-qbusiness 3.511.0 → 3.514.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/README.md +81 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +193 -92
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/QBusinessClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/models/models_0.js +35 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/QBusiness.d.ts +83 -2
- package/dist-types/QBusinessClient.d.ts +96 -13
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +2 -2
- package/dist-types/commands/CreateRetrieverCommand.d.ts +21 -0
- package/dist-types/commands/GetRetrieverCommand.d.ts +21 -0
- package/dist-types/commands/PutFeedbackCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRetrieverCommand.d.ts +21 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/index.d.ts +83 -2
- package/dist-types/models/models_0.d.ts +239 -19
- package/dist-types/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/QBusinessClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -53,6 +53,8 @@ __export(src_exports, {
|
|
|
53
53
|
DeleteRetrieverCommand: () => DeleteRetrieverCommand,
|
|
54
54
|
DeleteUserCommand: () => DeleteUserCommand,
|
|
55
55
|
DeleteWebExperienceCommand: () => DeleteWebExperienceCommand,
|
|
56
|
+
DocumentAttributeBoostingConfiguration: () => DocumentAttributeBoostingConfiguration,
|
|
57
|
+
DocumentAttributeBoostingLevel: () => DocumentAttributeBoostingLevel,
|
|
56
58
|
DocumentAttributeValue: () => DocumentAttributeValue,
|
|
57
59
|
DocumentContent: () => DocumentContent,
|
|
58
60
|
DocumentContentOperator: () => DocumentContentOperator,
|
|
@@ -91,6 +93,7 @@ __export(src_exports, {
|
|
|
91
93
|
MessageType: () => MessageType,
|
|
92
94
|
MessageUsefulness: () => MessageUsefulness,
|
|
93
95
|
MessageUsefulnessReason: () => MessageUsefulnessReason,
|
|
96
|
+
NumberAttributeBoostingType: () => NumberAttributeBoostingType,
|
|
94
97
|
PluginAuthConfiguration: () => PluginAuthConfiguration,
|
|
95
98
|
PluginState: () => PluginState,
|
|
96
99
|
PluginType: () => PluginType,
|
|
@@ -112,6 +115,7 @@ __export(src_exports, {
|
|
|
112
115
|
StartDataSourceSyncJobCommand: () => StartDataSourceSyncJobCommand,
|
|
113
116
|
Status: () => Status,
|
|
114
117
|
StopDataSourceSyncJobCommand: () => StopDataSourceSyncJobCommand,
|
|
118
|
+
StringAttributeValueBoostingLevel: () => StringAttributeValueBoostingLevel,
|
|
115
119
|
TagResourceCommand: () => TagResourceCommand,
|
|
116
120
|
ThrottlingException: () => ThrottlingException,
|
|
117
121
|
UntagResourceCommand: () => UntagResourceCommand,
|
|
@@ -148,13 +152,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
148
152
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
149
153
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
150
154
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
151
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
152
155
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
153
156
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
157
|
+
var import_core = require("@smithy/core");
|
|
154
158
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
155
159
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
156
160
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
157
161
|
|
|
162
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
158
163
|
|
|
159
164
|
// src/endpoint/EndpointParameters.ts
|
|
160
165
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -177,19 +182,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
177
182
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
178
183
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
179
184
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
185
|
+
|
|
186
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
187
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
188
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
189
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
190
|
+
let _credentials = runtimeConfig.credentials;
|
|
191
|
+
return {
|
|
192
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
193
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
194
|
+
if (index === -1) {
|
|
195
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
196
|
+
} else {
|
|
197
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
httpAuthSchemes() {
|
|
201
|
+
return _httpAuthSchemes;
|
|
202
|
+
},
|
|
203
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
204
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
205
|
+
},
|
|
206
|
+
httpAuthSchemeProvider() {
|
|
207
|
+
return _httpAuthSchemeProvider;
|
|
208
|
+
},
|
|
209
|
+
setCredentials(credentials) {
|
|
210
|
+
_credentials = credentials;
|
|
211
|
+
},
|
|
212
|
+
credentials() {
|
|
213
|
+
return _credentials;
|
|
214
|
+
}
|
|
215
|
+
};
|
|
216
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
217
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
218
|
+
return {
|
|
219
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
220
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
221
|
+
credentials: config.credentials()
|
|
222
|
+
};
|
|
223
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
224
|
+
|
|
225
|
+
// src/runtimeExtensions.ts
|
|
180
226
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
181
227
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
182
228
|
const extensionConfiguration = {
|
|
183
229
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
184
230
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
185
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
231
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
232
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
186
233
|
};
|
|
187
234
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
188
235
|
return {
|
|
189
236
|
...runtimeConfig,
|
|
190
237
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
191
238
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
192
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
239
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
240
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
193
241
|
};
|
|
194
242
|
}, "resolveRuntimeExtensions");
|
|
195
243
|
|
|
@@ -202,8 +250,8 @@ var _QBusinessClient = class _QBusinessClient extends import_smithy_client.Clien
|
|
|
202
250
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
203
251
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
204
252
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
205
|
-
const _config_6 = (0,
|
|
206
|
-
const _config_7 = (0,
|
|
253
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
254
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
207
255
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
208
256
|
super(_config_8);
|
|
209
257
|
this.config = _config_8;
|
|
@@ -212,8 +260,14 @@ var _QBusinessClient = class _QBusinessClient extends import_smithy_client.Clien
|
|
|
212
260
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
213
261
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
214
262
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
215
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
216
263
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
264
|
+
this.middlewareStack.use(
|
|
265
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
266
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
267
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
268
|
+
})
|
|
269
|
+
);
|
|
270
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
217
271
|
}
|
|
218
272
|
/**
|
|
219
273
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -223,6 +277,14 @@ var _QBusinessClient = class _QBusinessClient extends import_smithy_client.Clien
|
|
|
223
277
|
destroy() {
|
|
224
278
|
super.destroy();
|
|
225
279
|
}
|
|
280
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
281
|
+
return import_httpAuthSchemeProvider.defaultQBusinessHttpAuthSchemeParametersProvider;
|
|
282
|
+
}
|
|
283
|
+
getIdentityProviderConfigProvider() {
|
|
284
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
285
|
+
"aws.auth#sigv4": config.credentials
|
|
286
|
+
});
|
|
287
|
+
}
|
|
226
288
|
};
|
|
227
289
|
__name(_QBusinessClient, "QBusinessClient");
|
|
228
290
|
var QBusinessClient = _QBusinessClient;
|
|
@@ -237,8 +299,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
237
299
|
var import_types = require("@smithy/types");
|
|
238
300
|
|
|
239
301
|
// src/protocols/Aws_restJson1.ts
|
|
240
|
-
var
|
|
241
|
-
|
|
302
|
+
var import_core2 = require("@aws-sdk/core");
|
|
303
|
+
|
|
242
304
|
|
|
243
305
|
var import_uuid = require("uuid");
|
|
244
306
|
|
|
@@ -515,6 +577,37 @@ var PluginState = {
|
|
|
515
577
|
DISABLED: "DISABLED",
|
|
516
578
|
ENABLED: "ENABLED"
|
|
517
579
|
};
|
|
580
|
+
var DocumentAttributeBoostingLevel = {
|
|
581
|
+
HIGH: "HIGH",
|
|
582
|
+
LOW: "LOW",
|
|
583
|
+
MEDIUM: "MEDIUM",
|
|
584
|
+
NONE: "NONE",
|
|
585
|
+
VERY_HIGH: "VERY_HIGH"
|
|
586
|
+
};
|
|
587
|
+
var NumberAttributeBoostingType = {
|
|
588
|
+
PRIORITIZE_LARGER_VALUES: "PRIORITIZE_LARGER_VALUES",
|
|
589
|
+
PRIORITIZE_SMALLER_VALUES: "PRIORITIZE_SMALLER_VALUES"
|
|
590
|
+
};
|
|
591
|
+
var StringAttributeValueBoostingLevel = {
|
|
592
|
+
HIGH: "HIGH",
|
|
593
|
+
LOW: "LOW",
|
|
594
|
+
MEDIUM: "MEDIUM",
|
|
595
|
+
VERY_HIGH: "VERY_HIGH"
|
|
596
|
+
};
|
|
597
|
+
var DocumentAttributeBoostingConfiguration;
|
|
598
|
+
((DocumentAttributeBoostingConfiguration3) => {
|
|
599
|
+
DocumentAttributeBoostingConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
600
|
+
if (value.numberConfiguration !== void 0)
|
|
601
|
+
return visitor.numberConfiguration(value.numberConfiguration);
|
|
602
|
+
if (value.stringConfiguration !== void 0)
|
|
603
|
+
return visitor.stringConfiguration(value.stringConfiguration);
|
|
604
|
+
if (value.dateConfiguration !== void 0)
|
|
605
|
+
return visitor.dateConfiguration(value.dateConfiguration);
|
|
606
|
+
if (value.stringListConfiguration !== void 0)
|
|
607
|
+
return visitor.stringListConfiguration(value.stringListConfiguration);
|
|
608
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
609
|
+
}, "visit");
|
|
610
|
+
})(DocumentAttributeBoostingConfiguration || (DocumentAttributeBoostingConfiguration = {}));
|
|
518
611
|
var RetrieverConfiguration;
|
|
519
612
|
((RetrieverConfiguration3) => {
|
|
520
613
|
RetrieverConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -652,8 +745,12 @@ var MessageUsefulnessReason = {
|
|
|
652
745
|
HARMFUL_OR_UNSAFE: "HARMFUL_OR_UNSAFE",
|
|
653
746
|
HELPFUL: "HELPFUL",
|
|
654
747
|
INCORRECT_OR_MISSING_SOURCES: "INCORRECT_OR_MISSING_SOURCES",
|
|
748
|
+
NOT_BASED_ON_DOCUMENTS: "NOT_BASED_ON_DOCUMENTS",
|
|
749
|
+
NOT_COMPLETE: "NOT_COMPLETE",
|
|
750
|
+
NOT_CONCISE: "NOT_CONCISE",
|
|
655
751
|
NOT_FACTUALLY_CORRECT: "NOT_FACTUALLY_CORRECT",
|
|
656
752
|
NOT_HELPFUL: "NOT_HELPFUL",
|
|
753
|
+
OTHER: "OTHER",
|
|
657
754
|
RELEVANT_SOURCES: "RELEVANT_SOURCES"
|
|
658
755
|
};
|
|
659
756
|
var MessageUsefulness = {
|
|
@@ -679,7 +776,7 @@ var GetApplicationResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => (
|
|
|
679
776
|
|
|
680
777
|
// src/protocols/Aws_restJson1.ts
|
|
681
778
|
var se_BatchDeleteDocumentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
682
|
-
const b = (0,
|
|
779
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
683
780
|
const headers = {
|
|
684
781
|
"content-type": "application/json"
|
|
685
782
|
};
|
|
@@ -697,7 +794,7 @@ var se_BatchDeleteDocumentCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
697
794
|
return b.build();
|
|
698
795
|
}, "se_BatchDeleteDocumentCommand");
|
|
699
796
|
var se_BatchPutDocumentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
700
|
-
const b = (0,
|
|
797
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
701
798
|
const headers = {
|
|
702
799
|
"content-type": "application/json"
|
|
703
800
|
};
|
|
@@ -716,7 +813,7 @@ var se_BatchPutDocumentCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
716
813
|
return b.build();
|
|
717
814
|
}, "se_BatchPutDocumentCommand");
|
|
718
815
|
var se_ChatSyncCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
719
|
-
const b = (0,
|
|
816
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
720
817
|
const headers = {
|
|
721
818
|
"content-type": "application/json"
|
|
722
819
|
};
|
|
@@ -743,7 +840,7 @@ var se_ChatSyncCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
743
840
|
return b.build();
|
|
744
841
|
}, "se_ChatSyncCommand");
|
|
745
842
|
var se_CreateApplicationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
746
|
-
const b = (0,
|
|
843
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
747
844
|
const headers = {
|
|
748
845
|
"content-type": "application/json"
|
|
749
846
|
};
|
|
@@ -764,7 +861,7 @@ var se_CreateApplicationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
764
861
|
return b.build();
|
|
765
862
|
}, "se_CreateApplicationCommand");
|
|
766
863
|
var se_CreateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
767
|
-
const b = (0,
|
|
864
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
768
865
|
const headers = {
|
|
769
866
|
"content-type": "application/json"
|
|
770
867
|
};
|
|
@@ -789,7 +886,7 @@ var se_CreateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
789
886
|
return b.build();
|
|
790
887
|
}, "se_CreateDataSourceCommand");
|
|
791
888
|
var se_CreateIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
792
|
-
const b = (0,
|
|
889
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
793
890
|
const headers = {
|
|
794
891
|
"content-type": "application/json"
|
|
795
892
|
};
|
|
@@ -809,7 +906,7 @@ var se_CreateIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
809
906
|
return b.build();
|
|
810
907
|
}, "se_CreateIndexCommand");
|
|
811
908
|
var se_CreatePluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
812
|
-
const b = (0,
|
|
909
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
813
910
|
const headers = {
|
|
814
911
|
"content-type": "application/json"
|
|
815
912
|
};
|
|
@@ -830,7 +927,7 @@ var se_CreatePluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
830
927
|
return b.build();
|
|
831
928
|
}, "se_CreatePluginCommand");
|
|
832
929
|
var se_CreateRetrieverCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
833
|
-
const b = (0,
|
|
930
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
834
931
|
const headers = {
|
|
835
932
|
"content-type": "application/json"
|
|
836
933
|
};
|
|
@@ -851,7 +948,7 @@ var se_CreateRetrieverCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
851
948
|
return b.build();
|
|
852
949
|
}, "se_CreateRetrieverCommand");
|
|
853
950
|
var se_CreateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
854
|
-
const b = (0,
|
|
951
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
855
952
|
const headers = {
|
|
856
953
|
"content-type": "application/json"
|
|
857
954
|
};
|
|
@@ -869,7 +966,7 @@ var se_CreateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
869
966
|
return b.build();
|
|
870
967
|
}, "se_CreateUserCommand");
|
|
871
968
|
var se_CreateWebExperienceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
872
|
-
const b = (0,
|
|
969
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
873
970
|
const headers = {
|
|
874
971
|
"content-type": "application/json"
|
|
875
972
|
};
|
|
@@ -890,7 +987,7 @@ var se_CreateWebExperienceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
890
987
|
return b.build();
|
|
891
988
|
}, "se_CreateWebExperienceCommand");
|
|
892
989
|
var se_DeleteApplicationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
893
|
-
const b = (0,
|
|
990
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
894
991
|
const headers = {};
|
|
895
992
|
b.bp("/applications/{applicationId}");
|
|
896
993
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -899,7 +996,7 @@ var se_DeleteApplicationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
899
996
|
return b.build();
|
|
900
997
|
}, "se_DeleteApplicationCommand");
|
|
901
998
|
var se_DeleteChatControlsConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
902
|
-
const b = (0,
|
|
999
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
903
1000
|
const headers = {};
|
|
904
1001
|
b.bp("/applications/{applicationId}/chatcontrols");
|
|
905
1002
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -908,7 +1005,7 @@ var se_DeleteChatControlsConfigurationCommand = /* @__PURE__ */ __name(async (in
|
|
|
908
1005
|
return b.build();
|
|
909
1006
|
}, "se_DeleteChatControlsConfigurationCommand");
|
|
910
1007
|
var se_DeleteConversationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
911
|
-
const b = (0,
|
|
1008
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
912
1009
|
const headers = {};
|
|
913
1010
|
b.bp("/applications/{applicationId}/conversations/{conversationId}");
|
|
914
1011
|
b.p("conversationId", () => input.conversationId, "{conversationId}", false);
|
|
@@ -921,7 +1018,7 @@ var se_DeleteConversationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
921
1018
|
return b.build();
|
|
922
1019
|
}, "se_DeleteConversationCommand");
|
|
923
1020
|
var se_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
924
|
-
const b = (0,
|
|
1021
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
925
1022
|
const headers = {};
|
|
926
1023
|
b.bp("/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}");
|
|
927
1024
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -932,7 +1029,7 @@ var se_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
932
1029
|
return b.build();
|
|
933
1030
|
}, "se_DeleteDataSourceCommand");
|
|
934
1031
|
var se_DeleteGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
935
|
-
const b = (0,
|
|
1032
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
936
1033
|
const headers = {};
|
|
937
1034
|
b.bp("/applications/{applicationId}/indices/{indexId}/groups/{groupName}");
|
|
938
1035
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -946,7 +1043,7 @@ var se_DeleteGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
946
1043
|
return b.build();
|
|
947
1044
|
}, "se_DeleteGroupCommand");
|
|
948
1045
|
var se_DeleteIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
949
|
-
const b = (0,
|
|
1046
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
950
1047
|
const headers = {};
|
|
951
1048
|
b.bp("/applications/{applicationId}/indices/{indexId}");
|
|
952
1049
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -956,7 +1053,7 @@ var se_DeleteIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
956
1053
|
return b.build();
|
|
957
1054
|
}, "se_DeleteIndexCommand");
|
|
958
1055
|
var se_DeletePluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
959
|
-
const b = (0,
|
|
1056
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
960
1057
|
const headers = {};
|
|
961
1058
|
b.bp("/applications/{applicationId}/plugins/{pluginId}");
|
|
962
1059
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -966,7 +1063,7 @@ var se_DeletePluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
966
1063
|
return b.build();
|
|
967
1064
|
}, "se_DeletePluginCommand");
|
|
968
1065
|
var se_DeleteRetrieverCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
969
|
-
const b = (0,
|
|
1066
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
970
1067
|
const headers = {};
|
|
971
1068
|
b.bp("/applications/{applicationId}/retrievers/{retrieverId}");
|
|
972
1069
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -976,7 +1073,7 @@ var se_DeleteRetrieverCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
976
1073
|
return b.build();
|
|
977
1074
|
}, "se_DeleteRetrieverCommand");
|
|
978
1075
|
var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
979
|
-
const b = (0,
|
|
1076
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
980
1077
|
const headers = {};
|
|
981
1078
|
b.bp("/applications/{applicationId}/users/{userId}");
|
|
982
1079
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -986,7 +1083,7 @@ var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
986
1083
|
return b.build();
|
|
987
1084
|
}, "se_DeleteUserCommand");
|
|
988
1085
|
var se_DeleteWebExperienceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
989
|
-
const b = (0,
|
|
1086
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
990
1087
|
const headers = {};
|
|
991
1088
|
b.bp("/applications/{applicationId}/experiences/{webExperienceId}");
|
|
992
1089
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -996,7 +1093,7 @@ var se_DeleteWebExperienceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
996
1093
|
return b.build();
|
|
997
1094
|
}, "se_DeleteWebExperienceCommand");
|
|
998
1095
|
var se_GetApplicationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
999
|
-
const b = (0,
|
|
1096
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1000
1097
|
const headers = {};
|
|
1001
1098
|
b.bp("/applications/{applicationId}");
|
|
1002
1099
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1005,7 +1102,7 @@ var se_GetApplicationCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1005
1102
|
return b.build();
|
|
1006
1103
|
}, "se_GetApplicationCommand");
|
|
1007
1104
|
var se_GetChatControlsConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1008
|
-
const b = (0,
|
|
1105
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1009
1106
|
const headers = {};
|
|
1010
1107
|
b.bp("/applications/{applicationId}/chatcontrols");
|
|
1011
1108
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1018,7 +1115,7 @@ var se_GetChatControlsConfigurationCommand = /* @__PURE__ */ __name(async (input
|
|
|
1018
1115
|
return b.build();
|
|
1019
1116
|
}, "se_GetChatControlsConfigurationCommand");
|
|
1020
1117
|
var se_GetDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1021
|
-
const b = (0,
|
|
1118
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1022
1119
|
const headers = {};
|
|
1023
1120
|
b.bp("/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}");
|
|
1024
1121
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1029,7 +1126,7 @@ var se_GetDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1029
1126
|
return b.build();
|
|
1030
1127
|
}, "se_GetDataSourceCommand");
|
|
1031
1128
|
var se_GetGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1032
|
-
const b = (0,
|
|
1129
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1033
1130
|
const headers = {};
|
|
1034
1131
|
b.bp("/applications/{applicationId}/indices/{indexId}/groups/{groupName}");
|
|
1035
1132
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1043,7 +1140,7 @@ var se_GetGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1043
1140
|
return b.build();
|
|
1044
1141
|
}, "se_GetGroupCommand");
|
|
1045
1142
|
var se_GetIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1046
|
-
const b = (0,
|
|
1143
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1047
1144
|
const headers = {};
|
|
1048
1145
|
b.bp("/applications/{applicationId}/indices/{indexId}");
|
|
1049
1146
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1053,7 +1150,7 @@ var se_GetIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1053
1150
|
return b.build();
|
|
1054
1151
|
}, "se_GetIndexCommand");
|
|
1055
1152
|
var se_GetPluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1056
|
-
const b = (0,
|
|
1153
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1057
1154
|
const headers = {};
|
|
1058
1155
|
b.bp("/applications/{applicationId}/plugins/{pluginId}");
|
|
1059
1156
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1063,7 +1160,7 @@ var se_GetPluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1063
1160
|
return b.build();
|
|
1064
1161
|
}, "se_GetPluginCommand");
|
|
1065
1162
|
var se_GetRetrieverCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1066
|
-
const b = (0,
|
|
1163
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1067
1164
|
const headers = {};
|
|
1068
1165
|
b.bp("/applications/{applicationId}/retrievers/{retrieverId}");
|
|
1069
1166
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1073,7 +1170,7 @@ var se_GetRetrieverCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1073
1170
|
return b.build();
|
|
1074
1171
|
}, "se_GetRetrieverCommand");
|
|
1075
1172
|
var se_GetUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1076
|
-
const b = (0,
|
|
1173
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1077
1174
|
const headers = {};
|
|
1078
1175
|
b.bp("/applications/{applicationId}/users/{userId}");
|
|
1079
1176
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1083,7 +1180,7 @@ var se_GetUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1083
1180
|
return b.build();
|
|
1084
1181
|
}, "se_GetUserCommand");
|
|
1085
1182
|
var se_GetWebExperienceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1086
|
-
const b = (0,
|
|
1183
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1087
1184
|
const headers = {};
|
|
1088
1185
|
b.bp("/applications/{applicationId}/experiences/{webExperienceId}");
|
|
1089
1186
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1093,7 +1190,7 @@ var se_GetWebExperienceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1093
1190
|
return b.build();
|
|
1094
1191
|
}, "se_GetWebExperienceCommand");
|
|
1095
1192
|
var se_ListApplicationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1096
|
-
const b = (0,
|
|
1193
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1097
1194
|
const headers = {};
|
|
1098
1195
|
b.bp("/applications");
|
|
1099
1196
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1105,7 +1202,7 @@ var se_ListApplicationsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1105
1202
|
return b.build();
|
|
1106
1203
|
}, "se_ListApplicationsCommand");
|
|
1107
1204
|
var se_ListConversationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1108
|
-
const b = (0,
|
|
1205
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1109
1206
|
const headers = {};
|
|
1110
1207
|
b.bp("/applications/{applicationId}/conversations");
|
|
1111
1208
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1119,7 +1216,7 @@ var se_ListConversationsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1119
1216
|
return b.build();
|
|
1120
1217
|
}, "se_ListConversationsCommand");
|
|
1121
1218
|
var se_ListDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1122
|
-
const b = (0,
|
|
1219
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1123
1220
|
const headers = {};
|
|
1124
1221
|
b.bp("/applications/{applicationId}/indices/{indexId}/datasources");
|
|
1125
1222
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1133,7 +1230,7 @@ var se_ListDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1133
1230
|
return b.build();
|
|
1134
1231
|
}, "se_ListDataSourcesCommand");
|
|
1135
1232
|
var se_ListDataSourceSyncJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1136
|
-
const b = (0,
|
|
1233
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1137
1234
|
const headers = {};
|
|
1138
1235
|
b.bp("/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}/syncjobs");
|
|
1139
1236
|
b.p("dataSourceId", () => input.dataSourceId, "{dataSourceId}", false);
|
|
@@ -1151,7 +1248,7 @@ var se_ListDataSourceSyncJobsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1151
1248
|
return b.build();
|
|
1152
1249
|
}, "se_ListDataSourceSyncJobsCommand");
|
|
1153
1250
|
var se_ListDocumentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1154
|
-
const b = (0,
|
|
1251
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1155
1252
|
const headers = {};
|
|
1156
1253
|
b.bp("/applications/{applicationId}/index/{indexId}/documents");
|
|
1157
1254
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1166,7 +1263,7 @@ var se_ListDocumentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1166
1263
|
return b.build();
|
|
1167
1264
|
}, "se_ListDocumentsCommand");
|
|
1168
1265
|
var se_ListGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1169
|
-
const b = (0,
|
|
1266
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1170
1267
|
const headers = {};
|
|
1171
1268
|
b.bp("/applications/{applicationId}/indices/{indexId}/groups");
|
|
1172
1269
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1185,7 +1282,7 @@ var se_ListGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1185
1282
|
return b.build();
|
|
1186
1283
|
}, "se_ListGroupsCommand");
|
|
1187
1284
|
var se_ListIndicesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1188
|
-
const b = (0,
|
|
1285
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1189
1286
|
const headers = {};
|
|
1190
1287
|
b.bp("/applications/{applicationId}/indices");
|
|
1191
1288
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1198,7 +1295,7 @@ var se_ListIndicesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1198
1295
|
return b.build();
|
|
1199
1296
|
}, "se_ListIndicesCommand");
|
|
1200
1297
|
var se_ListMessagesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1201
|
-
const b = (0,
|
|
1298
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1202
1299
|
const headers = {};
|
|
1203
1300
|
b.bp("/applications/{applicationId}/conversations/{conversationId}");
|
|
1204
1301
|
b.p("conversationId", () => input.conversationId, "{conversationId}", false);
|
|
@@ -1213,7 +1310,7 @@ var se_ListMessagesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1213
1310
|
return b.build();
|
|
1214
1311
|
}, "se_ListMessagesCommand");
|
|
1215
1312
|
var se_ListPluginsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1216
|
-
const b = (0,
|
|
1313
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1217
1314
|
const headers = {};
|
|
1218
1315
|
b.bp("/applications/{applicationId}/plugins");
|
|
1219
1316
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1226,7 +1323,7 @@ var se_ListPluginsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1226
1323
|
return b.build();
|
|
1227
1324
|
}, "se_ListPluginsCommand");
|
|
1228
1325
|
var se_ListRetrieversCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1229
|
-
const b = (0,
|
|
1326
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1230
1327
|
const headers = {};
|
|
1231
1328
|
b.bp("/applications/{applicationId}/retrievers");
|
|
1232
1329
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1239,7 +1336,7 @@ var se_ListRetrieversCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1239
1336
|
return b.build();
|
|
1240
1337
|
}, "se_ListRetrieversCommand");
|
|
1241
1338
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1242
|
-
const b = (0,
|
|
1339
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1243
1340
|
const headers = {};
|
|
1244
1341
|
b.bp("/v1/tags/{resourceARN}");
|
|
1245
1342
|
b.p("resourceARN", () => input.resourceARN, "{resourceARN}", false);
|
|
@@ -1248,7 +1345,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1248
1345
|
return b.build();
|
|
1249
1346
|
}, "se_ListTagsForResourceCommand");
|
|
1250
1347
|
var se_ListWebExperiencesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1251
|
-
const b = (0,
|
|
1348
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1252
1349
|
const headers = {};
|
|
1253
1350
|
b.bp("/applications/{applicationId}/experiences");
|
|
1254
1351
|
b.p("applicationId", () => input.applicationId, "{applicationId}", false);
|
|
@@ -1261,7 +1358,7 @@ var se_ListWebExperiencesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1261
1358
|
return b.build();
|
|
1262
1359
|
}, "se_ListWebExperiencesCommand");
|
|
1263
1360
|
var se_PutFeedbackCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1264
|
-
const b = (0,
|
|
1361
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1265
1362
|
const headers = {
|
|
1266
1363
|
"content-type": "application/json"
|
|
1267
1364
|
};
|
|
@@ -1283,7 +1380,7 @@ var se_PutFeedbackCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1283
1380
|
return b.build();
|
|
1284
1381
|
}, "se_PutFeedbackCommand");
|
|
1285
1382
|
var se_PutGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1286
|
-
const b = (0,
|
|
1383
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1287
1384
|
const headers = {
|
|
1288
1385
|
"content-type": "application/json"
|
|
1289
1386
|
};
|
|
@@ -1303,7 +1400,7 @@ var se_PutGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1303
1400
|
return b.build();
|
|
1304
1401
|
}, "se_PutGroupCommand");
|
|
1305
1402
|
var se_StartDataSourceSyncJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1306
|
-
const b = (0,
|
|
1403
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1307
1404
|
const headers = {};
|
|
1308
1405
|
b.bp("/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}/startsync");
|
|
1309
1406
|
b.p("dataSourceId", () => input.dataSourceId, "{dataSourceId}", false);
|
|
@@ -1314,7 +1411,7 @@ var se_StartDataSourceSyncJobCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1314
1411
|
return b.build();
|
|
1315
1412
|
}, "se_StartDataSourceSyncJobCommand");
|
|
1316
1413
|
var se_StopDataSourceSyncJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1317
|
-
const b = (0,
|
|
1414
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1318
1415
|
const headers = {};
|
|
1319
1416
|
b.bp("/applications/{applicationId}/indices/{indexId}/datasources/{dataSourceId}/stopsync");
|
|
1320
1417
|
b.p("dataSourceId", () => input.dataSourceId, "{dataSourceId}", false);
|
|
@@ -1325,7 +1422,7 @@ var se_StopDataSourceSyncJobCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1325
1422
|
return b.build();
|
|
1326
1423
|
}, "se_StopDataSourceSyncJobCommand");
|
|
1327
1424
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1328
|
-
const b = (0,
|
|
1425
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1329
1426
|
const headers = {
|
|
1330
1427
|
"content-type": "application/json"
|
|
1331
1428
|
};
|
|
@@ -1341,7 +1438,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1341
1438
|
return b.build();
|
|
1342
1439
|
}, "se_TagResourceCommand");
|
|
1343
1440
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1344
|
-
const b = (0,
|
|
1441
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1345
1442
|
const headers = {};
|
|
1346
1443
|
b.bp("/v1/tags/{resourceARN}");
|
|
1347
1444
|
b.p("resourceARN", () => input.resourceARN, "{resourceARN}", false);
|
|
@@ -1356,7 +1453,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1356
1453
|
return b.build();
|
|
1357
1454
|
}, "se_UntagResourceCommand");
|
|
1358
1455
|
var se_UpdateApplicationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1359
|
-
const b = (0,
|
|
1456
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1360
1457
|
const headers = {
|
|
1361
1458
|
"content-type": "application/json"
|
|
1362
1459
|
};
|
|
@@ -1375,7 +1472,7 @@ var se_UpdateApplicationCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1375
1472
|
return b.build();
|
|
1376
1473
|
}, "se_UpdateApplicationCommand");
|
|
1377
1474
|
var se_UpdateChatControlsConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1378
|
-
const b = (0,
|
|
1475
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1379
1476
|
const headers = {
|
|
1380
1477
|
"content-type": "application/json"
|
|
1381
1478
|
};
|
|
@@ -1395,7 +1492,7 @@ var se_UpdateChatControlsConfigurationCommand = /* @__PURE__ */ __name(async (in
|
|
|
1395
1492
|
return b.build();
|
|
1396
1493
|
}, "se_UpdateChatControlsConfigurationCommand");
|
|
1397
1494
|
var se_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1398
|
-
const b = (0,
|
|
1495
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1399
1496
|
const headers = {
|
|
1400
1497
|
"content-type": "application/json"
|
|
1401
1498
|
};
|
|
@@ -1419,7 +1516,7 @@ var se_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1419
1516
|
return b.build();
|
|
1420
1517
|
}, "se_UpdateDataSourceCommand");
|
|
1421
1518
|
var se_UpdateIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1422
|
-
const b = (0,
|
|
1519
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1423
1520
|
const headers = {
|
|
1424
1521
|
"content-type": "application/json"
|
|
1425
1522
|
};
|
|
@@ -1439,7 +1536,7 @@ var se_UpdateIndexCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1439
1536
|
return b.build();
|
|
1440
1537
|
}, "se_UpdateIndexCommand");
|
|
1441
1538
|
var se_UpdatePluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1442
|
-
const b = (0,
|
|
1539
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1443
1540
|
const headers = {
|
|
1444
1541
|
"content-type": "application/json"
|
|
1445
1542
|
};
|
|
@@ -1459,7 +1556,7 @@ var se_UpdatePluginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1459
1556
|
return b.build();
|
|
1460
1557
|
}, "se_UpdatePluginCommand");
|
|
1461
1558
|
var se_UpdateRetrieverCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1462
|
-
const b = (0,
|
|
1559
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1463
1560
|
const headers = {
|
|
1464
1561
|
"content-type": "application/json"
|
|
1465
1562
|
};
|
|
@@ -1478,7 +1575,7 @@ var se_UpdateRetrieverCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1478
1575
|
return b.build();
|
|
1479
1576
|
}, "se_UpdateRetrieverCommand");
|
|
1480
1577
|
var se_UpdateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1481
|
-
const b = (0,
|
|
1578
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1482
1579
|
const headers = {
|
|
1483
1580
|
"content-type": "application/json"
|
|
1484
1581
|
};
|
|
@@ -1496,7 +1593,7 @@ var se_UpdateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1496
1593
|
return b.build();
|
|
1497
1594
|
}, "se_UpdateUserCommand");
|
|
1498
1595
|
var se_UpdateWebExperienceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1499
|
-
const b = (0,
|
|
1596
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1500
1597
|
const headers = {
|
|
1501
1598
|
"content-type": "application/json"
|
|
1502
1599
|
};
|
|
@@ -1884,7 +1981,7 @@ var de_GetPluginCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1884
1981
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
1885
1982
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1886
1983
|
applicationId: import_smithy_client.expectString,
|
|
1887
|
-
authConfiguration: (_) => (0, import_smithy_client._json)((0,
|
|
1984
|
+
authConfiguration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
1888
1985
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1889
1986
|
displayName: import_smithy_client.expectString,
|
|
1890
1987
|
pluginArn: import_smithy_client.expectString,
|
|
@@ -1907,7 +2004,7 @@ var de_GetRetrieverCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1907
2004
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
1908
2005
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1909
2006
|
applicationId: import_smithy_client.expectString,
|
|
1910
|
-
configuration: (_) => (0, import_smithy_client._json)((0,
|
|
2007
|
+
configuration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
1911
2008
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1912
2009
|
displayName: import_smithy_client.expectString,
|
|
1913
2010
|
retrieverArn: import_smithy_client.expectString,
|
|
@@ -1944,7 +2041,7 @@ var de_GetWebExperienceCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1944
2041
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
1945
2042
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1946
2043
|
applicationId: import_smithy_client.expectString,
|
|
1947
|
-
authenticationConfiguration: (_) => (0, import_smithy_client._json)((0,
|
|
2044
|
+
authenticationConfiguration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
1948
2045
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1949
2046
|
defaultEndpoint: import_smithy_client.expectString,
|
|
1950
2047
|
error: import_smithy_client._json,
|
|
@@ -2725,14 +2822,14 @@ var de_DocumentAttributeCondition = /* @__PURE__ */ __name((output, context) =>
|
|
|
2725
2822
|
return (0, import_smithy_client.take)(output, {
|
|
2726
2823
|
key: import_smithy_client.expectString,
|
|
2727
2824
|
operator: import_smithy_client.expectString,
|
|
2728
|
-
value: (_) => de_DocumentAttributeValue((0,
|
|
2825
|
+
value: (_) => de_DocumentAttributeValue((0, import_core2.awsExpectUnion)(_), context)
|
|
2729
2826
|
});
|
|
2730
2827
|
}, "de_DocumentAttributeCondition");
|
|
2731
2828
|
var de_DocumentAttributeTarget = /* @__PURE__ */ __name((output, context) => {
|
|
2732
2829
|
return (0, import_smithy_client.take)(output, {
|
|
2733
2830
|
attributeValueOperator: import_smithy_client.expectString,
|
|
2734
2831
|
key: import_smithy_client.expectString,
|
|
2735
|
-
value: (_) => de_DocumentAttributeValue((0,
|
|
2832
|
+
value: (_) => de_DocumentAttributeValue((0, import_core2.awsExpectUnion)(_), context)
|
|
2736
2833
|
});
|
|
2737
2834
|
}, "de_DocumentAttributeTarget");
|
|
2738
2835
|
var de_DocumentAttributeValue = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -3951,52 +4048,52 @@ var QBusiness = _QBusiness;
|
|
|
3951
4048
|
(0, import_smithy_client.createAggregatedClient)(commands, QBusiness);
|
|
3952
4049
|
|
|
3953
4050
|
// src/pagination/GetChatControlsConfigurationPaginator.ts
|
|
3954
|
-
|
|
3955
|
-
var paginateGetChatControlsConfiguration = (0,
|
|
4051
|
+
|
|
4052
|
+
var paginateGetChatControlsConfiguration = (0, import_core.createPaginator)(QBusinessClient, GetChatControlsConfigurationCommand, "nextToken", "nextToken", "maxResults");
|
|
3956
4053
|
|
|
3957
4054
|
// src/pagination/ListApplicationsPaginator.ts
|
|
3958
|
-
|
|
3959
|
-
var paginateListApplications = (0,
|
|
4055
|
+
|
|
4056
|
+
var paginateListApplications = (0, import_core.createPaginator)(QBusinessClient, ListApplicationsCommand, "nextToken", "nextToken", "maxResults");
|
|
3960
4057
|
|
|
3961
4058
|
// src/pagination/ListConversationsPaginator.ts
|
|
3962
|
-
|
|
3963
|
-
var paginateListConversations = (0,
|
|
4059
|
+
|
|
4060
|
+
var paginateListConversations = (0, import_core.createPaginator)(QBusinessClient, ListConversationsCommand, "nextToken", "nextToken", "maxResults");
|
|
3964
4061
|
|
|
3965
4062
|
// src/pagination/ListDataSourceSyncJobsPaginator.ts
|
|
3966
|
-
|
|
3967
|
-
var paginateListDataSourceSyncJobs = (0,
|
|
4063
|
+
|
|
4064
|
+
var paginateListDataSourceSyncJobs = (0, import_core.createPaginator)(QBusinessClient, ListDataSourceSyncJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
3968
4065
|
|
|
3969
4066
|
// src/pagination/ListDataSourcesPaginator.ts
|
|
3970
|
-
|
|
3971
|
-
var paginateListDataSources = (0,
|
|
4067
|
+
|
|
4068
|
+
var paginateListDataSources = (0, import_core.createPaginator)(QBusinessClient, ListDataSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
3972
4069
|
|
|
3973
4070
|
// src/pagination/ListDocumentsPaginator.ts
|
|
3974
|
-
|
|
3975
|
-
var paginateListDocuments = (0,
|
|
4071
|
+
|
|
4072
|
+
var paginateListDocuments = (0, import_core.createPaginator)(QBusinessClient, ListDocumentsCommand, "nextToken", "nextToken", "maxResults");
|
|
3976
4073
|
|
|
3977
4074
|
// src/pagination/ListGroupsPaginator.ts
|
|
3978
|
-
|
|
3979
|
-
var paginateListGroups = (0,
|
|
4075
|
+
|
|
4076
|
+
var paginateListGroups = (0, import_core.createPaginator)(QBusinessClient, ListGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
3980
4077
|
|
|
3981
4078
|
// src/pagination/ListIndicesPaginator.ts
|
|
3982
|
-
|
|
3983
|
-
var paginateListIndices = (0,
|
|
4079
|
+
|
|
4080
|
+
var paginateListIndices = (0, import_core.createPaginator)(QBusinessClient, ListIndicesCommand, "nextToken", "nextToken", "maxResults");
|
|
3984
4081
|
|
|
3985
4082
|
// src/pagination/ListMessagesPaginator.ts
|
|
3986
|
-
|
|
3987
|
-
var paginateListMessages = (0,
|
|
4083
|
+
|
|
4084
|
+
var paginateListMessages = (0, import_core.createPaginator)(QBusinessClient, ListMessagesCommand, "nextToken", "nextToken", "maxResults");
|
|
3988
4085
|
|
|
3989
4086
|
// src/pagination/ListPluginsPaginator.ts
|
|
3990
|
-
|
|
3991
|
-
var paginateListPlugins = (0,
|
|
4087
|
+
|
|
4088
|
+
var paginateListPlugins = (0, import_core.createPaginator)(QBusinessClient, ListPluginsCommand, "nextToken", "nextToken", "maxResults");
|
|
3992
4089
|
|
|
3993
4090
|
// src/pagination/ListRetrieversPaginator.ts
|
|
3994
|
-
|
|
3995
|
-
var paginateListRetrievers = (0,
|
|
4091
|
+
|
|
4092
|
+
var paginateListRetrievers = (0, import_core.createPaginator)(QBusinessClient, ListRetrieversCommand, "nextToken", "nextToken", "maxResults");
|
|
3996
4093
|
|
|
3997
4094
|
// src/pagination/ListWebExperiencesPaginator.ts
|
|
3998
|
-
|
|
3999
|
-
var paginateListWebExperiences = (0,
|
|
4095
|
+
|
|
4096
|
+
var paginateListWebExperiences = (0, import_core.createPaginator)(QBusinessClient, ListWebExperiencesCommand, "nextToken", "nextToken", "maxResults");
|
|
4000
4097
|
|
|
4001
4098
|
// src/index.ts
|
|
4002
4099
|
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
@@ -4102,6 +4199,10 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
4102
4199
|
IndexStatus,
|
|
4103
4200
|
PluginAuthConfiguration,
|
|
4104
4201
|
PluginState,
|
|
4202
|
+
DocumentAttributeBoostingLevel,
|
|
4203
|
+
NumberAttributeBoostingType,
|
|
4204
|
+
StringAttributeValueBoostingLevel,
|
|
4205
|
+
DocumentAttributeBoostingConfiguration,
|
|
4105
4206
|
RetrieverConfiguration,
|
|
4106
4207
|
RetrieverType,
|
|
4107
4208
|
RetrieverStatus,
|