@aws-sdk/client-deadline 3.975.0 → 3.978.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 +252 -205
- package/dist-es/Deadline.js +83 -1
- package/dist-es/schemas/schemas_0.js +8 -4
- package/dist-types/Deadline.d.ts +265 -1
- package/dist-types/commands/CreateJobCommand.d.ts +2 -0
- package/dist-types/commands/UpdateJobCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +21 -1
- package/dist-types/models/models_1.d.ts +3 -3
- package/dist-types/ts3.4/Deadline.d.ts +300 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +17 -17
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
AssociateMemberToFarmCommandInput,
|
|
4
10
|
AssociateMemberToFarmCommandOutput,
|
|
@@ -1932,5 +1938,298 @@ export interface Deadline {
|
|
|
1932
1938
|
options: __HttpHandlerOptions,
|
|
1933
1939
|
cb: (err: any, data?: UpdateWorkerScheduleCommandOutput) => void
|
|
1934
1940
|
): void;
|
|
1941
|
+
paginateGetSessionsStatisticsAggregation(
|
|
1942
|
+
args: GetSessionsStatisticsAggregationCommandInput,
|
|
1943
|
+
paginationConfig?: Pick<
|
|
1944
|
+
PaginationConfiguration,
|
|
1945
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1946
|
+
>
|
|
1947
|
+
): Paginator<GetSessionsStatisticsAggregationCommandOutput>;
|
|
1948
|
+
paginateListAvailableMeteredProducts(
|
|
1949
|
+
args?: ListAvailableMeteredProductsCommandInput,
|
|
1950
|
+
paginationConfig?: Pick<
|
|
1951
|
+
PaginationConfiguration,
|
|
1952
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1953
|
+
>
|
|
1954
|
+
): Paginator<ListAvailableMeteredProductsCommandOutput>;
|
|
1955
|
+
paginateListBudgets(
|
|
1956
|
+
args: ListBudgetsCommandInput,
|
|
1957
|
+
paginationConfig?: Pick<
|
|
1958
|
+
PaginationConfiguration,
|
|
1959
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1960
|
+
>
|
|
1961
|
+
): Paginator<ListBudgetsCommandOutput>;
|
|
1962
|
+
paginateListFarmMembers(
|
|
1963
|
+
args: ListFarmMembersCommandInput,
|
|
1964
|
+
paginationConfig?: Pick<
|
|
1965
|
+
PaginationConfiguration,
|
|
1966
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1967
|
+
>
|
|
1968
|
+
): Paginator<ListFarmMembersCommandOutput>;
|
|
1969
|
+
paginateListFarms(
|
|
1970
|
+
args?: ListFarmsCommandInput,
|
|
1971
|
+
paginationConfig?: Pick<
|
|
1972
|
+
PaginationConfiguration,
|
|
1973
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1974
|
+
>
|
|
1975
|
+
): Paginator<ListFarmsCommandOutput>;
|
|
1976
|
+
paginateListFleetMembers(
|
|
1977
|
+
args: ListFleetMembersCommandInput,
|
|
1978
|
+
paginationConfig?: Pick<
|
|
1979
|
+
PaginationConfiguration,
|
|
1980
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1981
|
+
>
|
|
1982
|
+
): Paginator<ListFleetMembersCommandOutput>;
|
|
1983
|
+
paginateListFleets(
|
|
1984
|
+
args: ListFleetsCommandInput,
|
|
1985
|
+
paginationConfig?: Pick<
|
|
1986
|
+
PaginationConfiguration,
|
|
1987
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1988
|
+
>
|
|
1989
|
+
): Paginator<ListFleetsCommandOutput>;
|
|
1990
|
+
paginateListJobMembers(
|
|
1991
|
+
args: ListJobMembersCommandInput,
|
|
1992
|
+
paginationConfig?: Pick<
|
|
1993
|
+
PaginationConfiguration,
|
|
1994
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1995
|
+
>
|
|
1996
|
+
): Paginator<ListJobMembersCommandOutput>;
|
|
1997
|
+
paginateListJobParameterDefinitions(
|
|
1998
|
+
args: ListJobParameterDefinitionsCommandInput,
|
|
1999
|
+
paginationConfig?: Pick<
|
|
2000
|
+
PaginationConfiguration,
|
|
2001
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2002
|
+
>
|
|
2003
|
+
): Paginator<ListJobParameterDefinitionsCommandOutput>;
|
|
2004
|
+
paginateListJobs(
|
|
2005
|
+
args: ListJobsCommandInput,
|
|
2006
|
+
paginationConfig?: Pick<
|
|
2007
|
+
PaginationConfiguration,
|
|
2008
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2009
|
+
>
|
|
2010
|
+
): Paginator<ListJobsCommandOutput>;
|
|
2011
|
+
paginateListLicenseEndpoints(
|
|
2012
|
+
args?: ListLicenseEndpointsCommandInput,
|
|
2013
|
+
paginationConfig?: Pick<
|
|
2014
|
+
PaginationConfiguration,
|
|
2015
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2016
|
+
>
|
|
2017
|
+
): Paginator<ListLicenseEndpointsCommandOutput>;
|
|
2018
|
+
paginateListLimits(
|
|
2019
|
+
args: ListLimitsCommandInput,
|
|
2020
|
+
paginationConfig?: Pick<
|
|
2021
|
+
PaginationConfiguration,
|
|
2022
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2023
|
+
>
|
|
2024
|
+
): Paginator<ListLimitsCommandOutput>;
|
|
2025
|
+
paginateListMeteredProducts(
|
|
2026
|
+
args: ListMeteredProductsCommandInput,
|
|
2027
|
+
paginationConfig?: Pick<
|
|
2028
|
+
PaginationConfiguration,
|
|
2029
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2030
|
+
>
|
|
2031
|
+
): Paginator<ListMeteredProductsCommandOutput>;
|
|
2032
|
+
paginateListMonitors(
|
|
2033
|
+
args?: ListMonitorsCommandInput,
|
|
2034
|
+
paginationConfig?: Pick<
|
|
2035
|
+
PaginationConfiguration,
|
|
2036
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2037
|
+
>
|
|
2038
|
+
): Paginator<ListMonitorsCommandOutput>;
|
|
2039
|
+
paginateListQueueEnvironments(
|
|
2040
|
+
args: ListQueueEnvironmentsCommandInput,
|
|
2041
|
+
paginationConfig?: Pick<
|
|
2042
|
+
PaginationConfiguration,
|
|
2043
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2044
|
+
>
|
|
2045
|
+
): Paginator<ListQueueEnvironmentsCommandOutput>;
|
|
2046
|
+
paginateListQueueFleetAssociations(
|
|
2047
|
+
args: ListQueueFleetAssociationsCommandInput,
|
|
2048
|
+
paginationConfig?: Pick<
|
|
2049
|
+
PaginationConfiguration,
|
|
2050
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2051
|
+
>
|
|
2052
|
+
): Paginator<ListQueueFleetAssociationsCommandOutput>;
|
|
2053
|
+
paginateListQueueLimitAssociations(
|
|
2054
|
+
args: ListQueueLimitAssociationsCommandInput,
|
|
2055
|
+
paginationConfig?: Pick<
|
|
2056
|
+
PaginationConfiguration,
|
|
2057
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2058
|
+
>
|
|
2059
|
+
): Paginator<ListQueueLimitAssociationsCommandOutput>;
|
|
2060
|
+
paginateListQueueMembers(
|
|
2061
|
+
args: ListQueueMembersCommandInput,
|
|
2062
|
+
paginationConfig?: Pick<
|
|
2063
|
+
PaginationConfiguration,
|
|
2064
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2065
|
+
>
|
|
2066
|
+
): Paginator<ListQueueMembersCommandOutput>;
|
|
2067
|
+
paginateListQueues(
|
|
2068
|
+
args: ListQueuesCommandInput,
|
|
2069
|
+
paginationConfig?: Pick<
|
|
2070
|
+
PaginationConfiguration,
|
|
2071
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2072
|
+
>
|
|
2073
|
+
): Paginator<ListQueuesCommandOutput>;
|
|
2074
|
+
paginateListSessionActions(
|
|
2075
|
+
args: ListSessionActionsCommandInput,
|
|
2076
|
+
paginationConfig?: Pick<
|
|
2077
|
+
PaginationConfiguration,
|
|
2078
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2079
|
+
>
|
|
2080
|
+
): Paginator<ListSessionActionsCommandOutput>;
|
|
2081
|
+
paginateListSessions(
|
|
2082
|
+
args: ListSessionsCommandInput,
|
|
2083
|
+
paginationConfig?: Pick<
|
|
2084
|
+
PaginationConfiguration,
|
|
2085
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2086
|
+
>
|
|
2087
|
+
): Paginator<ListSessionsCommandOutput>;
|
|
2088
|
+
paginateListSessionsForWorker(
|
|
2089
|
+
args: ListSessionsForWorkerCommandInput,
|
|
2090
|
+
paginationConfig?: Pick<
|
|
2091
|
+
PaginationConfiguration,
|
|
2092
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2093
|
+
>
|
|
2094
|
+
): Paginator<ListSessionsForWorkerCommandOutput>;
|
|
2095
|
+
paginateListStepConsumers(
|
|
2096
|
+
args: ListStepConsumersCommandInput,
|
|
2097
|
+
paginationConfig?: Pick<
|
|
2098
|
+
PaginationConfiguration,
|
|
2099
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2100
|
+
>
|
|
2101
|
+
): Paginator<ListStepConsumersCommandOutput>;
|
|
2102
|
+
paginateListStepDependencies(
|
|
2103
|
+
args: ListStepDependenciesCommandInput,
|
|
2104
|
+
paginationConfig?: Pick<
|
|
2105
|
+
PaginationConfiguration,
|
|
2106
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2107
|
+
>
|
|
2108
|
+
): Paginator<ListStepDependenciesCommandOutput>;
|
|
2109
|
+
paginateListSteps(
|
|
2110
|
+
args: ListStepsCommandInput,
|
|
2111
|
+
paginationConfig?: Pick<
|
|
2112
|
+
PaginationConfiguration,
|
|
2113
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2114
|
+
>
|
|
2115
|
+
): Paginator<ListStepsCommandOutput>;
|
|
2116
|
+
paginateListStorageProfiles(
|
|
2117
|
+
args: ListStorageProfilesCommandInput,
|
|
2118
|
+
paginationConfig?: Pick<
|
|
2119
|
+
PaginationConfiguration,
|
|
2120
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2121
|
+
>
|
|
2122
|
+
): Paginator<ListStorageProfilesCommandOutput>;
|
|
2123
|
+
paginateListStorageProfilesForQueue(
|
|
2124
|
+
args: ListStorageProfilesForQueueCommandInput,
|
|
2125
|
+
paginationConfig?: Pick<
|
|
2126
|
+
PaginationConfiguration,
|
|
2127
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2128
|
+
>
|
|
2129
|
+
): Paginator<ListStorageProfilesForQueueCommandOutput>;
|
|
2130
|
+
paginateListTasks(
|
|
2131
|
+
args: ListTasksCommandInput,
|
|
2132
|
+
paginationConfig?: Pick<
|
|
2133
|
+
PaginationConfiguration,
|
|
2134
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2135
|
+
>
|
|
2136
|
+
): Paginator<ListTasksCommandOutput>;
|
|
2137
|
+
paginateListWorkers(
|
|
2138
|
+
args: ListWorkersCommandInput,
|
|
2139
|
+
paginationConfig?: Pick<
|
|
2140
|
+
PaginationConfiguration,
|
|
2141
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2142
|
+
>
|
|
2143
|
+
): Paginator<ListWorkersCommandOutput>;
|
|
2144
|
+
waitUntilFleetActive(
|
|
2145
|
+
args: GetFleetCommandInput,
|
|
2146
|
+
waiterConfig:
|
|
2147
|
+
| number
|
|
2148
|
+
| Pick<
|
|
2149
|
+
WaiterConfiguration<Deadline>,
|
|
2150
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2151
|
+
>
|
|
2152
|
+
): Promise<WaiterResult>;
|
|
2153
|
+
waitUntilJobCreateComplete(
|
|
2154
|
+
args: GetJobCommandInput,
|
|
2155
|
+
waiterConfig:
|
|
2156
|
+
| number
|
|
2157
|
+
| Pick<
|
|
2158
|
+
WaiterConfiguration<Deadline>,
|
|
2159
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2160
|
+
>
|
|
2161
|
+
): Promise<WaiterResult>;
|
|
2162
|
+
waitUntilJobComplete(
|
|
2163
|
+
args: GetJobCommandInput,
|
|
2164
|
+
waiterConfig:
|
|
2165
|
+
| number
|
|
2166
|
+
| Pick<
|
|
2167
|
+
WaiterConfiguration<Deadline>,
|
|
2168
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2169
|
+
>
|
|
2170
|
+
): Promise<WaiterResult>;
|
|
2171
|
+
waitUntilJobSucceeded(
|
|
2172
|
+
args: GetJobCommandInput,
|
|
2173
|
+
waiterConfig:
|
|
2174
|
+
| number
|
|
2175
|
+
| Pick<
|
|
2176
|
+
WaiterConfiguration<Deadline>,
|
|
2177
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2178
|
+
>
|
|
2179
|
+
): Promise<WaiterResult>;
|
|
2180
|
+
waitUntilLicenseEndpointValid(
|
|
2181
|
+
args: GetLicenseEndpointCommandInput,
|
|
2182
|
+
waiterConfig:
|
|
2183
|
+
| number
|
|
2184
|
+
| Pick<
|
|
2185
|
+
WaiterConfiguration<Deadline>,
|
|
2186
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2187
|
+
>
|
|
2188
|
+
): Promise<WaiterResult>;
|
|
2189
|
+
waitUntilLicenseEndpointDeleted(
|
|
2190
|
+
args: GetLicenseEndpointCommandInput,
|
|
2191
|
+
waiterConfig:
|
|
2192
|
+
| number
|
|
2193
|
+
| Pick<
|
|
2194
|
+
WaiterConfiguration<Deadline>,
|
|
2195
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2196
|
+
>
|
|
2197
|
+
): Promise<WaiterResult>;
|
|
2198
|
+
waitUntilQueueSchedulingBlocked(
|
|
2199
|
+
args: GetQueueCommandInput,
|
|
2200
|
+
waiterConfig:
|
|
2201
|
+
| number
|
|
2202
|
+
| Pick<
|
|
2203
|
+
WaiterConfiguration<Deadline>,
|
|
2204
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2205
|
+
>
|
|
2206
|
+
): Promise<WaiterResult>;
|
|
2207
|
+
waitUntilQueueScheduling(
|
|
2208
|
+
args: GetQueueCommandInput,
|
|
2209
|
+
waiterConfig:
|
|
2210
|
+
| number
|
|
2211
|
+
| Pick<
|
|
2212
|
+
WaiterConfiguration<Deadline>,
|
|
2213
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2214
|
+
>
|
|
2215
|
+
): Promise<WaiterResult>;
|
|
2216
|
+
waitUntilQueueFleetAssociationStopped(
|
|
2217
|
+
args: GetQueueFleetAssociationCommandInput,
|
|
2218
|
+
waiterConfig:
|
|
2219
|
+
| number
|
|
2220
|
+
| Pick<
|
|
2221
|
+
WaiterConfiguration<Deadline>,
|
|
2222
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2223
|
+
>
|
|
2224
|
+
): Promise<WaiterResult>;
|
|
2225
|
+
waitUntilQueueLimitAssociationStopped(
|
|
2226
|
+
args: GetQueueLimitAssociationCommandInput,
|
|
2227
|
+
waiterConfig:
|
|
2228
|
+
| number
|
|
2229
|
+
| Pick<
|
|
2230
|
+
WaiterConfiguration<Deadline>,
|
|
2231
|
+
Exclude<keyof WaiterConfiguration<Deadline>, "client">
|
|
2232
|
+
>
|
|
2233
|
+
): Promise<WaiterResult>;
|
|
1935
2234
|
}
|
|
1936
2235
|
export declare class Deadline extends DeadlineClient implements Deadline {}
|
|
@@ -884,6 +884,8 @@ export interface CreateJobRequest {
|
|
|
884
884
|
maxRetriesPerTask?: number | undefined;
|
|
885
885
|
maxWorkerCount?: number | undefined;
|
|
886
886
|
sourceJobId?: string | undefined;
|
|
887
|
+
nameOverride?: string | undefined;
|
|
888
|
+
descriptionOverride?: string | undefined;
|
|
887
889
|
}
|
|
888
890
|
export interface CreateJobResponse {
|
|
889
891
|
jobId: string | undefined;
|
|
@@ -1927,6 +1929,8 @@ export interface UpdateJobRequest {
|
|
|
1927
1929
|
maxRetriesPerTask?: number | undefined;
|
|
1928
1930
|
lifecycleStatus?: UpdateJobLifecycleStatus | undefined;
|
|
1929
1931
|
maxWorkerCount?: number | undefined;
|
|
1932
|
+
name?: string | undefined;
|
|
1933
|
+
description?: string | undefined;
|
|
1930
1934
|
farmId: string | undefined;
|
|
1931
1935
|
queueId: string | undefined;
|
|
1932
1936
|
jobId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-deadline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Deadline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-deadline",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|