@aws-sdk/client-clouddirectory 3.658.1 → 3.662.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-types/commands/AddFacetToObjectCommand.d.ts +19 -0
- package/dist-types/commands/ApplySchemaCommand.d.ts +18 -0
- package/dist-types/commands/AttachObjectCommand.d.ts +23 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +17 -0
- package/dist-types/commands/AttachToIndexCommand.d.ts +22 -0
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +53 -0
- package/dist-types/commands/BatchReadCommand.d.ts +18 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +17 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +20 -0
- package/dist-types/commands/CreateFacetCommand.d.ts +13 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +20 -0
- package/dist-types/commands/CreateObjectCommand.d.ts +22 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +16 -0
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +24 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFacetCommand.d.ts +12 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +14 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +12 -0
- package/dist-types/commands/DetachFromIndexCommand.d.ts +22 -0
- package/dist-types/commands/DetachObjectCommand.d.ts +20 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +17 -0
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +31 -0
- package/dist-types/commands/DisableDirectoryCommand.d.ts +16 -0
- package/dist-types/commands/EnableDirectoryCommand.d.ts +16 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +21 -0
- package/dist-types/commands/GetFacetCommand.d.ts +20 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +26 -0
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +17 -0
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +19 -0
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +18 -0
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +24 -0
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +21 -0
- package/dist-types/commands/ListDirectoriesCommand.d.ts +45 -0
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +189 -0
- package/dist-types/commands/ListFacetNamesCommand.d.ts +23 -0
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +81 -0
- package/dist-types/commands/ListIndexCommand.d.ts +33 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +40 -0
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +21 -0
- package/package.json +35 -35
|
@@ -114,6 +114,46 @@ declare const ListObjectAttributesCommand_base: {
|
|
|
114
114
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
115
115
|
*
|
|
116
116
|
* @public
|
|
117
|
+
* @example To list object attributes
|
|
118
|
+
* ```javascript
|
|
119
|
+
* //
|
|
120
|
+
* const input = {
|
|
121
|
+
* "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
|
|
122
|
+
* "ObjectReference": {
|
|
123
|
+
* "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q"
|
|
124
|
+
* }
|
|
125
|
+
* };
|
|
126
|
+
* const command = new ListObjectAttributesCommand(input);
|
|
127
|
+
* const response = await client.send(command);
|
|
128
|
+
* /* response ==
|
|
129
|
+
* {
|
|
130
|
+
* "Attributes": [
|
|
131
|
+
* {
|
|
132
|
+
* "Key": {
|
|
133
|
+
* "FacetName": "INDEX",
|
|
134
|
+
* "Name": "index_is_unique",
|
|
135
|
+
* "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0"
|
|
136
|
+
* },
|
|
137
|
+
* "Value": {
|
|
138
|
+
* "BooleanValue": true
|
|
139
|
+
* }
|
|
140
|
+
* },
|
|
141
|
+
* {
|
|
142
|
+
* "Key": {
|
|
143
|
+
* "FacetName": "INDEX",
|
|
144
|
+
* "Name": "ordered_indexed_attributes",
|
|
145
|
+
* "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0"
|
|
146
|
+
* },
|
|
147
|
+
* "Value": {
|
|
148
|
+
* "StringValue": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1*Organization*description"
|
|
149
|
+
* }
|
|
150
|
+
* }
|
|
151
|
+
* ]
|
|
152
|
+
* }
|
|
153
|
+
* *\/
|
|
154
|
+
* // example id: to-list-object-attributes-1508281422770
|
|
155
|
+
* ```
|
|
156
|
+
*
|
|
117
157
|
*/
|
|
118
158
|
export declare class ListObjectAttributesCommand extends ListObjectAttributesCommand_base {
|
|
119
159
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -97,6 +97,27 @@ declare const ListObjectChildrenCommand_base: {
|
|
|
97
97
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
98
98
|
*
|
|
99
99
|
* @public
|
|
100
|
+
* @example To list an objects children
|
|
101
|
+
* ```javascript
|
|
102
|
+
* //
|
|
103
|
+
* const input = {
|
|
104
|
+
* "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
|
|
105
|
+
* "ObjectReference": {
|
|
106
|
+
* "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw"
|
|
107
|
+
* }
|
|
108
|
+
* };
|
|
109
|
+
* const command = new ListObjectChildrenCommand(input);
|
|
110
|
+
* const response = await client.send(command);
|
|
111
|
+
* /* response ==
|
|
112
|
+
* {
|
|
113
|
+
* "Children": {
|
|
114
|
+
* "link2": "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA"
|
|
115
|
+
* }
|
|
116
|
+
* }
|
|
117
|
+
* *\/
|
|
118
|
+
* // example id: to-list-an-objects-children-1508281694794
|
|
119
|
+
* ```
|
|
120
|
+
*
|
|
100
121
|
*/
|
|
101
122
|
export declare class ListObjectChildrenCommand extends ListObjectChildrenCommand_base {
|
|
102
123
|
/** @internal type navigation helper, not in runtime. */
|
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.662.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-clouddirectory",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.662.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.662.0",
|
|
25
|
+
"@aws-sdk/core": "3.662.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.662.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.662.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.662.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.662.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.662.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.662.0",
|
|
32
|
+
"@aws-sdk/types": "3.662.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.662.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.662.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.662.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.9",
|
|
37
|
+
"@smithy/core": "^2.4.7",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.9",
|
|
39
|
+
"@smithy/hash-node": "^3.0.7",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.7",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.9",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.4",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.22",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.7",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.7",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.8",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.4",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.4",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.6",
|
|
50
|
+
"@smithy/types": "^3.5.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.7",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.22",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.22",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.3",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.7",
|
|
59
|
+
"@smithy/util-retry": "^3.0.7",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|