@aws-sdk/client-bedrock 3.835.0 → 3.839.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 +48 -0
- package/dist-cjs/index.js +417 -120
- package/dist-es/Bedrock.js +12 -0
- package/dist-es/commands/CreateFoundationModelAgreementCommand.js +22 -0
- package/dist-es/commands/CreateModelCustomizationJobCommand.js +1 -1
- package/dist-es/commands/DeleteFoundationModelAgreementCommand.js +22 -0
- package/dist-es/commands/GetFoundationModelAvailabilityCommand.js +22 -0
- package/dist-es/commands/GetModelCustomizationJobCommand.js +1 -1
- package/dist-es/commands/GetUseCaseForModelAccessCommand.js +22 -0
- package/dist-es/commands/ListFoundationModelAgreementOffersCommand.js +22 -0
- package/dist-es/commands/PutUseCaseForModelAccessCommand.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +54 -126
- package/dist-es/models/models_1.js +95 -1
- package/dist-es/protocols/Aws_restJson1.js +153 -2
- package/dist-types/Bedrock.d.ts +43 -0
- package/dist-types/BedrockClient.d.ts +8 -2
- package/dist-types/commands/CreateFoundationModelAgreementCommand.d.ts +91 -0
- package/dist-types/commands/CreateModelCustomizationJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFoundationModelAgreementCommand.d.ts +88 -0
- package/dist-types/commands/GetFoundationModelAvailabilityCommand.d.ts +94 -0
- package/dist-types/commands/GetModelCustomizationJobCommand.d.ts +1 -1
- package/dist-types/commands/GetUseCaseForModelAccessCommand.d.ts +82 -0
- package/dist-types/commands/ListFoundationModelAgreementOffersCommand.d.ts +116 -0
- package/dist-types/commands/ListModelCustomizationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutUseCaseForModelAccessCommand.d.ts +82 -0
- package/dist-types/commands/StopModelCustomizationJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +239 -804
- package/dist-types/models/models_1.d.ts +901 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/Bedrock.d.ts +109 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateFoundationModelAgreementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateModelCustomizationJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteFoundationModelAgreementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetFoundationModelAvailabilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetModelCustomizationJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetUseCaseForModelAccessCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFoundationModelAgreementOffersCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListModelCustomizationJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutUseCaseForModelAccessCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopModelCustomizationJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +107 -425
- package/dist-types/ts3.4/models/models_1.d.ts +431 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +11 -11
|
@@ -8,6 +8,54 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
+
export declare const AgreementStatus: {
|
|
12
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
13
|
+
readonly ERROR: "ERROR";
|
|
14
|
+
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
15
|
+
readonly PENDING: "PENDING";
|
|
16
|
+
};
|
|
17
|
+
export type AgreementStatus =
|
|
18
|
+
(typeof AgreementStatus)[keyof typeof AgreementStatus];
|
|
19
|
+
export interface AgreementAvailability {
|
|
20
|
+
status: AgreementStatus | undefined;
|
|
21
|
+
errorMessage?: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export interface GetUseCaseForModelAccessRequest {}
|
|
24
|
+
export interface GetUseCaseForModelAccessResponse {
|
|
25
|
+
formData: Uint8Array | undefined;
|
|
26
|
+
}
|
|
27
|
+
export declare class InternalServerException extends __BaseException {
|
|
28
|
+
readonly name: "InternalServerException";
|
|
29
|
+
readonly $fault: "server";
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
35
|
+
readonly name: "ResourceNotFoundException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ThrottlingException extends __BaseException {
|
|
42
|
+
readonly name: "ThrottlingException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
export declare class ValidationException extends __BaseException {
|
|
49
|
+
readonly name: "ValidationException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export interface PutUseCaseForModelAccessRequest {
|
|
56
|
+
formData: Uint8Array | undefined;
|
|
57
|
+
}
|
|
58
|
+
export interface PutUseCaseForModelAccessResponse {}
|
|
11
59
|
export declare class ConflictException extends __BaseException {
|
|
12
60
|
readonly name: "ConflictException";
|
|
13
61
|
readonly $fault: "client";
|
|
@@ -73,20 +121,6 @@ export interface MarketplaceModelEndpoint {
|
|
|
73
121
|
export interface CreateMarketplaceModelEndpointResponse {
|
|
74
122
|
marketplaceModelEndpoint: MarketplaceModelEndpoint | undefined;
|
|
75
123
|
}
|
|
76
|
-
export declare class InternalServerException extends __BaseException {
|
|
77
|
-
readonly name: "InternalServerException";
|
|
78
|
-
readonly $fault: "server";
|
|
79
|
-
constructor(
|
|
80
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
84
|
-
readonly name: "ResourceNotFoundException";
|
|
85
|
-
readonly $fault: "client";
|
|
86
|
-
constructor(
|
|
87
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
88
|
-
);
|
|
89
|
-
}
|
|
90
124
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
91
125
|
readonly name: "ServiceQuotaExceededException";
|
|
92
126
|
readonly $fault: "client";
|
|
@@ -94,20 +128,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
94
128
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
95
129
|
);
|
|
96
130
|
}
|
|
97
|
-
export declare class ThrottlingException extends __BaseException {
|
|
98
|
-
readonly name: "ThrottlingException";
|
|
99
|
-
readonly $fault: "client";
|
|
100
|
-
constructor(
|
|
101
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
102
|
-
);
|
|
103
|
-
}
|
|
104
|
-
export declare class ValidationException extends __BaseException {
|
|
105
|
-
readonly name: "ValidationException";
|
|
106
|
-
readonly $fault: "client";
|
|
107
|
-
constructor(
|
|
108
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
109
|
-
);
|
|
110
|
-
}
|
|
111
131
|
export interface DeleteMarketplaceModelEndpointRequest {
|
|
112
132
|
endpointArn: string | undefined;
|
|
113
133
|
}
|
|
@@ -1882,406 +1902,77 @@ export interface UpdateProvisionedModelThroughputRequest {
|
|
|
1882
1902
|
desiredModelId?: string | undefined;
|
|
1883
1903
|
}
|
|
1884
1904
|
export interface UpdateProvisionedModelThroughputResponse {}
|
|
1885
|
-
export interface
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
export interface ListTagsForResourceResponse {
|
|
1889
|
-
tags?: Tag[] | undefined;
|
|
1890
|
-
}
|
|
1891
|
-
export interface TagResourceRequest {
|
|
1892
|
-
resourceARN: string | undefined;
|
|
1893
|
-
tags: Tag[] | undefined;
|
|
1894
|
-
}
|
|
1895
|
-
export interface TagResourceResponse {}
|
|
1896
|
-
export interface UntagResourceRequest {
|
|
1897
|
-
resourceARN: string | undefined;
|
|
1898
|
-
tagKeys: string[] | undefined;
|
|
1905
|
+
export interface CreateFoundationModelAgreementRequest {
|
|
1906
|
+
offerToken: string | undefined;
|
|
1907
|
+
modelId: string | undefined;
|
|
1899
1908
|
}
|
|
1900
|
-
export interface
|
|
1901
|
-
|
|
1902
|
-
jobName: string | undefined;
|
|
1903
|
-
customModelName: string | undefined;
|
|
1904
|
-
roleArn: string | undefined;
|
|
1905
|
-
clientRequestToken?: string | undefined;
|
|
1906
|
-
baseModelIdentifier: string | undefined;
|
|
1907
|
-
customizationType?: CustomizationType | undefined;
|
|
1908
|
-
customModelKmsKeyId?: string | undefined;
|
|
1909
|
-
jobTags?: Tag[] | undefined;
|
|
1910
|
-
customModelTags?: Tag[] | undefined;
|
|
1911
|
-
trainingDataConfig: TrainingDataConfig | undefined;
|
|
1912
|
-
validationDataConfig?: ValidationDataConfig | undefined;
|
|
1913
|
-
outputDataConfig: OutputDataConfig | undefined;
|
|
1914
|
-
hyperParameters?: Record<string, string> | undefined;
|
|
1915
|
-
vpcConfig?: VpcConfig | undefined;
|
|
1916
|
-
customizationConfig?: CustomizationConfig | undefined;
|
|
1909
|
+
export interface CreateFoundationModelAgreementResponse {
|
|
1910
|
+
modelId: string | undefined;
|
|
1917
1911
|
}
|
|
1918
|
-
export interface
|
|
1919
|
-
|
|
1912
|
+
export interface DeleteFoundationModelAgreementRequest {
|
|
1913
|
+
modelId: string | undefined;
|
|
1920
1914
|
}
|
|
1921
|
-
export interface
|
|
1922
|
-
|
|
1915
|
+
export interface DeleteFoundationModelAgreementResponse {}
|
|
1916
|
+
export interface GetFoundationModelAvailabilityRequest {
|
|
1917
|
+
modelId: string | undefined;
|
|
1923
1918
|
}
|
|
1924
|
-
export declare const
|
|
1925
|
-
readonly
|
|
1926
|
-
readonly
|
|
1927
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1928
|
-
readonly STOPPED: "Stopped";
|
|
1929
|
-
readonly STOPPING: "Stopping";
|
|
1919
|
+
export declare const AuthorizationStatus: {
|
|
1920
|
+
readonly AUTHORIZED: "AUTHORIZED";
|
|
1921
|
+
readonly NOT_AUTHORIZED: "NOT_AUTHORIZED";
|
|
1930
1922
|
};
|
|
1931
|
-
export type
|
|
1932
|
-
(typeof
|
|
1933
|
-
export declare const
|
|
1934
|
-
readonly
|
|
1935
|
-
readonly
|
|
1936
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1937
|
-
readonly NOT_STARTED: "NotStarted";
|
|
1938
|
-
readonly STOPPED: "Stopped";
|
|
1939
|
-
readonly STOPPING: "Stopping";
|
|
1923
|
+
export type AuthorizationStatus =
|
|
1924
|
+
(typeof AuthorizationStatus)[keyof typeof AuthorizationStatus];
|
|
1925
|
+
export declare const EntitlementAvailability: {
|
|
1926
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1927
|
+
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
1940
1928
|
};
|
|
1941
|
-
export type
|
|
1942
|
-
(typeof
|
|
1943
|
-
export
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1929
|
+
export type EntitlementAvailability =
|
|
1930
|
+
(typeof EntitlementAvailability)[keyof typeof EntitlementAvailability];
|
|
1931
|
+
export declare const RegionAvailability: {
|
|
1932
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1933
|
+
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
1934
|
+
};
|
|
1935
|
+
export type RegionAvailability =
|
|
1936
|
+
(typeof RegionAvailability)[keyof typeof RegionAvailability];
|
|
1937
|
+
export interface GetFoundationModelAvailabilityResponse {
|
|
1938
|
+
modelId: string | undefined;
|
|
1939
|
+
agreementAvailability: AgreementAvailability | undefined;
|
|
1940
|
+
authorizationStatus: AuthorizationStatus | undefined;
|
|
1941
|
+
entitlementAvailability: EntitlementAvailability | undefined;
|
|
1942
|
+
regionAvailability: RegionAvailability | undefined;
|
|
1943
|
+
}
|
|
1944
|
+
export declare const OfferType: {
|
|
1945
|
+
readonly ALL: "ALL";
|
|
1946
|
+
readonly PUBLIC: "PUBLIC";
|
|
1947
|
+
};
|
|
1948
|
+
export type OfferType = (typeof OfferType)[keyof typeof OfferType];
|
|
1949
|
+
export interface ListFoundationModelAgreementOffersRequest {
|
|
1950
|
+
modelId: string | undefined;
|
|
1951
|
+
offerType?: OfferType | undefined;
|
|
1962
1952
|
}
|
|
1963
|
-
export interface
|
|
1964
|
-
|
|
1965
|
-
jobName: string | undefined;
|
|
1966
|
-
outputModelName: string | undefined;
|
|
1967
|
-
outputModelArn?: string | undefined;
|
|
1968
|
-
clientRequestToken?: string | undefined;
|
|
1969
|
-
roleArn: string | undefined;
|
|
1970
|
-
status?: ModelCustomizationJobStatus | undefined;
|
|
1971
|
-
statusDetails?: StatusDetails | undefined;
|
|
1972
|
-
failureMessage?: string | undefined;
|
|
1973
|
-
creationTime: Date | undefined;
|
|
1974
|
-
lastModifiedTime?: Date | undefined;
|
|
1975
|
-
endTime?: Date | undefined;
|
|
1976
|
-
baseModelArn: string | undefined;
|
|
1977
|
-
hyperParameters?: Record<string, string> | undefined;
|
|
1978
|
-
trainingDataConfig: TrainingDataConfig | undefined;
|
|
1979
|
-
validationDataConfig: ValidationDataConfig | undefined;
|
|
1980
|
-
outputDataConfig: OutputDataConfig | undefined;
|
|
1981
|
-
customizationType?: CustomizationType | undefined;
|
|
1982
|
-
outputModelKmsKeyArn?: string | undefined;
|
|
1983
|
-
trainingMetrics?: TrainingMetrics | undefined;
|
|
1984
|
-
validationMetrics?: ValidatorMetric[] | undefined;
|
|
1985
|
-
vpcConfig?: VpcConfig | undefined;
|
|
1986
|
-
customizationConfig?: CustomizationConfig | undefined;
|
|
1953
|
+
export interface LegalTerm {
|
|
1954
|
+
url?: string | undefined;
|
|
1987
1955
|
}
|
|
1988
|
-
export
|
|
1989
|
-
|
|
1990
|
-
readonly FAILED: "Failed";
|
|
1991
|
-
readonly IN_PROGRESS: "InProgress";
|
|
1992
|
-
readonly STOPPED: "Stopped";
|
|
1993
|
-
readonly STOPPING: "Stopping";
|
|
1994
|
-
};
|
|
1995
|
-
export type FineTuningJobStatus =
|
|
1996
|
-
(typeof FineTuningJobStatus)[keyof typeof FineTuningJobStatus];
|
|
1997
|
-
export interface ListModelCustomizationJobsRequest {
|
|
1998
|
-
creationTimeAfter?: Date | undefined;
|
|
1999
|
-
creationTimeBefore?: Date | undefined;
|
|
2000
|
-
statusEquals?: FineTuningJobStatus | undefined;
|
|
2001
|
-
nameContains?: string | undefined;
|
|
2002
|
-
maxResults?: number | undefined;
|
|
2003
|
-
nextToken?: string | undefined;
|
|
2004
|
-
sortBy?: SortJobsBy | undefined;
|
|
2005
|
-
sortOrder?: SortOrder | undefined;
|
|
1956
|
+
export interface SupportTerm {
|
|
1957
|
+
refundPolicyDescription?: string | undefined;
|
|
2006
1958
|
}
|
|
2007
|
-
export interface
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
statusDetails?: StatusDetails | undefined;
|
|
2013
|
-
lastModifiedTime?: Date | undefined;
|
|
2014
|
-
creationTime: Date | undefined;
|
|
2015
|
-
endTime?: Date | undefined;
|
|
2016
|
-
customModelArn?: string | undefined;
|
|
2017
|
-
customModelName?: string | undefined;
|
|
2018
|
-
customizationType?: CustomizationType | undefined;
|
|
1959
|
+
export interface DimensionalPriceRate {
|
|
1960
|
+
dimension?: string | undefined;
|
|
1961
|
+
price?: string | undefined;
|
|
1962
|
+
description?: string | undefined;
|
|
1963
|
+
unit?: string | undefined;
|
|
2019
1964
|
}
|
|
2020
|
-
export interface
|
|
2021
|
-
|
|
2022
|
-
modelCustomizationJobSummaries?: ModelCustomizationJobSummary[] | undefined;
|
|
1965
|
+
export interface PricingTerm {
|
|
1966
|
+
rateCard: DimensionalPriceRate[] | undefined;
|
|
2023
1967
|
}
|
|
2024
|
-
export interface
|
|
2025
|
-
|
|
1968
|
+
export interface ValidityTerm {
|
|
1969
|
+
agreementDuration?: string | undefined;
|
|
2026
1970
|
}
|
|
2027
|
-
export interface
|
|
2028
|
-
|
|
2029
|
-
|
|
|
2030
|
-
|
|
|
2031
|
-
|
|
|
2032
|
-
| RetrievalFilter.GreaterThanOrEqualsMember
|
|
2033
|
-
| RetrievalFilter.InMember
|
|
2034
|
-
| RetrievalFilter.LessThanMember
|
|
2035
|
-
| RetrievalFilter.LessThanOrEqualsMember
|
|
2036
|
-
| RetrievalFilter.ListContainsMember
|
|
2037
|
-
| RetrievalFilter.NotEqualsMember
|
|
2038
|
-
| RetrievalFilter.NotInMember
|
|
2039
|
-
| RetrievalFilter.OrAllMember
|
|
2040
|
-
| RetrievalFilter.StartsWithMember
|
|
2041
|
-
| RetrievalFilter.StringContainsMember
|
|
2042
|
-
| RetrievalFilter.$UnknownMember;
|
|
2043
|
-
export declare namespace RetrievalFilter {
|
|
2044
|
-
interface EqualsMember {
|
|
2045
|
-
equals: FilterAttribute;
|
|
2046
|
-
notEquals?: never;
|
|
2047
|
-
greaterThan?: never;
|
|
2048
|
-
greaterThanOrEquals?: never;
|
|
2049
|
-
lessThan?: never;
|
|
2050
|
-
lessThanOrEquals?: never;
|
|
2051
|
-
in?: never;
|
|
2052
|
-
notIn?: never;
|
|
2053
|
-
startsWith?: never;
|
|
2054
|
-
listContains?: never;
|
|
2055
|
-
stringContains?: never;
|
|
2056
|
-
andAll?: never;
|
|
2057
|
-
orAll?: never;
|
|
2058
|
-
$unknown?: never;
|
|
2059
|
-
}
|
|
2060
|
-
interface NotEqualsMember {
|
|
2061
|
-
equals?: never;
|
|
2062
|
-
notEquals: FilterAttribute;
|
|
2063
|
-
greaterThan?: never;
|
|
2064
|
-
greaterThanOrEquals?: never;
|
|
2065
|
-
lessThan?: never;
|
|
2066
|
-
lessThanOrEquals?: never;
|
|
2067
|
-
in?: never;
|
|
2068
|
-
notIn?: never;
|
|
2069
|
-
startsWith?: never;
|
|
2070
|
-
listContains?: never;
|
|
2071
|
-
stringContains?: never;
|
|
2072
|
-
andAll?: never;
|
|
2073
|
-
orAll?: never;
|
|
2074
|
-
$unknown?: never;
|
|
2075
|
-
}
|
|
2076
|
-
interface GreaterThanMember {
|
|
2077
|
-
equals?: never;
|
|
2078
|
-
notEquals?: never;
|
|
2079
|
-
greaterThan: FilterAttribute;
|
|
2080
|
-
greaterThanOrEquals?: never;
|
|
2081
|
-
lessThan?: never;
|
|
2082
|
-
lessThanOrEquals?: never;
|
|
2083
|
-
in?: never;
|
|
2084
|
-
notIn?: never;
|
|
2085
|
-
startsWith?: never;
|
|
2086
|
-
listContains?: never;
|
|
2087
|
-
stringContains?: never;
|
|
2088
|
-
andAll?: never;
|
|
2089
|
-
orAll?: never;
|
|
2090
|
-
$unknown?: never;
|
|
2091
|
-
}
|
|
2092
|
-
interface GreaterThanOrEqualsMember {
|
|
2093
|
-
equals?: never;
|
|
2094
|
-
notEquals?: never;
|
|
2095
|
-
greaterThan?: never;
|
|
2096
|
-
greaterThanOrEquals: FilterAttribute;
|
|
2097
|
-
lessThan?: never;
|
|
2098
|
-
lessThanOrEquals?: never;
|
|
2099
|
-
in?: never;
|
|
2100
|
-
notIn?: never;
|
|
2101
|
-
startsWith?: never;
|
|
2102
|
-
listContains?: never;
|
|
2103
|
-
stringContains?: never;
|
|
2104
|
-
andAll?: never;
|
|
2105
|
-
orAll?: never;
|
|
2106
|
-
$unknown?: never;
|
|
2107
|
-
}
|
|
2108
|
-
interface LessThanMember {
|
|
2109
|
-
equals?: never;
|
|
2110
|
-
notEquals?: never;
|
|
2111
|
-
greaterThan?: never;
|
|
2112
|
-
greaterThanOrEquals?: never;
|
|
2113
|
-
lessThan: FilterAttribute;
|
|
2114
|
-
lessThanOrEquals?: never;
|
|
2115
|
-
in?: never;
|
|
2116
|
-
notIn?: never;
|
|
2117
|
-
startsWith?: never;
|
|
2118
|
-
listContains?: never;
|
|
2119
|
-
stringContains?: never;
|
|
2120
|
-
andAll?: never;
|
|
2121
|
-
orAll?: never;
|
|
2122
|
-
$unknown?: never;
|
|
2123
|
-
}
|
|
2124
|
-
interface LessThanOrEqualsMember {
|
|
2125
|
-
equals?: never;
|
|
2126
|
-
notEquals?: never;
|
|
2127
|
-
greaterThan?: never;
|
|
2128
|
-
greaterThanOrEquals?: never;
|
|
2129
|
-
lessThan?: never;
|
|
2130
|
-
lessThanOrEquals: FilterAttribute;
|
|
2131
|
-
in?: never;
|
|
2132
|
-
notIn?: never;
|
|
2133
|
-
startsWith?: never;
|
|
2134
|
-
listContains?: never;
|
|
2135
|
-
stringContains?: never;
|
|
2136
|
-
andAll?: never;
|
|
2137
|
-
orAll?: never;
|
|
2138
|
-
$unknown?: never;
|
|
2139
|
-
}
|
|
2140
|
-
interface InMember {
|
|
2141
|
-
equals?: never;
|
|
2142
|
-
notEquals?: never;
|
|
2143
|
-
greaterThan?: never;
|
|
2144
|
-
greaterThanOrEquals?: never;
|
|
2145
|
-
lessThan?: never;
|
|
2146
|
-
lessThanOrEquals?: never;
|
|
2147
|
-
in: FilterAttribute;
|
|
2148
|
-
notIn?: never;
|
|
2149
|
-
startsWith?: never;
|
|
2150
|
-
listContains?: never;
|
|
2151
|
-
stringContains?: never;
|
|
2152
|
-
andAll?: never;
|
|
2153
|
-
orAll?: never;
|
|
2154
|
-
$unknown?: never;
|
|
2155
|
-
}
|
|
2156
|
-
interface NotInMember {
|
|
2157
|
-
equals?: never;
|
|
2158
|
-
notEquals?: never;
|
|
2159
|
-
greaterThan?: never;
|
|
2160
|
-
greaterThanOrEquals?: never;
|
|
2161
|
-
lessThan?: never;
|
|
2162
|
-
lessThanOrEquals?: never;
|
|
2163
|
-
in?: never;
|
|
2164
|
-
notIn: FilterAttribute;
|
|
2165
|
-
startsWith?: never;
|
|
2166
|
-
listContains?: never;
|
|
2167
|
-
stringContains?: never;
|
|
2168
|
-
andAll?: never;
|
|
2169
|
-
orAll?: never;
|
|
2170
|
-
$unknown?: never;
|
|
2171
|
-
}
|
|
2172
|
-
interface StartsWithMember {
|
|
2173
|
-
equals?: never;
|
|
2174
|
-
notEquals?: never;
|
|
2175
|
-
greaterThan?: never;
|
|
2176
|
-
greaterThanOrEquals?: never;
|
|
2177
|
-
lessThan?: never;
|
|
2178
|
-
lessThanOrEquals?: never;
|
|
2179
|
-
in?: never;
|
|
2180
|
-
notIn?: never;
|
|
2181
|
-
startsWith: FilterAttribute;
|
|
2182
|
-
listContains?: never;
|
|
2183
|
-
stringContains?: never;
|
|
2184
|
-
andAll?: never;
|
|
2185
|
-
orAll?: never;
|
|
2186
|
-
$unknown?: never;
|
|
2187
|
-
}
|
|
2188
|
-
interface ListContainsMember {
|
|
2189
|
-
equals?: never;
|
|
2190
|
-
notEquals?: never;
|
|
2191
|
-
greaterThan?: never;
|
|
2192
|
-
greaterThanOrEquals?: never;
|
|
2193
|
-
lessThan?: never;
|
|
2194
|
-
lessThanOrEquals?: never;
|
|
2195
|
-
in?: never;
|
|
2196
|
-
notIn?: never;
|
|
2197
|
-
startsWith?: never;
|
|
2198
|
-
listContains: FilterAttribute;
|
|
2199
|
-
stringContains?: never;
|
|
2200
|
-
andAll?: never;
|
|
2201
|
-
orAll?: never;
|
|
2202
|
-
$unknown?: never;
|
|
2203
|
-
}
|
|
2204
|
-
interface StringContainsMember {
|
|
2205
|
-
equals?: never;
|
|
2206
|
-
notEquals?: never;
|
|
2207
|
-
greaterThan?: never;
|
|
2208
|
-
greaterThanOrEquals?: never;
|
|
2209
|
-
lessThan?: never;
|
|
2210
|
-
lessThanOrEquals?: never;
|
|
2211
|
-
in?: never;
|
|
2212
|
-
notIn?: never;
|
|
2213
|
-
startsWith?: never;
|
|
2214
|
-
listContains?: never;
|
|
2215
|
-
stringContains: FilterAttribute;
|
|
2216
|
-
andAll?: never;
|
|
2217
|
-
orAll?: never;
|
|
2218
|
-
$unknown?: never;
|
|
2219
|
-
}
|
|
2220
|
-
interface AndAllMember {
|
|
2221
|
-
equals?: never;
|
|
2222
|
-
notEquals?: never;
|
|
2223
|
-
greaterThan?: never;
|
|
2224
|
-
greaterThanOrEquals?: never;
|
|
2225
|
-
lessThan?: never;
|
|
2226
|
-
lessThanOrEquals?: never;
|
|
2227
|
-
in?: never;
|
|
2228
|
-
notIn?: never;
|
|
2229
|
-
startsWith?: never;
|
|
2230
|
-
listContains?: never;
|
|
2231
|
-
stringContains?: never;
|
|
2232
|
-
andAll: RetrievalFilter[];
|
|
2233
|
-
orAll?: never;
|
|
2234
|
-
$unknown?: never;
|
|
2235
|
-
}
|
|
2236
|
-
interface OrAllMember {
|
|
2237
|
-
equals?: never;
|
|
2238
|
-
notEquals?: never;
|
|
2239
|
-
greaterThan?: never;
|
|
2240
|
-
greaterThanOrEquals?: never;
|
|
2241
|
-
lessThan?: never;
|
|
2242
|
-
lessThanOrEquals?: never;
|
|
2243
|
-
in?: never;
|
|
2244
|
-
notIn?: never;
|
|
2245
|
-
startsWith?: never;
|
|
2246
|
-
listContains?: never;
|
|
2247
|
-
stringContains?: never;
|
|
2248
|
-
andAll?: never;
|
|
2249
|
-
orAll: RetrievalFilter[];
|
|
2250
|
-
$unknown?: never;
|
|
2251
|
-
}
|
|
2252
|
-
interface $UnknownMember {
|
|
2253
|
-
equals?: never;
|
|
2254
|
-
notEquals?: never;
|
|
2255
|
-
greaterThan?: never;
|
|
2256
|
-
greaterThanOrEquals?: never;
|
|
2257
|
-
lessThan?: never;
|
|
2258
|
-
lessThanOrEquals?: never;
|
|
2259
|
-
in?: never;
|
|
2260
|
-
notIn?: never;
|
|
2261
|
-
startsWith?: never;
|
|
2262
|
-
listContains?: never;
|
|
2263
|
-
stringContains?: never;
|
|
2264
|
-
andAll?: never;
|
|
2265
|
-
orAll?: never;
|
|
2266
|
-
$unknown: [string, any];
|
|
2267
|
-
}
|
|
2268
|
-
interface Visitor<T> {
|
|
2269
|
-
equals: (value: FilterAttribute) => T;
|
|
2270
|
-
notEquals: (value: FilterAttribute) => T;
|
|
2271
|
-
greaterThan: (value: FilterAttribute) => T;
|
|
2272
|
-
greaterThanOrEquals: (value: FilterAttribute) => T;
|
|
2273
|
-
lessThan: (value: FilterAttribute) => T;
|
|
2274
|
-
lessThanOrEquals: (value: FilterAttribute) => T;
|
|
2275
|
-
in: (value: FilterAttribute) => T;
|
|
2276
|
-
notIn: (value: FilterAttribute) => T;
|
|
2277
|
-
startsWith: (value: FilterAttribute) => T;
|
|
2278
|
-
listContains: (value: FilterAttribute) => T;
|
|
2279
|
-
stringContains: (value: FilterAttribute) => T;
|
|
2280
|
-
andAll: (value: RetrievalFilter[]) => T;
|
|
2281
|
-
orAll: (value: RetrievalFilter[]) => T;
|
|
2282
|
-
_: (name: string, value: any) => T;
|
|
2283
|
-
}
|
|
2284
|
-
const visit: <T>(value: RetrievalFilter, visitor: Visitor<T>) => T;
|
|
1971
|
+
export interface TermDetails {
|
|
1972
|
+
usageBasedPricingTerm: PricingTerm | undefined;
|
|
1973
|
+
legalTerm: LegalTerm | undefined;
|
|
1974
|
+
supportTerm: SupportTerm | undefined;
|
|
1975
|
+
validityTerm?: ValidityTerm | undefined;
|
|
2285
1976
|
}
|
|
2286
1977
|
export declare const RequestMetadataBaseFiltersFilterSensitiveLog: (
|
|
2287
1978
|
obj: RequestMetadataBaseFilters
|
|
@@ -2487,12 +2178,3 @@ export declare const PromptRouterSummaryFilterSensitiveLog: (
|
|
|
2487
2178
|
export declare const ListPromptRoutersResponseFilterSensitiveLog: (
|
|
2488
2179
|
obj: ListPromptRoutersResponse
|
|
2489
2180
|
) => any;
|
|
2490
|
-
export declare const CreateModelCustomizationJobRequestFilterSensitiveLog: (
|
|
2491
|
-
obj: CreateModelCustomizationJobRequest
|
|
2492
|
-
) => any;
|
|
2493
|
-
export declare const GetModelCustomizationJobResponseFilterSensitiveLog: (
|
|
2494
|
-
obj: GetModelCustomizationJobResponse
|
|
2495
|
-
) => any;
|
|
2496
|
-
export declare const RetrievalFilterFilterSensitiveLog: (
|
|
2497
|
-
obj: RetrievalFilter
|
|
2498
|
-
) => any;
|