@aws-sdk/client-clouddirectory 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudDirectoryServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +499 -5
- package/dist-cjs/protocols/Aws_restJson1.js +1098 -4425
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudDirectoryServiceException.js +12 -0
- package/dist-es/models/models_0.js +459 -1
- package/dist-es/protocols/Aws_restJson1.js +2141 -4726
- package/dist-types/CloudDirectoryClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudDirectoryServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +247 -106
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CloudDirectoryClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudDirectoryServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +177 -106
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddFacetToObjectCommandInput, AddFacetToObjectCommandOutput } from "./commands/AddFacetToObjectCommand";
|
|
10
10
|
import { ApplySchemaCommandInput, ApplySchemaCommandOutput } from "./commands/ApplySchemaCommand";
|
|
11
11
|
import { AttachObjectCommandInput, AttachObjectCommandOutput } from "./commands/AttachObjectCommand";
|
|
@@ -82,7 +82,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
82
82
|
|
|
83
83
|
urlParser?: __UrlParser;
|
|
84
84
|
|
|
85
|
-
bodyLengthChecker?:
|
|
85
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
86
86
|
|
|
87
87
|
streamCollector?: __StreamCollector;
|
|
88
88
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class CloudDirectoryServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudDirectoryServiceException as __BaseException } from "./CloudDirectoryServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
export interface AttributeKey {
|
|
@@ -141,52 +144,68 @@ export declare namespace AddFacetToObjectResponse {
|
|
|
141
144
|
const filterSensitiveLog: (obj: AddFacetToObjectResponse) => any;
|
|
142
145
|
}
|
|
143
146
|
|
|
144
|
-
export
|
|
145
|
-
name: "DirectoryNotEnabledException";
|
|
146
|
-
$fault: "client";
|
|
147
|
+
export declare class DirectoryNotEnabledException extends __BaseException {
|
|
148
|
+
readonly name: "DirectoryNotEnabledException";
|
|
149
|
+
readonly $fault: "client";
|
|
147
150
|
Message?: string;
|
|
151
|
+
|
|
152
|
+
constructor(opts: __ExceptionOptionType<DirectoryNotEnabledException, __BaseException>);
|
|
148
153
|
}
|
|
149
154
|
|
|
150
|
-
export
|
|
151
|
-
name: "FacetValidationException";
|
|
152
|
-
$fault: "client";
|
|
155
|
+
export declare class FacetValidationException extends __BaseException {
|
|
156
|
+
readonly name: "FacetValidationException";
|
|
157
|
+
readonly $fault: "client";
|
|
153
158
|
Message?: string;
|
|
159
|
+
|
|
160
|
+
constructor(opts: __ExceptionOptionType<FacetValidationException, __BaseException>);
|
|
154
161
|
}
|
|
155
162
|
|
|
156
|
-
export
|
|
157
|
-
name: "InternalServiceException";
|
|
158
|
-
$fault: "server";
|
|
163
|
+
export declare class InternalServiceException extends __BaseException {
|
|
164
|
+
readonly name: "InternalServiceException";
|
|
165
|
+
readonly $fault: "server";
|
|
159
166
|
Message?: string;
|
|
167
|
+
|
|
168
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
160
169
|
}
|
|
161
170
|
|
|
162
|
-
export
|
|
163
|
-
name: "InvalidArnException";
|
|
164
|
-
$fault: "client";
|
|
171
|
+
export declare class InvalidArnException extends __BaseException {
|
|
172
|
+
readonly name: "InvalidArnException";
|
|
173
|
+
readonly $fault: "client";
|
|
165
174
|
Message?: string;
|
|
175
|
+
|
|
176
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
166
177
|
}
|
|
167
178
|
|
|
168
|
-
export
|
|
169
|
-
name: "LimitExceededException";
|
|
170
|
-
$fault: "client";
|
|
179
|
+
export declare class LimitExceededException extends __BaseException {
|
|
180
|
+
readonly name: "LimitExceededException";
|
|
181
|
+
readonly $fault: "client";
|
|
171
182
|
Message?: string;
|
|
183
|
+
|
|
184
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
172
185
|
}
|
|
173
186
|
|
|
174
|
-
export
|
|
175
|
-
name: "ResourceNotFoundException";
|
|
176
|
-
$fault: "client";
|
|
187
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
188
|
+
readonly name: "ResourceNotFoundException";
|
|
189
|
+
readonly $fault: "client";
|
|
177
190
|
Message?: string;
|
|
191
|
+
|
|
192
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
178
193
|
}
|
|
179
194
|
|
|
180
|
-
export
|
|
181
|
-
name: "RetryableConflictException";
|
|
182
|
-
$fault: "client";
|
|
195
|
+
export declare class RetryableConflictException extends __BaseException {
|
|
196
|
+
readonly name: "RetryableConflictException";
|
|
197
|
+
readonly $fault: "client";
|
|
183
198
|
Message?: string;
|
|
199
|
+
|
|
200
|
+
constructor(opts: __ExceptionOptionType<RetryableConflictException, __BaseException>);
|
|
184
201
|
}
|
|
185
202
|
|
|
186
|
-
export
|
|
187
|
-
name: "ValidationException";
|
|
188
|
-
$fault: "client";
|
|
203
|
+
export declare class ValidationException extends __BaseException {
|
|
204
|
+
readonly name: "ValidationException";
|
|
205
|
+
readonly $fault: "client";
|
|
189
206
|
Message?: string;
|
|
207
|
+
|
|
208
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
190
209
|
}
|
|
191
210
|
export interface ApplySchemaRequest {
|
|
192
211
|
|
|
@@ -209,16 +228,20 @@ export declare namespace ApplySchemaResponse {
|
|
|
209
228
|
const filterSensitiveLog: (obj: ApplySchemaResponse) => any;
|
|
210
229
|
}
|
|
211
230
|
|
|
212
|
-
export
|
|
213
|
-
name: "InvalidAttachmentException";
|
|
214
|
-
$fault: "client";
|
|
231
|
+
export declare class InvalidAttachmentException extends __BaseException {
|
|
232
|
+
readonly name: "InvalidAttachmentException";
|
|
233
|
+
readonly $fault: "client";
|
|
215
234
|
Message?: string;
|
|
235
|
+
|
|
236
|
+
constructor(opts: __ExceptionOptionType<InvalidAttachmentException, __BaseException>);
|
|
216
237
|
}
|
|
217
238
|
|
|
218
|
-
export
|
|
219
|
-
name: "SchemaAlreadyExistsException";
|
|
220
|
-
$fault: "client";
|
|
239
|
+
export declare class SchemaAlreadyExistsException extends __BaseException {
|
|
240
|
+
readonly name: "SchemaAlreadyExistsException";
|
|
241
|
+
readonly $fault: "client";
|
|
221
242
|
Message?: string;
|
|
243
|
+
|
|
244
|
+
constructor(opts: __ExceptionOptionType<SchemaAlreadyExistsException, __BaseException>);
|
|
222
245
|
}
|
|
223
246
|
export interface AttachObjectRequest {
|
|
224
247
|
|
|
@@ -243,10 +266,12 @@ export declare namespace AttachObjectResponse {
|
|
|
243
266
|
const filterSensitiveLog: (obj: AttachObjectResponse) => any;
|
|
244
267
|
}
|
|
245
268
|
|
|
246
|
-
export
|
|
247
|
-
name: "LinkNameAlreadyInUseException";
|
|
248
|
-
$fault: "client";
|
|
269
|
+
export declare class LinkNameAlreadyInUseException extends __BaseException {
|
|
270
|
+
readonly name: "LinkNameAlreadyInUseException";
|
|
271
|
+
readonly $fault: "client";
|
|
249
272
|
Message?: string;
|
|
273
|
+
|
|
274
|
+
constructor(opts: __ExceptionOptionType<LinkNameAlreadyInUseException, __BaseException>);
|
|
250
275
|
}
|
|
251
276
|
export interface AttachPolicyRequest {
|
|
252
277
|
|
|
@@ -267,10 +292,12 @@ export declare namespace AttachPolicyResponse {
|
|
|
267
292
|
const filterSensitiveLog: (obj: AttachPolicyResponse) => any;
|
|
268
293
|
}
|
|
269
294
|
|
|
270
|
-
export
|
|
271
|
-
name: "NotPolicyException";
|
|
272
|
-
$fault: "client";
|
|
295
|
+
export declare class NotPolicyException extends __BaseException {
|
|
296
|
+
readonly name: "NotPolicyException";
|
|
297
|
+
readonly $fault: "client";
|
|
273
298
|
Message?: string;
|
|
299
|
+
|
|
300
|
+
constructor(opts: __ExceptionOptionType<NotPolicyException, __BaseException>);
|
|
274
301
|
}
|
|
275
302
|
export interface AttachToIndexRequest {
|
|
276
303
|
|
|
@@ -293,16 +320,20 @@ export declare namespace AttachToIndexResponse {
|
|
|
293
320
|
const filterSensitiveLog: (obj: AttachToIndexResponse) => any;
|
|
294
321
|
}
|
|
295
322
|
|
|
296
|
-
export
|
|
297
|
-
name: "IndexedAttributeMissingException";
|
|
298
|
-
$fault: "client";
|
|
323
|
+
export declare class IndexedAttributeMissingException extends __BaseException {
|
|
324
|
+
readonly name: "IndexedAttributeMissingException";
|
|
325
|
+
readonly $fault: "client";
|
|
299
326
|
Message?: string;
|
|
327
|
+
|
|
328
|
+
constructor(opts: __ExceptionOptionType<IndexedAttributeMissingException, __BaseException>);
|
|
300
329
|
}
|
|
301
330
|
|
|
302
|
-
export
|
|
303
|
-
name: "NotIndexException";
|
|
304
|
-
$fault: "client";
|
|
331
|
+
export declare class NotIndexException extends __BaseException {
|
|
332
|
+
readonly name: "NotIndexException";
|
|
333
|
+
readonly $fault: "client";
|
|
305
334
|
Message?: string;
|
|
335
|
+
|
|
336
|
+
constructor(opts: __ExceptionOptionType<NotIndexException, __BaseException>);
|
|
306
337
|
}
|
|
307
338
|
|
|
308
339
|
export interface AttributeNameAndValue {
|
|
@@ -958,12 +989,14 @@ export declare enum BatchWriteExceptionType {
|
|
|
958
989
|
ValidationException = "ValidationException"
|
|
959
990
|
}
|
|
960
991
|
|
|
961
|
-
export
|
|
962
|
-
name: "BatchWriteException";
|
|
963
|
-
$fault: "client";
|
|
992
|
+
export declare class BatchWriteException extends __BaseException {
|
|
993
|
+
readonly name: "BatchWriteException";
|
|
994
|
+
readonly $fault: "client";
|
|
964
995
|
Index?: number;
|
|
965
996
|
Type?: BatchWriteExceptionType | string;
|
|
966
997
|
Message?: string;
|
|
998
|
+
|
|
999
|
+
constructor(opts: __ExceptionOptionType<BatchWriteException, __BaseException>);
|
|
967
1000
|
}
|
|
968
1001
|
|
|
969
1002
|
export interface BatchAddFacetToObject {
|
|
@@ -1434,10 +1467,12 @@ export declare namespace CreateDirectoryResponse {
|
|
|
1434
1467
|
const filterSensitiveLog: (obj: CreateDirectoryResponse) => any;
|
|
1435
1468
|
}
|
|
1436
1469
|
|
|
1437
|
-
export
|
|
1438
|
-
name: "DirectoryAlreadyExistsException";
|
|
1439
|
-
$fault: "client";
|
|
1470
|
+
export declare class DirectoryAlreadyExistsException extends __BaseException {
|
|
1471
|
+
readonly name: "DirectoryAlreadyExistsException";
|
|
1472
|
+
readonly $fault: "client";
|
|
1440
1473
|
Message?: string;
|
|
1474
|
+
|
|
1475
|
+
constructor(opts: __ExceptionOptionType<DirectoryAlreadyExistsException, __BaseException>);
|
|
1441
1476
|
}
|
|
1442
1477
|
export declare enum RuleType {
|
|
1443
1478
|
BINARY_LENGTH = "BINARY_LENGTH",
|
|
@@ -1546,16 +1581,20 @@ export declare namespace CreateFacetResponse {
|
|
|
1546
1581
|
const filterSensitiveLog: (obj: CreateFacetResponse) => any;
|
|
1547
1582
|
}
|
|
1548
1583
|
|
|
1549
|
-
export
|
|
1550
|
-
name: "FacetAlreadyExistsException";
|
|
1551
|
-
$fault: "client";
|
|
1584
|
+
export declare class FacetAlreadyExistsException extends __BaseException {
|
|
1585
|
+
readonly name: "FacetAlreadyExistsException";
|
|
1586
|
+
readonly $fault: "client";
|
|
1552
1587
|
Message?: string;
|
|
1588
|
+
|
|
1589
|
+
constructor(opts: __ExceptionOptionType<FacetAlreadyExistsException, __BaseException>);
|
|
1553
1590
|
}
|
|
1554
1591
|
|
|
1555
|
-
export
|
|
1556
|
-
name: "InvalidRuleException";
|
|
1557
|
-
$fault: "client";
|
|
1592
|
+
export declare class InvalidRuleException extends __BaseException {
|
|
1593
|
+
readonly name: "InvalidRuleException";
|
|
1594
|
+
readonly $fault: "client";
|
|
1558
1595
|
Message?: string;
|
|
1596
|
+
|
|
1597
|
+
constructor(opts: __ExceptionOptionType<InvalidRuleException, __BaseException>);
|
|
1559
1598
|
}
|
|
1560
1599
|
export interface CreateIndexRequest {
|
|
1561
1600
|
|
|
@@ -1582,10 +1621,12 @@ export declare namespace CreateIndexResponse {
|
|
|
1582
1621
|
const filterSensitiveLog: (obj: CreateIndexResponse) => any;
|
|
1583
1622
|
}
|
|
1584
1623
|
|
|
1585
|
-
export
|
|
1586
|
-
name: "UnsupportedIndexTypeException";
|
|
1587
|
-
$fault: "client";
|
|
1624
|
+
export declare class UnsupportedIndexTypeException extends __BaseException {
|
|
1625
|
+
readonly name: "UnsupportedIndexTypeException";
|
|
1626
|
+
readonly $fault: "client";
|
|
1588
1627
|
Message?: string;
|
|
1628
|
+
|
|
1629
|
+
constructor(opts: __ExceptionOptionType<UnsupportedIndexTypeException, __BaseException>);
|
|
1589
1630
|
}
|
|
1590
1631
|
export interface CreateObjectRequest {
|
|
1591
1632
|
|
|
@@ -1694,16 +1735,20 @@ export declare namespace DeleteDirectoryResponse {
|
|
|
1694
1735
|
const filterSensitiveLog: (obj: DeleteDirectoryResponse) => any;
|
|
1695
1736
|
}
|
|
1696
1737
|
|
|
1697
|
-
export
|
|
1698
|
-
name: "DirectoryDeletedException";
|
|
1699
|
-
$fault: "client";
|
|
1738
|
+
export declare class DirectoryDeletedException extends __BaseException {
|
|
1739
|
+
readonly name: "DirectoryDeletedException";
|
|
1740
|
+
readonly $fault: "client";
|
|
1700
1741
|
Message?: string;
|
|
1742
|
+
|
|
1743
|
+
constructor(opts: __ExceptionOptionType<DirectoryDeletedException, __BaseException>);
|
|
1701
1744
|
}
|
|
1702
1745
|
|
|
1703
|
-
export
|
|
1704
|
-
name: "DirectoryNotDisabledException";
|
|
1705
|
-
$fault: "client";
|
|
1746
|
+
export declare class DirectoryNotDisabledException extends __BaseException {
|
|
1747
|
+
readonly name: "DirectoryNotDisabledException";
|
|
1748
|
+
readonly $fault: "client";
|
|
1706
1749
|
Message?: string;
|
|
1750
|
+
|
|
1751
|
+
constructor(opts: __ExceptionOptionType<DirectoryNotDisabledException, __BaseException>);
|
|
1707
1752
|
}
|
|
1708
1753
|
export interface DeleteFacetRequest {
|
|
1709
1754
|
|
|
@@ -1722,16 +1767,20 @@ export declare namespace DeleteFacetResponse {
|
|
|
1722
1767
|
const filterSensitiveLog: (obj: DeleteFacetResponse) => any;
|
|
1723
1768
|
}
|
|
1724
1769
|
|
|
1725
|
-
export
|
|
1726
|
-
name: "FacetInUseException";
|
|
1727
|
-
$fault: "client";
|
|
1770
|
+
export declare class FacetInUseException extends __BaseException {
|
|
1771
|
+
readonly name: "FacetInUseException";
|
|
1772
|
+
readonly $fault: "client";
|
|
1728
1773
|
Message?: string;
|
|
1774
|
+
|
|
1775
|
+
constructor(opts: __ExceptionOptionType<FacetInUseException, __BaseException>);
|
|
1729
1776
|
}
|
|
1730
1777
|
|
|
1731
|
-
export
|
|
1732
|
-
name: "FacetNotFoundException";
|
|
1733
|
-
$fault: "client";
|
|
1778
|
+
export declare class FacetNotFoundException extends __BaseException {
|
|
1779
|
+
readonly name: "FacetNotFoundException";
|
|
1780
|
+
readonly $fault: "client";
|
|
1734
1781
|
Message?: string;
|
|
1782
|
+
|
|
1783
|
+
constructor(opts: __ExceptionOptionType<FacetNotFoundException, __BaseException>);
|
|
1735
1784
|
}
|
|
1736
1785
|
export interface DeleteObjectRequest {
|
|
1737
1786
|
|
|
@@ -1750,10 +1799,12 @@ export declare namespace DeleteObjectResponse {
|
|
|
1750
1799
|
const filterSensitiveLog: (obj: DeleteObjectResponse) => any;
|
|
1751
1800
|
}
|
|
1752
1801
|
|
|
1753
|
-
export
|
|
1754
|
-
name: "ObjectNotDetachedException";
|
|
1755
|
-
$fault: "client";
|
|
1802
|
+
export declare class ObjectNotDetachedException extends __BaseException {
|
|
1803
|
+
readonly name: "ObjectNotDetachedException";
|
|
1804
|
+
readonly $fault: "client";
|
|
1756
1805
|
Message?: string;
|
|
1806
|
+
|
|
1807
|
+
constructor(opts: __ExceptionOptionType<ObjectNotDetachedException, __BaseException>);
|
|
1757
1808
|
}
|
|
1758
1809
|
export interface DeleteSchemaRequest {
|
|
1759
1810
|
|
|
@@ -1772,10 +1823,12 @@ export declare namespace DeleteSchemaResponse {
|
|
|
1772
1823
|
const filterSensitiveLog: (obj: DeleteSchemaResponse) => any;
|
|
1773
1824
|
}
|
|
1774
1825
|
|
|
1775
|
-
export
|
|
1776
|
-
name: "StillContainsLinksException";
|
|
1777
|
-
$fault: "client";
|
|
1826
|
+
export declare class StillContainsLinksException extends __BaseException {
|
|
1827
|
+
readonly name: "StillContainsLinksException";
|
|
1828
|
+
readonly $fault: "client";
|
|
1778
1829
|
Message?: string;
|
|
1830
|
+
|
|
1831
|
+
constructor(opts: __ExceptionOptionType<StillContainsLinksException, __BaseException>);
|
|
1779
1832
|
}
|
|
1780
1833
|
export interface DeleteTypedLinkFacetRequest {
|
|
1781
1834
|
|
|
@@ -1814,10 +1867,12 @@ export declare namespace DetachFromIndexResponse {
|
|
|
1814
1867
|
const filterSensitiveLog: (obj: DetachFromIndexResponse) => any;
|
|
1815
1868
|
}
|
|
1816
1869
|
|
|
1817
|
-
export
|
|
1818
|
-
name: "ObjectAlreadyDetachedException";
|
|
1819
|
-
$fault: "client";
|
|
1870
|
+
export declare class ObjectAlreadyDetachedException extends __BaseException {
|
|
1871
|
+
readonly name: "ObjectAlreadyDetachedException";
|
|
1872
|
+
readonly $fault: "client";
|
|
1820
1873
|
Message?: string;
|
|
1874
|
+
|
|
1875
|
+
constructor(opts: __ExceptionOptionType<ObjectAlreadyDetachedException, __BaseException>);
|
|
1821
1876
|
}
|
|
1822
1877
|
export interface DetachObjectRequest {
|
|
1823
1878
|
|
|
@@ -1840,10 +1895,12 @@ export declare namespace DetachObjectResponse {
|
|
|
1840
1895
|
const filterSensitiveLog: (obj: DetachObjectResponse) => any;
|
|
1841
1896
|
}
|
|
1842
1897
|
|
|
1843
|
-
export
|
|
1844
|
-
name: "NotNodeException";
|
|
1845
|
-
$fault: "client";
|
|
1898
|
+
export declare class NotNodeException extends __BaseException {
|
|
1899
|
+
readonly name: "NotNodeException";
|
|
1900
|
+
readonly $fault: "client";
|
|
1846
1901
|
Message?: string;
|
|
1902
|
+
|
|
1903
|
+
constructor(opts: __ExceptionOptionType<NotNodeException, __BaseException>);
|
|
1847
1904
|
}
|
|
1848
1905
|
export interface DetachPolicyRequest {
|
|
1849
1906
|
|
|
@@ -2093,10 +2150,12 @@ export declare namespace GetTypedLinkFacetInformationResponse {
|
|
|
2093
2150
|
const filterSensitiveLog: (obj: GetTypedLinkFacetInformationResponse) => any;
|
|
2094
2151
|
}
|
|
2095
2152
|
|
|
2096
|
-
export
|
|
2097
|
-
name: "InvalidNextTokenException";
|
|
2098
|
-
$fault: "client";
|
|
2153
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2154
|
+
readonly name: "InvalidNextTokenException";
|
|
2155
|
+
readonly $fault: "client";
|
|
2099
2156
|
Message?: string;
|
|
2157
|
+
|
|
2158
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2100
2159
|
}
|
|
2101
2160
|
export interface ListAppliedSchemaArnsRequest {
|
|
2102
2161
|
|
|
@@ -2397,10 +2456,12 @@ export declare namespace ListObjectParentPathsResponse {
|
|
|
2397
2456
|
const filterSensitiveLog: (obj: ListObjectParentPathsResponse) => any;
|
|
2398
2457
|
}
|
|
2399
2458
|
|
|
2400
|
-
export
|
|
2401
|
-
name: "CannotListParentOfRootException";
|
|
2402
|
-
$fault: "client";
|
|
2459
|
+
export declare class CannotListParentOfRootException extends __BaseException {
|
|
2460
|
+
readonly name: "CannotListParentOfRootException";
|
|
2461
|
+
readonly $fault: "client";
|
|
2403
2462
|
Message?: string;
|
|
2463
|
+
|
|
2464
|
+
constructor(opts: __ExceptionOptionType<CannotListParentOfRootException, __BaseException>);
|
|
2404
2465
|
}
|
|
2405
2466
|
export interface ListObjectParentsRequest {
|
|
2406
2467
|
|
|
@@ -2539,10 +2600,12 @@ export declare namespace ListPublishedSchemaArnsResponse {
|
|
|
2539
2600
|
const filterSensitiveLog: (obj: ListPublishedSchemaArnsResponse) => any;
|
|
2540
2601
|
}
|
|
2541
2602
|
|
|
2542
|
-
export
|
|
2543
|
-
name: "InvalidTaggingRequestException";
|
|
2544
|
-
$fault: "client";
|
|
2603
|
+
export declare class InvalidTaggingRequestException extends __BaseException {
|
|
2604
|
+
readonly name: "InvalidTaggingRequestException";
|
|
2605
|
+
readonly $fault: "client";
|
|
2545
2606
|
Message?: string;
|
|
2607
|
+
|
|
2608
|
+
constructor(opts: __ExceptionOptionType<InvalidTaggingRequestException, __BaseException>);
|
|
2546
2609
|
}
|
|
2547
2610
|
export interface ListTagsForResourceRequest {
|
|
2548
2611
|
|
|
@@ -2670,16 +2733,20 @@ export declare namespace PublishSchemaResponse {
|
|
|
2670
2733
|
const filterSensitiveLog: (obj: PublishSchemaResponse) => any;
|
|
2671
2734
|
}
|
|
2672
2735
|
|
|
2673
|
-
export
|
|
2674
|
-
name: "SchemaAlreadyPublishedException";
|
|
2675
|
-
$fault: "client";
|
|
2736
|
+
export declare class SchemaAlreadyPublishedException extends __BaseException {
|
|
2737
|
+
readonly name: "SchemaAlreadyPublishedException";
|
|
2738
|
+
readonly $fault: "client";
|
|
2676
2739
|
Message?: string;
|
|
2740
|
+
|
|
2741
|
+
constructor(opts: __ExceptionOptionType<SchemaAlreadyPublishedException, __BaseException>);
|
|
2677
2742
|
}
|
|
2678
2743
|
|
|
2679
|
-
export
|
|
2680
|
-
name: "InvalidSchemaDocException";
|
|
2681
|
-
$fault: "client";
|
|
2744
|
+
export declare class InvalidSchemaDocException extends __BaseException {
|
|
2745
|
+
readonly name: "InvalidSchemaDocException";
|
|
2746
|
+
readonly $fault: "client";
|
|
2682
2747
|
Message?: string;
|
|
2748
|
+
|
|
2749
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemaDocException, __BaseException>);
|
|
2683
2750
|
}
|
|
2684
2751
|
export interface PutSchemaFromJsonRequest {
|
|
2685
2752
|
|
|
@@ -2750,10 +2817,12 @@ export declare namespace UntagResourceResponse {
|
|
|
2750
2817
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2751
2818
|
}
|
|
2752
2819
|
|
|
2753
|
-
export
|
|
2754
|
-
name: "InvalidFacetUpdateException";
|
|
2755
|
-
$fault: "client";
|
|
2820
|
+
export declare class InvalidFacetUpdateException extends __BaseException {
|
|
2821
|
+
readonly name: "InvalidFacetUpdateException";
|
|
2822
|
+
readonly $fault: "client";
|
|
2756
2823
|
Message?: string;
|
|
2824
|
+
|
|
2825
|
+
constructor(opts: __ExceptionOptionType<InvalidFacetUpdateException, __BaseException>);
|
|
2757
2826
|
}
|
|
2758
2827
|
|
|
2759
2828
|
export interface FacetAttributeUpdate {
|
|
@@ -2874,10 +2943,12 @@ export declare namespace UpdateTypedLinkFacetResponse {
|
|
|
2874
2943
|
const filterSensitiveLog: (obj: UpdateTypedLinkFacetResponse) => any;
|
|
2875
2944
|
}
|
|
2876
2945
|
|
|
2877
|
-
export
|
|
2878
|
-
name: "IncompatibleSchemaException";
|
|
2879
|
-
$fault: "client";
|
|
2946
|
+
export declare class IncompatibleSchemaException extends __BaseException {
|
|
2947
|
+
readonly name: "IncompatibleSchemaException";
|
|
2948
|
+
readonly $fault: "client";
|
|
2880
2949
|
Message?: string;
|
|
2950
|
+
|
|
2951
|
+
constructor(opts: __ExceptionOptionType<IncompatibleSchemaException, __BaseException>);
|
|
2881
2952
|
}
|
|
2882
2953
|
export interface UpgradeAppliedSchemaRequest {
|
|
2883
2954
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-clouddirectory",
|
|
3
3
|
"description": "AWS SDK for JavaScript Clouddirectory Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|