@aws-sdk/client-bedrock 3.995.0 → 3.996.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 +21 -18
- package/dist-cjs/schemas/schemas_0.js +220 -49
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +209 -38
- package/dist-types/commands/CreateInferenceProfileCommand.d.ts +1 -1
- package/dist-types/commands/GetAutomatedReasoningPolicyBuildWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand.d.ts +85 -1
- package/dist-types/commands/GetGuardrailCommand.d.ts +2 -1
- package/dist-types/commands/ListAutomatedReasoningPolicyBuildWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/ListGuardrailsCommand.d.ts +1 -1
- package/dist-types/commands/StartAutomatedReasoningPolicyBuildWorkflowCommand.d.ts +11 -1
- package/dist-types/commands/UpdateGuardrailCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +447 -533
- package/dist-types/models/models_1.d.ts +506 -2
- package/dist-types/schemas/schemas_0.d.ts +14 -0
- package/dist-types/ts3.4/commands/CreateInferenceProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetGuardrailCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListGuardrailsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGuardrailCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +178 -131
- package/dist-types/ts3.4/models/models_1.d.ts +147 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -1481,6 +1481,7 @@ const AutomatedReasoningCheckResult = {
|
|
|
1481
1481
|
VALID: "VALID",
|
|
1482
1482
|
};
|
|
1483
1483
|
const AutomatedReasoningPolicyBuildWorkflowType = {
|
|
1484
|
+
GENERATE_FIDELITY_REPORT: "GENERATE_FIDELITY_REPORT",
|
|
1484
1485
|
IMPORT_POLICY: "IMPORT_POLICY",
|
|
1485
1486
|
INGEST_CONTENT: "INGEST_CONTENT",
|
|
1486
1487
|
REFINE_POLICY: "REFINE_POLICY",
|
|
@@ -1500,11 +1501,14 @@ const AutomatedReasoningPolicyBuildWorkflowStatus = {
|
|
|
1500
1501
|
TESTING: "TESTING",
|
|
1501
1502
|
};
|
|
1502
1503
|
const AutomatedReasoningPolicyBuildResultAssetType = {
|
|
1504
|
+
ASSET_MANIFEST: "ASSET_MANIFEST",
|
|
1503
1505
|
BUILD_LOG: "BUILD_LOG",
|
|
1506
|
+
FIDELITY_REPORT: "FIDELITY_REPORT",
|
|
1504
1507
|
GENERATED_TEST_CASES: "GENERATED_TEST_CASES",
|
|
1505
1508
|
POLICY_DEFINITION: "POLICY_DEFINITION",
|
|
1506
1509
|
POLICY_SCENARIOS: "POLICY_SCENARIOS",
|
|
1507
1510
|
QUALITY_REPORT: "QUALITY_REPORT",
|
|
1511
|
+
SOURCE_DOCUMENT: "SOURCE_DOCUMENT",
|
|
1508
1512
|
};
|
|
1509
1513
|
const AutomatedReasoningPolicyBuildMessageType = {
|
|
1510
1514
|
ERROR: "ERROR",
|
|
@@ -1833,18 +1837,9 @@ const FineTuningJobStatus = {
|
|
|
1833
1837
|
STOPPING: "Stopping",
|
|
1834
1838
|
};
|
|
1835
1839
|
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
});
|
|
1840
|
-
Object.defineProperty(exports, "__Client", {
|
|
1841
|
-
enumerable: true,
|
|
1842
|
-
get: function () { return smithyClient.Client; }
|
|
1843
|
-
});
|
|
1844
|
-
Object.defineProperty(exports, "BedrockServiceException", {
|
|
1845
|
-
enumerable: true,
|
|
1846
|
-
get: function () { return BedrockServiceException.BedrockServiceException; }
|
|
1847
|
-
});
|
|
1840
|
+
exports.$Command = smithyClient.Command;
|
|
1841
|
+
exports.__Client = smithyClient.Client;
|
|
1842
|
+
exports.BedrockServiceException = BedrockServiceException.BedrockServiceException;
|
|
1848
1843
|
exports.AgreementStatus = AgreementStatus;
|
|
1849
1844
|
exports.ApplicationType = ApplicationType;
|
|
1850
1845
|
exports.AttributeType = AttributeType;
|
|
@@ -2034,15 +2029,23 @@ exports.paginateListModelImportJobs = paginateListModelImportJobs;
|
|
|
2034
2029
|
exports.paginateListModelInvocationJobs = paginateListModelInvocationJobs;
|
|
2035
2030
|
exports.paginateListPromptRouters = paginateListPromptRouters;
|
|
2036
2031
|
exports.paginateListProvisionedModelThroughputs = paginateListProvisionedModelThroughputs;
|
|
2037
|
-
Object.
|
|
2038
|
-
|
|
2032
|
+
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
2033
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2034
|
+
Object.defineProperty(exports, '__proto__', {
|
|
2039
2035
|
enumerable: true,
|
|
2040
|
-
|
|
2036
|
+
value: schemas_0['__proto__']
|
|
2041
2037
|
});
|
|
2038
|
+
|
|
2039
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
2040
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
2042
2041
|
});
|
|
2043
|
-
Object.
|
|
2044
|
-
|
|
2042
|
+
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
2043
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2044
|
+
Object.defineProperty(exports, '__proto__', {
|
|
2045
2045
|
enumerable: true,
|
|
2046
|
-
|
|
2046
|
+
value: errors['__proto__']
|
|
2047
2047
|
});
|
|
2048
|
+
|
|
2049
|
+
Object.keys(errors).forEach(function (k) {
|
|
2050
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
2048
2051
|
});
|