@aws-sdk/client-clouddirectory 3.774.0 → 3.777.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/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/CloudDirectoryClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/AddFacetToObjectCommand.d.ts +13 -10
- package/dist-types/commands/ApplySchemaCommand.d.ts +7 -7
- package/dist-types/commands/AttachObjectCommand.d.ts +10 -10
- package/dist-types/commands/AttachPolicyCommand.d.ts +11 -8
- package/dist-types/commands/AttachToIndexCommand.d.ts +9 -9
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +27 -27
- package/dist-types/commands/BatchReadCommand.d.ts +7 -7
- package/dist-types/commands/BatchWriteCommand.d.ts +6 -6
- package/dist-types/commands/CreateDirectoryCommand.d.ts +9 -9
- package/dist-types/commands/CreateFacetCommand.d.ts +9 -6
- package/dist-types/commands/CreateIndexCommand.d.ts +9 -9
- package/dist-types/commands/CreateObjectCommand.d.ts +8 -8
- package/dist-types/commands/CreateSchemaCommand.d.ts +5 -5
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +14 -11
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +5 -5
- package/dist-types/commands/DeleteFacetCommand.d.ts +8 -5
- package/dist-types/commands/DeleteObjectCommand.d.ts +9 -6
- package/dist-types/commands/DeleteSchemaCommand.d.ts +5 -5
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +8 -5
- package/dist-types/commands/DetachFromIndexCommand.d.ts +9 -9
- package/dist-types/commands/DetachObjectCommand.d.ts +8 -8
- package/dist-types/commands/DetachPolicyCommand.d.ts +11 -8
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +19 -16
- package/dist-types/commands/DisableDirectoryCommand.d.ts +5 -5
- package/dist-types/commands/EnableDirectoryCommand.d.ts +5 -5
- package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +1 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +9 -9
- package/dist-types/commands/GetFacetCommand.d.ts +8 -8
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +11 -11
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +6 -6
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +6 -6
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +5 -5
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +9 -9
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +5 -5
- package/dist-types/commands/ListDirectoriesCommand.d.ts +25 -25
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +117 -117
- package/dist-types/commands/ListFacetNamesCommand.d.ts +5 -5
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +41 -41
- package/dist-types/commands/ListIndexCommand.d.ts +14 -14
- package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +19 -19
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +8 -8
- package/dist-types/commands/ListObjectParentPathsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectParentsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectPoliciesCommand.d.ts +1 -0
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +1 -0
- package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +1 -0
- package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +1 -0
- package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +1 -0
- package/dist-types/commands/LookupPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PublishSchemaCommand.d.ts +1 -0
- package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +1 -0
- package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +1 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFacetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -0
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +1 -0
- package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +1 -0
- package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +1 -0
- package/package.json +33 -33
|
@@ -77,24 +77,24 @@ declare const GetSchemaAsJsonCommand_base: {
|
|
|
77
77
|
* @throws {@link CloudDirectoryServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
*
|
|
81
81
|
* @example To get schema information and display it in JSON format
|
|
82
82
|
* ```javascript
|
|
83
83
|
* //
|
|
84
84
|
* const input = {
|
|
85
|
-
*
|
|
85
|
+
* SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1"
|
|
86
86
|
* };
|
|
87
87
|
* const command = new GetSchemaAsJsonCommand(input);
|
|
88
88
|
* const response = await client.send(command);
|
|
89
|
-
* /* response
|
|
89
|
+
* /* response is
|
|
90
90
|
* {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
91
|
+
* Document: `{"sourceSchemaArn":"arn:aws:clouddirectory:us-west-2:45132example:schema/published/org/1","facets":{"node2":{"facetAttributes":{},"objectType":"NODE"},"Organization":{"facetAttributes":{"account_id":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"account_name":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"telephone_number":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"description":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_country":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_state":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street2":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street1":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"web_site":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"email":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_city":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"organization_status":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_postal_code":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"}},"objectType":"LEAF_NODE"},"nodex":{"facetAttributes":{},"objectType":"NODE"},"Legal_Entity":{"facetAttributes":{"industry_vertical":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"registered_company_name":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"billing_currency":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_country":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_state":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street2":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_street1":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"tax_id":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_city":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"},"mailing_address_postal_code":{"attributeDefinition":{"attributeType":"STRING","isImmutable":false,"attributeRules":{"nameLength":{"parameters":{"min":"1","max":"1024"},"ruleType":"STRING_LENGTH"}}},"requiredBehavior":"NOT_REQUIRED"}},"objectType":"LEAF_NODE"},"policyfacet":{"facetAttributes":{},"objectType":"POLICY"},"node1":{"facetAttributes":{},"objectType":"NODE"}},"typedLinkFacets":{"exampletypedlink":{"facetAttributes":{"1":{"attributeDefinition":{"attributeType":"BINARY","isImmutable":false,"attributeRules":{}},"requiredBehavior":"REQUIRED_ALWAYS"}},"identityAttributeOrder":["1"]},"exampletypedlink8":{"facetAttributes":{"22":{"attributeDefinition":{"attributeType":"BINARY","isImmutable":false,"attributeRules":{}},"requiredBehavior":"REQUIRED_ALWAYS"}},"identityAttributeOrder":["22"]}}}`,
|
|
92
|
+
* Name: "org"
|
|
93
93
|
* }
|
|
94
94
|
* *\/
|
|
95
|
-
* // example id: to-get-schema-information-and-display-it-in-json-format-1507249604181
|
|
96
95
|
* ```
|
|
97
96
|
*
|
|
97
|
+
* @public
|
|
98
98
|
*/
|
|
99
99
|
export declare class GetSchemaAsJsonCommand extends GetSchemaAsJsonCommand_base {
|
|
100
100
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -85,26 +85,26 @@ declare const GetTypedLinkFacetInformationCommand_base: {
|
|
|
85
85
|
* @throws {@link CloudDirectoryServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
87
87
|
*
|
|
88
|
-
*
|
|
88
|
+
*
|
|
89
89
|
* @example To get information about a typed link facet
|
|
90
90
|
* ```javascript
|
|
91
91
|
* //
|
|
92
92
|
* const input = {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
93
|
+
* Name: "exampletypedlink8",
|
|
94
|
+
* SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1"
|
|
95
95
|
* };
|
|
96
96
|
* const command = new GetTypedLinkFacetInformationCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
-
* /* response
|
|
98
|
+
* /* response is
|
|
99
99
|
* {
|
|
100
|
-
*
|
|
100
|
+
* IdentityAttributeOrder: [
|
|
101
101
|
* "22"
|
|
102
102
|
* ]
|
|
103
103
|
* }
|
|
104
104
|
* *\/
|
|
105
|
-
* // example id: to-get-information-about-a-typed-link-facet-1507251423121
|
|
106
105
|
* ```
|
|
107
106
|
*
|
|
107
|
+
* @public
|
|
108
108
|
*/
|
|
109
109
|
export declare class GetTypedLinkFacetInformationCommand extends GetTypedLinkFacetInformationCommand_base {
|
|
110
110
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -85,25 +85,25 @@ declare const ListAppliedSchemaArnsCommand_base: {
|
|
|
85
85
|
* @throws {@link CloudDirectoryServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
87
87
|
*
|
|
88
|
-
*
|
|
88
|
+
*
|
|
89
89
|
* @example To list applied schema ARNs for a specified directory
|
|
90
90
|
* ```javascript
|
|
91
91
|
* //
|
|
92
92
|
* const input = {
|
|
93
|
-
*
|
|
93
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY"
|
|
94
94
|
* };
|
|
95
95
|
* const command = new ListAppliedSchemaArnsCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
97
|
-
* /* response
|
|
97
|
+
* /* response is
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
99
|
+
* SchemaArns: [
|
|
100
100
|
* "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1"
|
|
101
101
|
* ]
|
|
102
102
|
* }
|
|
103
103
|
* *\/
|
|
104
|
-
* // example id: to-list-applied-schema-arns-for-a-specified-directory-1508194900072
|
|
105
104
|
* ```
|
|
106
105
|
*
|
|
106
|
+
* @public
|
|
107
107
|
*/
|
|
108
108
|
export declare class ListAppliedSchemaArnsCommand extends ListAppliedSchemaArnsCommand_base {
|
|
109
109
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -106,31 +106,31 @@ declare const ListAttachedIndicesCommand_base: {
|
|
|
106
106
|
* @throws {@link CloudDirectoryServiceException}
|
|
107
107
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
108
108
|
*
|
|
109
|
-
*
|
|
109
|
+
*
|
|
110
110
|
* @example To list the indices attached to an object
|
|
111
111
|
* ```javascript
|
|
112
112
|
* //
|
|
113
113
|
* const input = {
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
114
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
|
|
115
|
+
* TargetReference: {
|
|
116
|
+
* Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw"
|
|
117
117
|
* }
|
|
118
118
|
* };
|
|
119
119
|
* const command = new ListAttachedIndicesCommand(input);
|
|
120
120
|
* const response = await client.send(command);
|
|
121
|
-
* /* response
|
|
121
|
+
* /* response is
|
|
122
122
|
* {
|
|
123
|
-
*
|
|
123
|
+
* IndexAttachments: [
|
|
124
124
|
* {
|
|
125
|
-
*
|
|
126
|
-
*
|
|
125
|
+
* IndexedAttributes: [],
|
|
126
|
+
* ObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q"
|
|
127
127
|
* }
|
|
128
128
|
* ]
|
|
129
129
|
* }
|
|
130
130
|
* *\/
|
|
131
|
-
* // example id: to-list-the-indices-attached-to-an-object-1507579868633
|
|
132
131
|
* ```
|
|
133
132
|
*
|
|
133
|
+
* @public
|
|
134
134
|
*/
|
|
135
135
|
export declare class ListAttachedIndicesCommand extends ListAttachedIndicesCommand_base {
|
|
136
136
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -84,16 +84,16 @@ declare const ListDevelopmentSchemaArnsCommand_base: {
|
|
|
84
84
|
* @throws {@link CloudDirectoryServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
86
86
|
*
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example To list all development schema arns in your AWS account
|
|
89
89
|
* ```javascript
|
|
90
90
|
* //
|
|
91
|
-
* const input = {};
|
|
91
|
+
* const input = { /* empty *\/ };
|
|
92
92
|
* const command = new ListDevelopmentSchemaArnsCommand(input);
|
|
93
93
|
* const response = await client.send(command);
|
|
94
|
-
* /* response
|
|
94
|
+
* /* response is
|
|
95
95
|
* {
|
|
96
|
-
*
|
|
96
|
+
* SchemaArns: [
|
|
97
97
|
* "arn:aws:clouddirectory:us-west-2:45132example:schema/development/typedlinkschematest",
|
|
98
98
|
* "arn:aws:clouddirectory:us-west-2:45132example:schema/development/testCDschema",
|
|
99
99
|
* "arn:aws:clouddirectory:us-west-2:45132example:schema/development/Customers",
|
|
@@ -103,9 +103,9 @@ declare const ListDevelopmentSchemaArnsCommand_base: {
|
|
|
103
103
|
* ]
|
|
104
104
|
* }
|
|
105
105
|
* *\/
|
|
106
|
-
* // example id: to-list-the-development-schema-arns-1508262502911
|
|
107
106
|
* ```
|
|
108
107
|
*
|
|
108
|
+
* @public
|
|
109
109
|
*/
|
|
110
110
|
export declare class ListDevelopmentSchemaArnsCommand extends ListDevelopmentSchemaArnsCommand_base {
|
|
111
111
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -86,52 +86,52 @@ declare const ListDirectoriesCommand_base: {
|
|
|
86
86
|
* @throws {@link CloudDirectoryServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
88
88
|
*
|
|
89
|
-
*
|
|
89
|
+
*
|
|
90
90
|
* @example To list all directories in your AWS account
|
|
91
91
|
* ```javascript
|
|
92
92
|
* //
|
|
93
|
-
* const input = {};
|
|
93
|
+
* const input = { /* empty *\/ };
|
|
94
94
|
* const command = new ListDirectoriesCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
-
* /* response
|
|
96
|
+
* /* response is
|
|
97
97
|
* {
|
|
98
|
-
*
|
|
98
|
+
* Directories: [
|
|
99
99
|
* {
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
100
|
+
* CreationDateTime: 1.506121791167E9,
|
|
101
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/Ae89hOKmw0bRpvYgW8EAsus",
|
|
102
|
+
* Name: "ExampleCD4",
|
|
103
|
+
* State: "ENABLED"
|
|
104
104
|
* },
|
|
105
105
|
* {
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
106
|
+
* CreationDateTime: 1.485473189746E9,
|
|
107
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AXQXDXvdgkOWktRXV4HnRa8",
|
|
108
|
+
* Name: "testCD",
|
|
109
|
+
* State: "DELETED"
|
|
110
110
|
* },
|
|
111
111
|
* {
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
112
|
+
* CreationDateTime: 1.506115781186E9,
|
|
113
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
|
|
114
|
+
* Name: "ExampleCD",
|
|
115
|
+
* State: "ENABLED"
|
|
116
116
|
* },
|
|
117
117
|
* {
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
118
|
+
* CreationDateTime: 1.506118003859E9,
|
|
119
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AfMr4qym1kZTvwqOafAYfqI",
|
|
120
|
+
* Name: "ExampleCD2",
|
|
121
|
+
* State: "ENABLED"
|
|
122
122
|
* },
|
|
123
123
|
* {
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
124
|
+
* CreationDateTime: 1.485477107925E9,
|
|
125
|
+
* DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AWeI1yjiB0SylWVTvQklCD0",
|
|
126
|
+
* Name: "testCD2",
|
|
127
|
+
* State: "DELETED"
|
|
128
128
|
* }
|
|
129
129
|
* ]
|
|
130
130
|
* }
|
|
131
131
|
* *\/
|
|
132
|
-
* // example id: to-list-all-directories-in-your-aws-account-1508262706411
|
|
133
132
|
* ```
|
|
134
133
|
*
|
|
134
|
+
* @public
|
|
135
135
|
*/
|
|
136
136
|
export declare class ListDirectoriesCommand extends ListDirectoriesCommand_base {
|
|
137
137
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -114,196 +114,196 @@ declare const ListFacetAttributesCommand_base: {
|
|
|
114
114
|
* @throws {@link CloudDirectoryServiceException}
|
|
115
115
|
* <p>Base exception class for all service exceptions from CloudDirectory service.</p>
|
|
116
116
|
*
|
|
117
|
-
*
|
|
117
|
+
*
|
|
118
118
|
* @example To list facet attributes
|
|
119
119
|
* ```javascript
|
|
120
120
|
* //
|
|
121
121
|
* const input = {
|
|
122
|
-
*
|
|
123
|
-
*
|
|
122
|
+
* Name: "Organization",
|
|
123
|
+
* SchemaArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1"
|
|
124
124
|
* };
|
|
125
125
|
* const command = new ListFacetAttributesCommand(input);
|
|
126
126
|
* const response = await client.send(command);
|
|
127
|
-
* /* response
|
|
127
|
+
* /* response is
|
|
128
128
|
* {
|
|
129
|
-
*
|
|
129
|
+
* Attributes: [
|
|
130
130
|
* {
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
131
|
+
* AttributeDefinition: {
|
|
132
|
+
* IsImmutable: false,
|
|
133
|
+
* Rules: {
|
|
134
|
+
* nameLength: {
|
|
135
|
+
* Parameters: {
|
|
136
|
+
* max: "1024",
|
|
137
|
+
* min: "1"
|
|
138
138
|
* },
|
|
139
|
-
*
|
|
139
|
+
* Type: "STRING_LENGTH"
|
|
140
140
|
* }
|
|
141
141
|
* },
|
|
142
|
-
*
|
|
142
|
+
* Type: "STRING"
|
|
143
143
|
* },
|
|
144
|
-
*
|
|
145
|
-
*
|
|
144
|
+
* Name: "account_id",
|
|
145
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
146
146
|
* },
|
|
147
147
|
* {
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
*
|
|
148
|
+
* AttributeDefinition: {
|
|
149
|
+
* IsImmutable: false,
|
|
150
|
+
* Rules: {
|
|
151
|
+
* nameLength: {
|
|
152
|
+
* Parameters: {
|
|
153
|
+
* max: "1024",
|
|
154
|
+
* min: "1"
|
|
155
155
|
* },
|
|
156
|
-
*
|
|
156
|
+
* Type: "STRING_LENGTH"
|
|
157
157
|
* }
|
|
158
158
|
* },
|
|
159
|
-
*
|
|
159
|
+
* Type: "STRING"
|
|
160
160
|
* },
|
|
161
|
-
*
|
|
162
|
-
*
|
|
161
|
+
* Name: "account_name",
|
|
162
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
163
163
|
* },
|
|
164
164
|
* {
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
*
|
|
170
|
-
*
|
|
171
|
-
*
|
|
165
|
+
* AttributeDefinition: {
|
|
166
|
+
* IsImmutable: false,
|
|
167
|
+
* Rules: {
|
|
168
|
+
* nameLength: {
|
|
169
|
+
* Parameters: {
|
|
170
|
+
* max: "1024",
|
|
171
|
+
* min: "1"
|
|
172
172
|
* },
|
|
173
|
-
*
|
|
173
|
+
* Type: "STRING_LENGTH"
|
|
174
174
|
* }
|
|
175
175
|
* },
|
|
176
|
-
*
|
|
176
|
+
* Type: "STRING"
|
|
177
177
|
* },
|
|
178
|
-
*
|
|
179
|
-
*
|
|
178
|
+
* Name: "description",
|
|
179
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
180
180
|
* },
|
|
181
181
|
* {
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
*
|
|
186
|
-
*
|
|
187
|
-
*
|
|
188
|
-
*
|
|
182
|
+
* AttributeDefinition: {
|
|
183
|
+
* IsImmutable: false,
|
|
184
|
+
* Rules: {
|
|
185
|
+
* nameLength: {
|
|
186
|
+
* Parameters: {
|
|
187
|
+
* max: "1024",
|
|
188
|
+
* min: "1"
|
|
189
189
|
* },
|
|
190
|
-
*
|
|
190
|
+
* Type: "STRING_LENGTH"
|
|
191
191
|
* }
|
|
192
192
|
* },
|
|
193
|
-
*
|
|
193
|
+
* Type: "STRING"
|
|
194
194
|
* },
|
|
195
|
-
*
|
|
196
|
-
*
|
|
195
|
+
* Name: "email",
|
|
196
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
197
197
|
* },
|
|
198
198
|
* {
|
|
199
|
-
*
|
|
200
|
-
*
|
|
201
|
-
*
|
|
202
|
-
*
|
|
203
|
-
*
|
|
204
|
-
*
|
|
205
|
-
*
|
|
199
|
+
* AttributeDefinition: {
|
|
200
|
+
* IsImmutable: false,
|
|
201
|
+
* Rules: {
|
|
202
|
+
* nameLength: {
|
|
203
|
+
* Parameters: {
|
|
204
|
+
* max: "1024",
|
|
205
|
+
* min: "1"
|
|
206
206
|
* },
|
|
207
|
-
*
|
|
207
|
+
* Type: "STRING_LENGTH"
|
|
208
208
|
* }
|
|
209
209
|
* },
|
|
210
|
-
*
|
|
210
|
+
* Type: "STRING"
|
|
211
211
|
* },
|
|
212
|
-
*
|
|
213
|
-
*
|
|
212
|
+
* Name: "mailing_address_city",
|
|
213
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
214
214
|
* },
|
|
215
215
|
* {
|
|
216
|
-
*
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
*
|
|
220
|
-
*
|
|
221
|
-
*
|
|
222
|
-
*
|
|
216
|
+
* AttributeDefinition: {
|
|
217
|
+
* IsImmutable: false,
|
|
218
|
+
* Rules: {
|
|
219
|
+
* nameLength: {
|
|
220
|
+
* Parameters: {
|
|
221
|
+
* max: "1024",
|
|
222
|
+
* min: "1"
|
|
223
223
|
* },
|
|
224
|
-
*
|
|
224
|
+
* Type: "STRING_LENGTH"
|
|
225
225
|
* }
|
|
226
226
|
* },
|
|
227
|
-
*
|
|
227
|
+
* Type: "STRING"
|
|
228
228
|
* },
|
|
229
|
-
*
|
|
230
|
-
*
|
|
229
|
+
* Name: "mailing_address_country",
|
|
230
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
231
231
|
* },
|
|
232
232
|
* {
|
|
233
|
-
*
|
|
234
|
-
*
|
|
235
|
-
*
|
|
236
|
-
*
|
|
237
|
-
*
|
|
238
|
-
*
|
|
239
|
-
*
|
|
233
|
+
* AttributeDefinition: {
|
|
234
|
+
* IsImmutable: false,
|
|
235
|
+
* Rules: {
|
|
236
|
+
* nameLength: {
|
|
237
|
+
* Parameters: {
|
|
238
|
+
* max: "1024",
|
|
239
|
+
* min: "1"
|
|
240
240
|
* },
|
|
241
|
-
*
|
|
241
|
+
* Type: "STRING_LENGTH"
|
|
242
242
|
* }
|
|
243
243
|
* },
|
|
244
|
-
*
|
|
244
|
+
* Type: "STRING"
|
|
245
245
|
* },
|
|
246
|
-
*
|
|
247
|
-
*
|
|
246
|
+
* Name: "mailing_address_postal_code",
|
|
247
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
248
248
|
* },
|
|
249
249
|
* {
|
|
250
|
-
*
|
|
251
|
-
*
|
|
252
|
-
*
|
|
253
|
-
*
|
|
254
|
-
*
|
|
255
|
-
*
|
|
256
|
-
*
|
|
250
|
+
* AttributeDefinition: {
|
|
251
|
+
* IsImmutable: false,
|
|
252
|
+
* Rules: {
|
|
253
|
+
* nameLength: {
|
|
254
|
+
* Parameters: {
|
|
255
|
+
* max: "1024",
|
|
256
|
+
* min: "1"
|
|
257
257
|
* },
|
|
258
|
-
*
|
|
258
|
+
* Type: "STRING_LENGTH"
|
|
259
259
|
* }
|
|
260
260
|
* },
|
|
261
|
-
*
|
|
261
|
+
* Type: "STRING"
|
|
262
262
|
* },
|
|
263
|
-
*
|
|
264
|
-
*
|
|
263
|
+
* Name: "mailing_address_state",
|
|
264
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
265
265
|
* },
|
|
266
266
|
* {
|
|
267
|
-
*
|
|
268
|
-
*
|
|
269
|
-
*
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
*
|
|
273
|
-
*
|
|
267
|
+
* AttributeDefinition: {
|
|
268
|
+
* IsImmutable: false,
|
|
269
|
+
* Rules: {
|
|
270
|
+
* nameLength: {
|
|
271
|
+
* Parameters: {
|
|
272
|
+
* max: "1024",
|
|
273
|
+
* min: "1"
|
|
274
274
|
* },
|
|
275
|
-
*
|
|
275
|
+
* Type: "STRING_LENGTH"
|
|
276
276
|
* }
|
|
277
277
|
* },
|
|
278
|
-
*
|
|
278
|
+
* Type: "STRING"
|
|
279
279
|
* },
|
|
280
|
-
*
|
|
281
|
-
*
|
|
280
|
+
* Name: "mailing_address_street1",
|
|
281
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
282
282
|
* },
|
|
283
283
|
* {
|
|
284
|
-
*
|
|
285
|
-
*
|
|
286
|
-
*
|
|
287
|
-
*
|
|
288
|
-
*
|
|
289
|
-
*
|
|
290
|
-
*
|
|
284
|
+
* AttributeDefinition: {
|
|
285
|
+
* IsImmutable: false,
|
|
286
|
+
* Rules: {
|
|
287
|
+
* nameLength: {
|
|
288
|
+
* Parameters: {
|
|
289
|
+
* max: "1024",
|
|
290
|
+
* min: "1"
|
|
291
291
|
* },
|
|
292
|
-
*
|
|
292
|
+
* Type: "STRING_LENGTH"
|
|
293
293
|
* }
|
|
294
294
|
* },
|
|
295
|
-
*
|
|
295
|
+
* Type: "STRING"
|
|
296
296
|
* },
|
|
297
|
-
*
|
|
298
|
-
*
|
|
297
|
+
* Name: "mailing_address_street2",
|
|
298
|
+
* RequiredBehavior: "NOT_REQUIRED"
|
|
299
299
|
* }
|
|
300
300
|
* ],
|
|
301
|
-
*
|
|
301
|
+
* NextToken: "V0b3JnYW5pemF0aW9uX3N0YXR1cw=="
|
|
302
302
|
* }
|
|
303
303
|
* *\/
|
|
304
|
-
* // example id: to-list-facet-attributes-1508275015421
|
|
305
304
|
* ```
|
|
306
305
|
*
|
|
306
|
+
* @public
|
|
307
307
|
*/
|
|
308
308
|
export declare class ListFacetAttributesCommand extends ListFacetAttributesCommand_base {
|
|
309
309
|
/** @internal type navigation helper, not in runtime. */
|