@aws-sdk/client-clouddirectory 3.32.0 → 3.36.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 +44 -0
- package/dist-cjs/CloudDirectory.js +1005 -0
- package/dist-cjs/CloudDirectoryClient.js +48 -0
- package/dist-cjs/commands/AddFacetToObjectCommand.js +60 -0
- package/dist-cjs/commands/ApplySchemaCommand.js +61 -0
- package/dist-cjs/commands/AttachObjectCommand.js +70 -0
- package/dist-cjs/commands/AttachPolicyCommand.js +61 -0
- package/dist-cjs/commands/AttachToIndexCommand.js +60 -0
- package/dist-cjs/commands/AttachTypedLinkCommand.js +60 -0
- package/dist-cjs/commands/BatchReadCommand.js +60 -0
- package/dist-cjs/commands/BatchWriteCommand.js +61 -0
- package/dist-cjs/commands/CreateDirectoryCommand.js +63 -0
- package/dist-cjs/commands/CreateFacetCommand.js +61 -0
- package/dist-cjs/commands/CreateIndexCommand.js +60 -0
- package/dist-cjs/commands/CreateObjectCommand.js +63 -0
- package/dist-cjs/commands/CreateSchemaCommand.js +80 -0
- package/dist-cjs/commands/CreateTypedLinkFacetCommand.js +60 -0
- package/dist-cjs/commands/DeleteDirectoryCommand.js +62 -0
- package/dist-cjs/commands/DeleteFacetCommand.js +62 -0
- package/dist-cjs/commands/DeleteObjectCommand.js +61 -0
- package/dist-cjs/commands/DeleteSchemaCommand.js +60 -0
- package/dist-cjs/commands/DeleteTypedLinkFacetCommand.js +60 -0
- package/dist-cjs/commands/DetachFromIndexCommand.js +60 -0
- package/dist-cjs/commands/DetachObjectCommand.js +61 -0
- package/dist-cjs/commands/DetachPolicyCommand.js +60 -0
- package/dist-cjs/commands/DetachTypedLinkCommand.js +60 -0
- package/dist-cjs/commands/DisableDirectoryCommand.js +61 -0
- package/dist-cjs/commands/EnableDirectoryCommand.js +61 -0
- package/dist-cjs/commands/GetAppliedSchemaVersionCommand.js +60 -0
- package/dist-cjs/commands/GetDirectoryCommand.js +60 -0
- package/dist-cjs/commands/GetFacetCommand.js +61 -0
- package/dist-cjs/commands/GetLinkAttributesCommand.js +60 -0
- package/dist-cjs/commands/GetObjectAttributesCommand.js +60 -0
- package/dist-cjs/commands/GetObjectInformationCommand.js +60 -0
- package/dist-cjs/commands/GetSchemaAsJsonCommand.js +60 -0
- package/dist-cjs/commands/GetTypedLinkFacetInformationCommand.js +60 -0
- package/dist-cjs/commands/ListAppliedSchemaArnsCommand.js +60 -0
- package/dist-cjs/commands/ListAttachedIndicesCommand.js +60 -0
- package/dist-cjs/commands/ListDevelopmentSchemaArnsCommand.js +61 -0
- package/dist-cjs/commands/ListDirectoriesCommand.js +60 -0
- package/dist-cjs/commands/ListFacetAttributesCommand.js +60 -0
- package/dist-cjs/commands/ListFacetNamesCommand.js +60 -0
- package/dist-cjs/commands/ListIncomingTypedLinksCommand.js +62 -0
- package/dist-cjs/commands/ListIndexCommand.js +60 -0
- package/dist-cjs/commands/ListManagedSchemaArnsCommand.js +60 -0
- package/dist-cjs/commands/ListObjectAttributesCommand.js +61 -0
- package/dist-cjs/commands/ListObjectChildrenCommand.js +61 -0
- package/dist-cjs/commands/ListObjectParentPathsCommand.js +67 -0
- package/dist-cjs/commands/ListObjectParentsCommand.js +61 -0
- package/dist-cjs/commands/ListObjectPoliciesCommand.js +60 -0
- package/dist-cjs/commands/ListOutgoingTypedLinksCommand.js +62 -0
- package/dist-cjs/commands/ListPolicyAttachmentsCommand.js +60 -0
- package/dist-cjs/commands/ListPublishedSchemaArnsCommand.js +60 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +62 -0
- package/dist-cjs/commands/ListTypedLinkFacetAttributesCommand.js +60 -0
- package/dist-cjs/commands/ListTypedLinkFacetNamesCommand.js +61 -0
- package/dist-cjs/commands/LookupPolicyCommand.js +65 -0
- package/dist-cjs/commands/PublishSchemaCommand.js +60 -0
- package/dist-cjs/commands/PutSchemaFromJsonCommand.js +60 -0
- package/dist-cjs/commands/RemoveFacetFromObjectCommand.js +60 -0
- package/dist-cjs/commands/TagResourceCommand.js +60 -0
- package/dist-cjs/commands/UntagResourceCommand.js +60 -0
- package/dist-cjs/commands/UpdateFacetCommand.js +71 -0
- package/dist-cjs/commands/UpdateLinkAttributesCommand.js +60 -0
- package/dist-cjs/commands/UpdateObjectAttributesCommand.js +60 -0
- package/dist-cjs/commands/UpdateSchemaCommand.js +61 -0
- package/dist-cjs/commands/UpdateTypedLinkFacetCommand.js +60 -0
- package/dist-cjs/commands/UpgradeAppliedSchemaCommand.js +60 -0
- package/dist-cjs/commands/UpgradePublishedSchemaCommand.js +60 -0
- package/dist-cjs/endpoints.js +56 -0
- package/dist-cjs/index.js +92 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +2627 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAppliedSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListAttachedIndicesPaginator.js +45 -0
- package/dist-cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListDirectoriesPaginator.js +45 -0
- package/dist-cjs/pagination/ListFacetAttributesPaginator.js +45 -0
- package/dist-cjs/pagination/ListFacetNamesPaginator.js +45 -0
- package/dist-cjs/pagination/ListIndexPaginator.js +45 -0
- package/dist-cjs/pagination/ListManagedSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectAttributesPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectChildrenPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectParentPathsPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectParentsPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectPoliciesPaginator.js +45 -0
- package/dist-cjs/pagination/ListPolicyAttachmentsPaginator.js +45 -0
- package/dist-cjs/pagination/ListPublishedSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +45 -0
- package/dist-cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +45 -0
- package/dist-cjs/pagination/ListTypedLinkFacetNamesPaginator.js +45 -0
- package/dist-cjs/pagination/LookupPolicyPaginator.js +45 -0
- package/dist-cjs/protocols/Aws_restJson1.js +11264 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +46 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-es/CloudDirectory.js +1000 -0
- package/dist-es/CloudDirectoryClient.js +37 -0
- package/dist-es/commands/AddFacetToObjectCommand.js +39 -0
- package/dist-es/commands/ApplySchemaCommand.js +39 -0
- package/dist-es/commands/AttachObjectCommand.js +39 -0
- package/dist-es/commands/AttachPolicyCommand.js +39 -0
- package/dist-es/commands/AttachToIndexCommand.js +39 -0
- package/dist-es/commands/AttachTypedLinkCommand.js +39 -0
- package/dist-es/commands/BatchReadCommand.js +39 -0
- package/dist-es/commands/BatchWriteCommand.js +39 -0
- package/dist-es/commands/CreateDirectoryCommand.js +39 -0
- package/dist-es/commands/CreateFacetCommand.js +39 -0
- package/dist-es/commands/CreateIndexCommand.js +39 -0
- package/dist-es/commands/CreateObjectCommand.js +39 -0
- package/dist-es/commands/CreateSchemaCommand.js +39 -0
- package/dist-es/commands/CreateTypedLinkFacetCommand.js +39 -0
- package/dist-es/commands/DeleteDirectoryCommand.js +39 -0
- package/dist-es/commands/DeleteFacetCommand.js +39 -0
- package/dist-es/commands/DeleteObjectCommand.js +39 -0
- package/dist-es/commands/DeleteSchemaCommand.js +39 -0
- package/dist-es/commands/DeleteTypedLinkFacetCommand.js +39 -0
- package/dist-es/commands/DetachFromIndexCommand.js +39 -0
- package/dist-es/commands/DetachObjectCommand.js +39 -0
- package/dist-es/commands/DetachPolicyCommand.js +39 -0
- package/dist-es/commands/DetachTypedLinkCommand.js +39 -0
- package/dist-es/commands/DisableDirectoryCommand.js +39 -0
- package/dist-es/commands/EnableDirectoryCommand.js +39 -0
- package/dist-es/commands/GetAppliedSchemaVersionCommand.js +39 -0
- package/dist-es/commands/GetDirectoryCommand.js +39 -0
- package/dist-es/commands/GetFacetCommand.js +39 -0
- package/dist-es/commands/GetLinkAttributesCommand.js +39 -0
- package/dist-es/commands/GetObjectAttributesCommand.js +39 -0
- package/dist-es/commands/GetObjectInformationCommand.js +39 -0
- package/dist-es/commands/GetSchemaAsJsonCommand.js +39 -0
- package/dist-es/commands/GetTypedLinkFacetInformationCommand.js +39 -0
- package/dist-es/commands/ListAppliedSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListAttachedIndicesCommand.js +39 -0
- package/dist-es/commands/ListDevelopmentSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListDirectoriesCommand.js +39 -0
- package/dist-es/commands/ListFacetAttributesCommand.js +39 -0
- package/dist-es/commands/ListFacetNamesCommand.js +39 -0
- package/dist-es/commands/ListIncomingTypedLinksCommand.js +39 -0
- package/dist-es/commands/ListIndexCommand.js +39 -0
- package/dist-es/commands/ListManagedSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListObjectAttributesCommand.js +39 -0
- package/dist-es/commands/ListObjectChildrenCommand.js +39 -0
- package/dist-es/commands/ListObjectParentPathsCommand.js +39 -0
- package/dist-es/commands/ListObjectParentsCommand.js +39 -0
- package/dist-es/commands/ListObjectPoliciesCommand.js +39 -0
- package/dist-es/commands/ListOutgoingTypedLinksCommand.js +39 -0
- package/dist-es/commands/ListPolicyAttachmentsCommand.js +39 -0
- package/dist-es/commands/ListPublishedSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/ListTypedLinkFacetAttributesCommand.js +39 -0
- package/dist-es/commands/ListTypedLinkFacetNamesCommand.js +39 -0
- package/dist-es/commands/LookupPolicyCommand.js +39 -0
- package/dist-es/commands/PublishSchemaCommand.js +39 -0
- package/dist-es/commands/PutSchemaFromJsonCommand.js +39 -0
- package/dist-es/commands/RemoveFacetFromObjectCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateFacetCommand.js +39 -0
- package/dist-es/commands/UpdateLinkAttributesCommand.js +39 -0
- package/dist-es/commands/UpdateObjectAttributesCommand.js +39 -0
- package/dist-es/commands/UpdateSchemaCommand.js +39 -0
- package/dist-es/commands/UpdateTypedLinkFacetCommand.js +39 -0
- package/dist-es/commands/UpgradeAppliedSchemaCommand.js +39 -0
- package/dist-es/commands/UpgradePublishedSchemaCommand.js +39 -0
- package/dist-es/endpoints.js +52 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +1252 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAppliedSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListAttachedIndicesPaginator.js +74 -0
- package/dist-es/pagination/ListDevelopmentSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListDirectoriesPaginator.js +74 -0
- package/dist-es/pagination/ListFacetAttributesPaginator.js +74 -0
- package/dist-es/pagination/ListFacetNamesPaginator.js +74 -0
- package/dist-es/pagination/ListIndexPaginator.js +74 -0
- package/dist-es/pagination/ListManagedSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListObjectAttributesPaginator.js +74 -0
- package/dist-es/pagination/ListObjectChildrenPaginator.js +74 -0
- package/dist-es/pagination/ListObjectParentPathsPaginator.js +74 -0
- package/dist-es/pagination/ListObjectParentsPaginator.js +74 -0
- package/dist-es/pagination/ListObjectPoliciesPaginator.js +74 -0
- package/dist-es/pagination/ListPolicyAttachmentsPaginator.js +74 -0
- package/dist-es/pagination/ListPublishedSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
- package/dist-es/pagination/ListTypedLinkFacetAttributesPaginator.js +74 -0
- package/dist-es/pagination/ListTypedLinkFacetNamesPaginator.js +74 -0
- package/dist-es/pagination/LookupPolicyPaginator.js +74 -0
- package/dist-es/protocols/Aws_restJson1.js +11983 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/CloudDirectory.d.ts +558 -0
- package/dist-types/CloudDirectoryClient.d.ts +203 -0
- package/dist-types/commands/AddFacetToObjectCommand.d.ts +35 -0
- package/dist-types/commands/ApplySchemaCommand.d.ts +36 -0
- package/dist-types/commands/AttachObjectCommand.d.ts +45 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +36 -0
- package/dist-types/commands/AttachToIndexCommand.d.ts +35 -0
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +35 -0
- package/dist-types/commands/BatchReadCommand.d.ts +35 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +36 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +38 -0
- package/dist-types/commands/CreateFacetCommand.d.ts +36 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +35 -0
- package/dist-types/commands/CreateObjectCommand.d.ts +38 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +55 -0
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +37 -0
- package/dist-types/commands/DeleteFacetCommand.d.ts +37 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +36 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +35 -0
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/commands/DetachFromIndexCommand.d.ts +35 -0
- package/dist-types/commands/DetachObjectCommand.d.ts +36 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +35 -0
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +35 -0
- package/dist-types/commands/DisableDirectoryCommand.d.ts +36 -0
- package/dist-types/commands/EnableDirectoryCommand.d.ts +36 -0
- package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +35 -0
- package/dist-types/commands/GetFacetCommand.d.ts +36 -0
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +35 -0
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +35 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +35 -0
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +35 -0
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +35 -0
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
- package/dist-types/commands/ListDirectoriesCommand.d.ts +35 -0
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +35 -0
- package/dist-types/commands/ListFacetNamesCommand.d.ts +35 -0
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
- package/dist-types/commands/ListIndexCommand.d.ts +35 -0
- package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +36 -0
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +36 -0
- package/dist-types/commands/ListObjectParentPathsCommand.d.ts +42 -0
- package/dist-types/commands/ListObjectParentsCommand.d.ts +36 -0
- package/dist-types/commands/ListObjectPoliciesCommand.d.ts +35 -0
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
- package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
- package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
- package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
- package/dist-types/commands/LookupPolicyCommand.d.ts +40 -0
- package/dist-types/commands/PublishSchemaCommand.d.ts +35 -0
- package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +35 -0
- package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateFacetCommand.d.ts +46 -0
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateSchemaCommand.d.ts +36 -0
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
- package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDirectoriesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListFacetNamesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListIndexPaginator.d.ts +4 -0
- package/dist-types/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectAttributesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectChildrenPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectParentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
- package/dist-types/pagination/LookupPolicyPaginator.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
- package/dist-types/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/dist-types/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/CloudDirectory.d.ts +558 -0
- package/dist-types/ts3.4/CloudDirectoryClient.d.ts +203 -0
- package/dist-types/ts3.4/commands/AddFacetToObjectCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ApplySchemaCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/AttachObjectCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/AttachPolicyCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/AttachToIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/AttachTypedLinkCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/BatchReadCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDirectoryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateFacetCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateObjectCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +55 -0
- package/dist-types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteDirectoryCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteFacetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DetachFromIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DetachObjectCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DetachPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DetachTypedLinkCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DisableDirectoryCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/EnableDirectoryCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetDirectoryCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetFacetCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetLinkAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetObjectInformationCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListDirectoriesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListFacetAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListFacetNamesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListObjectAttributesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListObjectChildrenCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListObjectParentsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/LookupPolicyCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/PublishSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateFacetCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListIndexPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/LookupPolicyPaginator.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +200 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
- package/package.json +52 -49
- package/CloudDirectory.ts +0 -2405
- package/CloudDirectoryClient.ts +0 -516
- package/commands/AddFacetToObjectCommand.ts +0 -94
- package/commands/ApplySchemaCommand.ts +0 -95
- package/commands/AttachObjectCommand.ts +0 -104
- package/commands/AttachPolicyCommand.ts +0 -95
- package/commands/AttachToIndexCommand.ts +0 -94
- package/commands/AttachTypedLinkCommand.ts +0 -94
- package/commands/BatchReadCommand.ts +0 -94
- package/commands/BatchWriteCommand.ts +0 -95
- package/commands/CreateDirectoryCommand.ts +0 -97
- package/commands/CreateFacetCommand.ts +0 -95
- package/commands/CreateIndexCommand.ts +0 -94
- package/commands/CreateObjectCommand.ts +0 -97
- package/commands/CreateSchemaCommand.ts +0 -114
- package/commands/CreateTypedLinkFacetCommand.ts +0 -94
- package/commands/DeleteDirectoryCommand.ts +0 -96
- package/commands/DeleteFacetCommand.ts +0 -96
- package/commands/DeleteObjectCommand.ts +0 -95
- package/commands/DeleteSchemaCommand.ts +0 -94
- package/commands/DeleteTypedLinkFacetCommand.ts +0 -94
- package/commands/DetachFromIndexCommand.ts +0 -94
- package/commands/DetachObjectCommand.ts +0 -95
- package/commands/DetachPolicyCommand.ts +0 -94
- package/commands/DetachTypedLinkCommand.ts +0 -94
- package/commands/DisableDirectoryCommand.ts +0 -95
- package/commands/EnableDirectoryCommand.ts +0 -95
- package/commands/GetAppliedSchemaVersionCommand.ts +0 -94
- package/commands/GetDirectoryCommand.ts +0 -94
- package/commands/GetFacetCommand.ts +0 -95
- package/commands/GetLinkAttributesCommand.ts +0 -94
- package/commands/GetObjectAttributesCommand.ts +0 -94
- package/commands/GetObjectInformationCommand.ts +0 -94
- package/commands/GetSchemaAsJsonCommand.ts +0 -94
- package/commands/GetTypedLinkFacetInformationCommand.ts +0 -99
- package/commands/ListAppliedSchemaArnsCommand.ts +0 -94
- package/commands/ListAttachedIndicesCommand.ts +0 -94
- package/commands/ListDevelopmentSchemaArnsCommand.ts +0 -98
- package/commands/ListDirectoriesCommand.ts +0 -94
- package/commands/ListFacetAttributesCommand.ts +0 -94
- package/commands/ListFacetNamesCommand.ts +0 -94
- package/commands/ListIncomingTypedLinksCommand.ts +0 -96
- package/commands/ListIndexCommand.ts +0 -94
- package/commands/ListManagedSchemaArnsCommand.ts +0 -94
- package/commands/ListObjectAttributesCommand.ts +0 -95
- package/commands/ListObjectChildrenCommand.ts +0 -95
- package/commands/ListObjectParentPathsCommand.ts +0 -101
- package/commands/ListObjectParentsCommand.ts +0 -95
- package/commands/ListObjectPoliciesCommand.ts +0 -94
- package/commands/ListOutgoingTypedLinksCommand.ts +0 -96
- package/commands/ListPolicyAttachmentsCommand.ts +0 -94
- package/commands/ListPublishedSchemaArnsCommand.ts +0 -94
- package/commands/ListTagsForResourceCommand.ts +0 -96
- package/commands/ListTypedLinkFacetAttributesCommand.ts +0 -99
- package/commands/ListTypedLinkFacetNamesCommand.ts +0 -95
- package/commands/LookupPolicyCommand.ts +0 -99
- package/commands/PublishSchemaCommand.ts +0 -94
- package/commands/PutSchemaFromJsonCommand.ts +0 -94
- package/commands/RemoveFacetFromObjectCommand.ts +0 -94
- package/commands/TagResourceCommand.ts +0 -94
- package/commands/UntagResourceCommand.ts +0 -94
- package/commands/UpdateFacetCommand.ts +0 -105
- package/commands/UpdateLinkAttributesCommand.ts +0 -94
- package/commands/UpdateObjectAttributesCommand.ts +0 -94
- package/commands/UpdateSchemaCommand.ts +0 -95
- package/commands/UpdateTypedLinkFacetCommand.ts +0 -94
- package/commands/UpgradeAppliedSchemaCommand.ts +0 -94
- package/commands/UpgradePublishedSchemaCommand.ts +0 -94
- package/dist/cjs/CloudDirectory.js +0 -1006
- package/dist/cjs/CloudDirectory.js.map +0 -1
- package/dist/cjs/CloudDirectoryClient.js +0 -49
- package/dist/cjs/CloudDirectoryClient.js.map +0 -1
- package/dist/cjs/commands/AddFacetToObjectCommand.js +0 -61
- package/dist/cjs/commands/AddFacetToObjectCommand.js.map +0 -1
- package/dist/cjs/commands/ApplySchemaCommand.js +0 -62
- package/dist/cjs/commands/ApplySchemaCommand.js.map +0 -1
- package/dist/cjs/commands/AttachObjectCommand.js +0 -71
- package/dist/cjs/commands/AttachObjectCommand.js.map +0 -1
- package/dist/cjs/commands/AttachPolicyCommand.js +0 -62
- package/dist/cjs/commands/AttachPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/AttachToIndexCommand.js +0 -61
- package/dist/cjs/commands/AttachToIndexCommand.js.map +0 -1
- package/dist/cjs/commands/AttachTypedLinkCommand.js +0 -61
- package/dist/cjs/commands/AttachTypedLinkCommand.js.map +0 -1
- package/dist/cjs/commands/BatchReadCommand.js +0 -61
- package/dist/cjs/commands/BatchReadCommand.js.map +0 -1
- package/dist/cjs/commands/BatchWriteCommand.js +0 -62
- package/dist/cjs/commands/BatchWriteCommand.js.map +0 -1
- package/dist/cjs/commands/CreateDirectoryCommand.js +0 -64
- package/dist/cjs/commands/CreateDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/CreateFacetCommand.js +0 -62
- package/dist/cjs/commands/CreateFacetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateIndexCommand.js +0 -61
- package/dist/cjs/commands/CreateIndexCommand.js.map +0 -1
- package/dist/cjs/commands/CreateObjectCommand.js +0 -64
- package/dist/cjs/commands/CreateObjectCommand.js.map +0 -1
- package/dist/cjs/commands/CreateSchemaCommand.js +0 -81
- package/dist/cjs/commands/CreateSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/CreateTypedLinkFacetCommand.js +0 -61
- package/dist/cjs/commands/CreateTypedLinkFacetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteDirectoryCommand.js +0 -63
- package/dist/cjs/commands/DeleteDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteFacetCommand.js +0 -63
- package/dist/cjs/commands/DeleteFacetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteObjectCommand.js +0 -62
- package/dist/cjs/commands/DeleteObjectCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteSchemaCommand.js +0 -61
- package/dist/cjs/commands/DeleteSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js +0 -61
- package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
- package/dist/cjs/commands/DetachFromIndexCommand.js +0 -61
- package/dist/cjs/commands/DetachFromIndexCommand.js.map +0 -1
- package/dist/cjs/commands/DetachObjectCommand.js +0 -62
- package/dist/cjs/commands/DetachObjectCommand.js.map +0 -1
- package/dist/cjs/commands/DetachPolicyCommand.js +0 -61
- package/dist/cjs/commands/DetachPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/DetachTypedLinkCommand.js +0 -61
- package/dist/cjs/commands/DetachTypedLinkCommand.js.map +0 -1
- package/dist/cjs/commands/DisableDirectoryCommand.js +0 -62
- package/dist/cjs/commands/DisableDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/EnableDirectoryCommand.js +0 -62
- package/dist/cjs/commands/EnableDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js +0 -61
- package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
- package/dist/cjs/commands/GetDirectoryCommand.js +0 -61
- package/dist/cjs/commands/GetDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/GetFacetCommand.js +0 -62
- package/dist/cjs/commands/GetFacetCommand.js.map +0 -1
- package/dist/cjs/commands/GetLinkAttributesCommand.js +0 -61
- package/dist/cjs/commands/GetLinkAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetObjectAttributesCommand.js +0 -61
- package/dist/cjs/commands/GetObjectAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetObjectInformationCommand.js +0 -61
- package/dist/cjs/commands/GetObjectInformationCommand.js.map +0 -1
- package/dist/cjs/commands/GetSchemaAsJsonCommand.js +0 -61
- package/dist/cjs/commands/GetSchemaAsJsonCommand.js.map +0 -1
- package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js +0 -61
- package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
- package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js +0 -61
- package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListAttachedIndicesCommand.js +0 -61
- package/dist/cjs/commands/ListAttachedIndicesCommand.js.map +0 -1
- package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js +0 -62
- package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListDirectoriesCommand.js +0 -61
- package/dist/cjs/commands/ListDirectoriesCommand.js.map +0 -1
- package/dist/cjs/commands/ListFacetAttributesCommand.js +0 -61
- package/dist/cjs/commands/ListFacetAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/ListFacetNamesCommand.js +0 -61
- package/dist/cjs/commands/ListFacetNamesCommand.js.map +0 -1
- package/dist/cjs/commands/ListIncomingTypedLinksCommand.js +0 -63
- package/dist/cjs/commands/ListIncomingTypedLinksCommand.js.map +0 -1
- package/dist/cjs/commands/ListIndexCommand.js +0 -61
- package/dist/cjs/commands/ListIndexCommand.js.map +0 -1
- package/dist/cjs/commands/ListManagedSchemaArnsCommand.js +0 -61
- package/dist/cjs/commands/ListManagedSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectAttributesCommand.js +0 -62
- package/dist/cjs/commands/ListObjectAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectChildrenCommand.js +0 -62
- package/dist/cjs/commands/ListObjectChildrenCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectParentPathsCommand.js +0 -68
- package/dist/cjs/commands/ListObjectParentPathsCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectParentsCommand.js +0 -62
- package/dist/cjs/commands/ListObjectParentsCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectPoliciesCommand.js +0 -61
- package/dist/cjs/commands/ListObjectPoliciesCommand.js.map +0 -1
- package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js +0 -63
- package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
- package/dist/cjs/commands/ListPolicyAttachmentsCommand.js +0 -61
- package/dist/cjs/commands/ListPolicyAttachmentsCommand.js.map +0 -1
- package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js +0 -61
- package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -63
- package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js +0 -61
- package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js +0 -62
- package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
- package/dist/cjs/commands/LookupPolicyCommand.js +0 -66
- package/dist/cjs/commands/LookupPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/PublishSchemaCommand.js +0 -61
- package/dist/cjs/commands/PublishSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/PutSchemaFromJsonCommand.js +0 -61
- package/dist/cjs/commands/PutSchemaFromJsonCommand.js.map +0 -1
- package/dist/cjs/commands/RemoveFacetFromObjectCommand.js +0 -61
- package/dist/cjs/commands/RemoveFacetFromObjectCommand.js.map +0 -1
- package/dist/cjs/commands/TagResourceCommand.js +0 -61
- package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UntagResourceCommand.js +0 -61
- package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateFacetCommand.js +0 -72
- package/dist/cjs/commands/UpdateFacetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateLinkAttributesCommand.js +0 -61
- package/dist/cjs/commands/UpdateLinkAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateObjectAttributesCommand.js +0 -61
- package/dist/cjs/commands/UpdateObjectAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateSchemaCommand.js +0 -62
- package/dist/cjs/commands/UpdateSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js +0 -61
- package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
- package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js +0 -61
- package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/UpgradePublishedSchemaCommand.js +0 -61
- package/dist/cjs/commands/UpgradePublishedSchemaCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -57
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -93
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -2628
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -91
- package/dist/cjs/pagination/Interfaces.js +0 -3
- package/dist/cjs/pagination/Interfaces.js.map +0 -1
- package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListAttachedIndicesPaginator.js +0 -46
- package/dist/cjs/pagination/ListAttachedIndicesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListDirectoriesPaginator.js +0 -46
- package/dist/cjs/pagination/ListDirectoriesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListFacetAttributesPaginator.js +0 -46
- package/dist/cjs/pagination/ListFacetAttributesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListFacetNamesPaginator.js +0 -46
- package/dist/cjs/pagination/ListFacetNamesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListIndexPaginator.js +0 -46
- package/dist/cjs/pagination/ListIndexPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectAttributesPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectAttributesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectChildrenPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectChildrenPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectParentPathsPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectParentPathsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectParentsPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectParentsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectPoliciesPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectPoliciesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js +0 -46
- package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -46
- package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js +0 -46
- package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
- package/dist/cjs/pagination/LookupPolicyPaginator.js +0 -46
- package/dist/cjs/pagination/LookupPolicyPaginator.js.map +0 -1
- package/dist/cjs/protocols/Aws_restJson1.js +0 -11265
- package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/es/CloudDirectory.js +0 -1009
- package/dist/es/CloudDirectory.js.map +0 -1
- package/dist/es/CloudDirectoryClient.js +0 -51
- package/dist/es/CloudDirectoryClient.js.map +0 -1
- package/dist/es/commands/AddFacetToObjectCommand.js +0 -65
- package/dist/es/commands/AddFacetToObjectCommand.js.map +0 -1
- package/dist/es/commands/ApplySchemaCommand.js +0 -66
- package/dist/es/commands/ApplySchemaCommand.js.map +0 -1
- package/dist/es/commands/AttachObjectCommand.js +0 -75
- package/dist/es/commands/AttachObjectCommand.js.map +0 -1
- package/dist/es/commands/AttachPolicyCommand.js +0 -66
- package/dist/es/commands/AttachPolicyCommand.js.map +0 -1
- package/dist/es/commands/AttachToIndexCommand.js +0 -65
- package/dist/es/commands/AttachToIndexCommand.js.map +0 -1
- package/dist/es/commands/AttachTypedLinkCommand.js +0 -65
- package/dist/es/commands/AttachTypedLinkCommand.js.map +0 -1
- package/dist/es/commands/BatchReadCommand.js +0 -65
- package/dist/es/commands/BatchReadCommand.js.map +0 -1
- package/dist/es/commands/BatchWriteCommand.js +0 -66
- package/dist/es/commands/BatchWriteCommand.js.map +0 -1
- package/dist/es/commands/CreateDirectoryCommand.js +0 -68
- package/dist/es/commands/CreateDirectoryCommand.js.map +0 -1
- package/dist/es/commands/CreateFacetCommand.js +0 -66
- package/dist/es/commands/CreateFacetCommand.js.map +0 -1
- package/dist/es/commands/CreateIndexCommand.js +0 -65
- package/dist/es/commands/CreateIndexCommand.js.map +0 -1
- package/dist/es/commands/CreateObjectCommand.js +0 -68
- package/dist/es/commands/CreateObjectCommand.js.map +0 -1
- package/dist/es/commands/CreateSchemaCommand.js +0 -85
- package/dist/es/commands/CreateSchemaCommand.js.map +0 -1
- package/dist/es/commands/CreateTypedLinkFacetCommand.js +0 -65
- package/dist/es/commands/CreateTypedLinkFacetCommand.js.map +0 -1
- package/dist/es/commands/DeleteDirectoryCommand.js +0 -67
- package/dist/es/commands/DeleteDirectoryCommand.js.map +0 -1
- package/dist/es/commands/DeleteFacetCommand.js +0 -67
- package/dist/es/commands/DeleteFacetCommand.js.map +0 -1
- package/dist/es/commands/DeleteObjectCommand.js +0 -66
- package/dist/es/commands/DeleteObjectCommand.js.map +0 -1
- package/dist/es/commands/DeleteSchemaCommand.js +0 -65
- package/dist/es/commands/DeleteSchemaCommand.js.map +0 -1
- package/dist/es/commands/DeleteTypedLinkFacetCommand.js +0 -65
- package/dist/es/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
- package/dist/es/commands/DetachFromIndexCommand.js +0 -65
- package/dist/es/commands/DetachFromIndexCommand.js.map +0 -1
- package/dist/es/commands/DetachObjectCommand.js +0 -66
- package/dist/es/commands/DetachObjectCommand.js.map +0 -1
- package/dist/es/commands/DetachPolicyCommand.js +0 -65
- package/dist/es/commands/DetachPolicyCommand.js.map +0 -1
- package/dist/es/commands/DetachTypedLinkCommand.js +0 -65
- package/dist/es/commands/DetachTypedLinkCommand.js.map +0 -1
- package/dist/es/commands/DisableDirectoryCommand.js +0 -66
- package/dist/es/commands/DisableDirectoryCommand.js.map +0 -1
- package/dist/es/commands/EnableDirectoryCommand.js +0 -66
- package/dist/es/commands/EnableDirectoryCommand.js.map +0 -1
- package/dist/es/commands/GetAppliedSchemaVersionCommand.js +0 -65
- package/dist/es/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
- package/dist/es/commands/GetDirectoryCommand.js +0 -65
- package/dist/es/commands/GetDirectoryCommand.js.map +0 -1
- package/dist/es/commands/GetFacetCommand.js +0 -66
- package/dist/es/commands/GetFacetCommand.js.map +0 -1
- package/dist/es/commands/GetLinkAttributesCommand.js +0 -65
- package/dist/es/commands/GetLinkAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetObjectAttributesCommand.js +0 -65
- package/dist/es/commands/GetObjectAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetObjectInformationCommand.js +0 -65
- package/dist/es/commands/GetObjectInformationCommand.js.map +0 -1
- package/dist/es/commands/GetSchemaAsJsonCommand.js +0 -65
- package/dist/es/commands/GetSchemaAsJsonCommand.js.map +0 -1
- package/dist/es/commands/GetTypedLinkFacetInformationCommand.js +0 -65
- package/dist/es/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
- package/dist/es/commands/ListAppliedSchemaArnsCommand.js +0 -65
- package/dist/es/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListAttachedIndicesCommand.js +0 -65
- package/dist/es/commands/ListAttachedIndicesCommand.js.map +0 -1
- package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js +0 -66
- package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListDirectoriesCommand.js +0 -65
- package/dist/es/commands/ListDirectoriesCommand.js.map +0 -1
- package/dist/es/commands/ListFacetAttributesCommand.js +0 -65
- package/dist/es/commands/ListFacetAttributesCommand.js.map +0 -1
- package/dist/es/commands/ListFacetNamesCommand.js +0 -65
- package/dist/es/commands/ListFacetNamesCommand.js.map +0 -1
- package/dist/es/commands/ListIncomingTypedLinksCommand.js +0 -67
- package/dist/es/commands/ListIncomingTypedLinksCommand.js.map +0 -1
- package/dist/es/commands/ListIndexCommand.js +0 -65
- package/dist/es/commands/ListIndexCommand.js.map +0 -1
- package/dist/es/commands/ListManagedSchemaArnsCommand.js +0 -65
- package/dist/es/commands/ListManagedSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListObjectAttributesCommand.js +0 -66
- package/dist/es/commands/ListObjectAttributesCommand.js.map +0 -1
- package/dist/es/commands/ListObjectChildrenCommand.js +0 -66
- package/dist/es/commands/ListObjectChildrenCommand.js.map +0 -1
- package/dist/es/commands/ListObjectParentPathsCommand.js +0 -72
- package/dist/es/commands/ListObjectParentPathsCommand.js.map +0 -1
- package/dist/es/commands/ListObjectParentsCommand.js +0 -66
- package/dist/es/commands/ListObjectParentsCommand.js.map +0 -1
- package/dist/es/commands/ListObjectPoliciesCommand.js +0 -65
- package/dist/es/commands/ListObjectPoliciesCommand.js.map +0 -1
- package/dist/es/commands/ListOutgoingTypedLinksCommand.js +0 -67
- package/dist/es/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
- package/dist/es/commands/ListPolicyAttachmentsCommand.js +0 -65
- package/dist/es/commands/ListPolicyAttachmentsCommand.js.map +0 -1
- package/dist/es/commands/ListPublishedSchemaArnsCommand.js +0 -65
- package/dist/es/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListTagsForResourceCommand.js +0 -67
- package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js +0 -65
- package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
- package/dist/es/commands/ListTypedLinkFacetNamesCommand.js +0 -66
- package/dist/es/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
- package/dist/es/commands/LookupPolicyCommand.js +0 -70
- package/dist/es/commands/LookupPolicyCommand.js.map +0 -1
- package/dist/es/commands/PublishSchemaCommand.js +0 -65
- package/dist/es/commands/PublishSchemaCommand.js.map +0 -1
- package/dist/es/commands/PutSchemaFromJsonCommand.js +0 -65
- package/dist/es/commands/PutSchemaFromJsonCommand.js.map +0 -1
- package/dist/es/commands/RemoveFacetFromObjectCommand.js +0 -65
- package/dist/es/commands/RemoveFacetFromObjectCommand.js.map +0 -1
- package/dist/es/commands/TagResourceCommand.js +0 -65
- package/dist/es/commands/TagResourceCommand.js.map +0 -1
- package/dist/es/commands/UntagResourceCommand.js +0 -65
- package/dist/es/commands/UntagResourceCommand.js.map +0 -1
- package/dist/es/commands/UpdateFacetCommand.js +0 -76
- package/dist/es/commands/UpdateFacetCommand.js.map +0 -1
- package/dist/es/commands/UpdateLinkAttributesCommand.js +0 -65
- package/dist/es/commands/UpdateLinkAttributesCommand.js.map +0 -1
- package/dist/es/commands/UpdateObjectAttributesCommand.js +0 -65
- package/dist/es/commands/UpdateObjectAttributesCommand.js.map +0 -1
- package/dist/es/commands/UpdateSchemaCommand.js +0 -66
- package/dist/es/commands/UpdateSchemaCommand.js.map +0 -1
- package/dist/es/commands/UpdateTypedLinkFacetCommand.js +0 -65
- package/dist/es/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
- package/dist/es/commands/UpgradeAppliedSchemaCommand.js +0 -65
- package/dist/es/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
- package/dist/es/commands/UpgradePublishedSchemaCommand.js +0 -65
- package/dist/es/commands/UpgradePublishedSchemaCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -53
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -90
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -2036
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -91
- package/dist/es/pagination/Interfaces.js +0 -2
- package/dist/es/pagination/Interfaces.js.map +0 -1
- package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListAttachedIndicesPaginator.js +0 -87
- package/dist/es/pagination/ListAttachedIndicesPaginator.js.map +0 -1
- package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListDirectoriesPaginator.js +0 -87
- package/dist/es/pagination/ListDirectoriesPaginator.js.map +0 -1
- package/dist/es/pagination/ListFacetAttributesPaginator.js +0 -87
- package/dist/es/pagination/ListFacetAttributesPaginator.js.map +0 -1
- package/dist/es/pagination/ListFacetNamesPaginator.js +0 -87
- package/dist/es/pagination/ListFacetNamesPaginator.js.map +0 -1
- package/dist/es/pagination/ListIndexPaginator.js +0 -87
- package/dist/es/pagination/ListIndexPaginator.js.map +0 -1
- package/dist/es/pagination/ListManagedSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectAttributesPaginator.js +0 -87
- package/dist/es/pagination/ListObjectAttributesPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectChildrenPaginator.js +0 -87
- package/dist/es/pagination/ListObjectChildrenPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectParentPathsPaginator.js +0 -87
- package/dist/es/pagination/ListObjectParentPathsPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectParentsPaginator.js +0 -87
- package/dist/es/pagination/ListObjectParentsPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectPoliciesPaginator.js +0 -87
- package/dist/es/pagination/ListObjectPoliciesPaginator.js.map +0 -1
- package/dist/es/pagination/ListPolicyAttachmentsPaginator.js +0 -87
- package/dist/es/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
- package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -87
- package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -87
- package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
- package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js +0 -87
- package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
- package/dist/es/pagination/LookupPolicyPaginator.js +0 -87
- package/dist/es/pagination/LookupPolicyPaginator.js.map +0 -1
- package/dist/es/protocols/Aws_restJson1.js +0 -11989
- package/dist/es/protocols/Aws_restJson1.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -20
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -25
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -12
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -17
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/types/CloudDirectory.d.ts +0 -558
- package/dist/types/CloudDirectoryClient.d.ts +0 -203
- package/dist/types/commands/AddFacetToObjectCommand.d.ts +0 -35
- package/dist/types/commands/ApplySchemaCommand.d.ts +0 -36
- package/dist/types/commands/AttachObjectCommand.d.ts +0 -45
- package/dist/types/commands/AttachPolicyCommand.d.ts +0 -36
- package/dist/types/commands/AttachToIndexCommand.d.ts +0 -35
- package/dist/types/commands/AttachTypedLinkCommand.d.ts +0 -35
- package/dist/types/commands/BatchReadCommand.d.ts +0 -35
- package/dist/types/commands/BatchWriteCommand.d.ts +0 -36
- package/dist/types/commands/CreateDirectoryCommand.d.ts +0 -38
- package/dist/types/commands/CreateFacetCommand.d.ts +0 -36
- package/dist/types/commands/CreateIndexCommand.d.ts +0 -35
- package/dist/types/commands/CreateObjectCommand.d.ts +0 -38
- package/dist/types/commands/CreateSchemaCommand.d.ts +0 -55
- package/dist/types/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/commands/DeleteDirectoryCommand.d.ts +0 -37
- package/dist/types/commands/DeleteFacetCommand.d.ts +0 -37
- package/dist/types/commands/DeleteObjectCommand.d.ts +0 -36
- package/dist/types/commands/DeleteSchemaCommand.d.ts +0 -35
- package/dist/types/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/commands/DetachFromIndexCommand.d.ts +0 -35
- package/dist/types/commands/DetachObjectCommand.d.ts +0 -36
- package/dist/types/commands/DetachPolicyCommand.d.ts +0 -35
- package/dist/types/commands/DetachTypedLinkCommand.d.ts +0 -35
- package/dist/types/commands/DisableDirectoryCommand.d.ts +0 -36
- package/dist/types/commands/EnableDirectoryCommand.d.ts +0 -36
- package/dist/types/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
- package/dist/types/commands/GetDirectoryCommand.d.ts +0 -35
- package/dist/types/commands/GetFacetCommand.d.ts +0 -36
- package/dist/types/commands/GetLinkAttributesCommand.d.ts +0 -35
- package/dist/types/commands/GetObjectAttributesCommand.d.ts +0 -35
- package/dist/types/commands/GetObjectInformationCommand.d.ts +0 -35
- package/dist/types/commands/GetSchemaAsJsonCommand.d.ts +0 -35
- package/dist/types/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
- package/dist/types/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/commands/ListAttachedIndicesCommand.d.ts +0 -35
- package/dist/types/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
- package/dist/types/commands/ListDirectoriesCommand.d.ts +0 -35
- package/dist/types/commands/ListFacetAttributesCommand.d.ts +0 -35
- package/dist/types/commands/ListFacetNamesCommand.d.ts +0 -35
- package/dist/types/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
- package/dist/types/commands/ListIndexCommand.d.ts +0 -35
- package/dist/types/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/commands/ListObjectAttributesCommand.d.ts +0 -36
- package/dist/types/commands/ListObjectChildrenCommand.d.ts +0 -36
- package/dist/types/commands/ListObjectParentPathsCommand.d.ts +0 -42
- package/dist/types/commands/ListObjectParentsCommand.d.ts +0 -36
- package/dist/types/commands/ListObjectPoliciesCommand.d.ts +0 -35
- package/dist/types/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
- package/dist/types/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
- package/dist/types/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -37
- package/dist/types/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
- package/dist/types/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
- package/dist/types/commands/LookupPolicyCommand.d.ts +0 -40
- package/dist/types/commands/PublishSchemaCommand.d.ts +0 -35
- package/dist/types/commands/PutSchemaFromJsonCommand.d.ts +0 -35
- package/dist/types/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
- package/dist/types/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UpdateFacetCommand.d.ts +0 -46
- package/dist/types/commands/UpdateLinkAttributesCommand.d.ts +0 -35
- package/dist/types/commands/UpdateObjectAttributesCommand.d.ts +0 -35
- package/dist/types/commands/UpdateSchemaCommand.d.ts +0 -36
- package/dist/types/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
- package/dist/types/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
- package/dist/types/pagination/Interfaces.d.ts +0 -6
- package/dist/types/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListDirectoriesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListFacetNamesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListIndexPaginator.d.ts +0 -4
- package/dist/types/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectAttributesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectChildrenPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectParentsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
- package/dist/types/pagination/LookupPolicyPaginator.d.ts +0 -4
- package/dist/types/protocols/Aws_restJson1.d.ts +0 -200
- package/dist/types/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/runtimeConfig.d.ts +0 -36
- package/dist/types/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/CloudDirectory.d.ts +0 -558
- package/dist/types/ts3.4/CloudDirectoryClient.d.ts +0 -203
- package/dist/types/ts3.4/commands/AddFacetToObjectCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ApplySchemaCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/AttachObjectCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/AttachPolicyCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/AttachToIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/AttachTypedLinkCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/BatchReadCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/BatchWriteCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/CreateDirectoryCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateFacetCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/CreateIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/CreateObjectCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateSchemaCommand.d.ts +0 -55
- package/dist/types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteDirectoryCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteFacetCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteObjectCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DeleteSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DetachFromIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DetachObjectCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DetachPolicyCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DetachTypedLinkCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DisableDirectoryCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/EnableDirectoryCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetDirectoryCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetFacetCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetLinkAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetObjectAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetObjectInformationCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListDirectoriesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListFacetAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListFacetNamesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListObjectAttributesCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListObjectChildrenCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +0 -42
- package/dist/types/ts3.4/commands/ListObjectParentsCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/LookupPolicyCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/PublishSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateFacetCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateSchemaCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist/types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListIndexPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/LookupPolicyPaginator.d.ts +0 -4
- package/dist/types/ts3.4/protocols/Aws_restJson1.d.ts +0 -200
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
- package/endpoints.ts +0 -57
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -6731
- package/pagination/Interfaces.ts +0 -7
- package/pagination/ListAppliedSchemaArnsPaginator.ts +0 -58
- package/pagination/ListAttachedIndicesPaginator.ts +0 -58
- package/pagination/ListDevelopmentSchemaArnsPaginator.ts +0 -58
- package/pagination/ListDirectoriesPaginator.ts +0 -58
- package/pagination/ListFacetAttributesPaginator.ts +0 -58
- package/pagination/ListFacetNamesPaginator.ts +0 -58
- package/pagination/ListIndexPaginator.ts +0 -54
- package/pagination/ListManagedSchemaArnsPaginator.ts +0 -58
- package/pagination/ListObjectAttributesPaginator.ts +0 -58
- package/pagination/ListObjectChildrenPaginator.ts +0 -58
- package/pagination/ListObjectParentPathsPaginator.ts +0 -58
- package/pagination/ListObjectParentsPaginator.ts +0 -58
- package/pagination/ListObjectPoliciesPaginator.ts +0 -58
- package/pagination/ListPolicyAttachmentsPaginator.ts +0 -58
- package/pagination/ListPublishedSchemaArnsPaginator.ts +0 -58
- package/pagination/ListTagsForResourcePaginator.ts +0 -58
- package/pagination/ListTypedLinkFacetAttributesPaginator.ts +0 -58
- package/pagination/ListTypedLinkFacetNamesPaginator.ts +0 -58
- package/pagination/LookupPolicyPaginator.ts +0 -58
- package/protocols/Aws_restJson1.ts +0 -12886
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -12
- package/tsconfig.json +0 -32
|
@@ -0,0 +1,1000 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { CloudDirectoryClient } from "./CloudDirectoryClient";
|
|
3
|
+
import { AddFacetToObjectCommand, } from "./commands/AddFacetToObjectCommand";
|
|
4
|
+
import { ApplySchemaCommand } from "./commands/ApplySchemaCommand";
|
|
5
|
+
import { AttachObjectCommand, } from "./commands/AttachObjectCommand";
|
|
6
|
+
import { AttachPolicyCommand, } from "./commands/AttachPolicyCommand";
|
|
7
|
+
import { AttachToIndexCommand, } from "./commands/AttachToIndexCommand";
|
|
8
|
+
import { AttachTypedLinkCommand, } from "./commands/AttachTypedLinkCommand";
|
|
9
|
+
import { BatchReadCommand } from "./commands/BatchReadCommand";
|
|
10
|
+
import { BatchWriteCommand } from "./commands/BatchWriteCommand";
|
|
11
|
+
import { CreateDirectoryCommand, } from "./commands/CreateDirectoryCommand";
|
|
12
|
+
import { CreateFacetCommand } from "./commands/CreateFacetCommand";
|
|
13
|
+
import { CreateIndexCommand } from "./commands/CreateIndexCommand";
|
|
14
|
+
import { CreateObjectCommand, } from "./commands/CreateObjectCommand";
|
|
15
|
+
import { CreateSchemaCommand, } from "./commands/CreateSchemaCommand";
|
|
16
|
+
import { CreateTypedLinkFacetCommand, } from "./commands/CreateTypedLinkFacetCommand";
|
|
17
|
+
import { DeleteDirectoryCommand, } from "./commands/DeleteDirectoryCommand";
|
|
18
|
+
import { DeleteFacetCommand } from "./commands/DeleteFacetCommand";
|
|
19
|
+
import { DeleteObjectCommand, } from "./commands/DeleteObjectCommand";
|
|
20
|
+
import { DeleteSchemaCommand, } from "./commands/DeleteSchemaCommand";
|
|
21
|
+
import { DeleteTypedLinkFacetCommand, } from "./commands/DeleteTypedLinkFacetCommand";
|
|
22
|
+
import { DetachFromIndexCommand, } from "./commands/DetachFromIndexCommand";
|
|
23
|
+
import { DetachObjectCommand, } from "./commands/DetachObjectCommand";
|
|
24
|
+
import { DetachPolicyCommand, } from "./commands/DetachPolicyCommand";
|
|
25
|
+
import { DetachTypedLinkCommand, } from "./commands/DetachTypedLinkCommand";
|
|
26
|
+
import { DisableDirectoryCommand, } from "./commands/DisableDirectoryCommand";
|
|
27
|
+
import { EnableDirectoryCommand, } from "./commands/EnableDirectoryCommand";
|
|
28
|
+
import { GetAppliedSchemaVersionCommand, } from "./commands/GetAppliedSchemaVersionCommand";
|
|
29
|
+
import { GetDirectoryCommand, } from "./commands/GetDirectoryCommand";
|
|
30
|
+
import { GetFacetCommand } from "./commands/GetFacetCommand";
|
|
31
|
+
import { GetLinkAttributesCommand, } from "./commands/GetLinkAttributesCommand";
|
|
32
|
+
import { GetObjectAttributesCommand, } from "./commands/GetObjectAttributesCommand";
|
|
33
|
+
import { GetObjectInformationCommand, } from "./commands/GetObjectInformationCommand";
|
|
34
|
+
import { GetSchemaAsJsonCommand, } from "./commands/GetSchemaAsJsonCommand";
|
|
35
|
+
import { GetTypedLinkFacetInformationCommand, } from "./commands/GetTypedLinkFacetInformationCommand";
|
|
36
|
+
import { ListAppliedSchemaArnsCommand, } from "./commands/ListAppliedSchemaArnsCommand";
|
|
37
|
+
import { ListAttachedIndicesCommand, } from "./commands/ListAttachedIndicesCommand";
|
|
38
|
+
import { ListDevelopmentSchemaArnsCommand, } from "./commands/ListDevelopmentSchemaArnsCommand";
|
|
39
|
+
import { ListDirectoriesCommand, } from "./commands/ListDirectoriesCommand";
|
|
40
|
+
import { ListFacetAttributesCommand, } from "./commands/ListFacetAttributesCommand";
|
|
41
|
+
import { ListFacetNamesCommand, } from "./commands/ListFacetNamesCommand";
|
|
42
|
+
import { ListIncomingTypedLinksCommand, } from "./commands/ListIncomingTypedLinksCommand";
|
|
43
|
+
import { ListIndexCommand } from "./commands/ListIndexCommand";
|
|
44
|
+
import { ListManagedSchemaArnsCommand, } from "./commands/ListManagedSchemaArnsCommand";
|
|
45
|
+
import { ListObjectAttributesCommand, } from "./commands/ListObjectAttributesCommand";
|
|
46
|
+
import { ListObjectChildrenCommand, } from "./commands/ListObjectChildrenCommand";
|
|
47
|
+
import { ListObjectParentPathsCommand, } from "./commands/ListObjectParentPathsCommand";
|
|
48
|
+
import { ListObjectParentsCommand, } from "./commands/ListObjectParentsCommand";
|
|
49
|
+
import { ListObjectPoliciesCommand, } from "./commands/ListObjectPoliciesCommand";
|
|
50
|
+
import { ListOutgoingTypedLinksCommand, } from "./commands/ListOutgoingTypedLinksCommand";
|
|
51
|
+
import { ListPolicyAttachmentsCommand, } from "./commands/ListPolicyAttachmentsCommand";
|
|
52
|
+
import { ListPublishedSchemaArnsCommand, } from "./commands/ListPublishedSchemaArnsCommand";
|
|
53
|
+
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import { ListTypedLinkFacetAttributesCommand, } from "./commands/ListTypedLinkFacetAttributesCommand";
|
|
55
|
+
import { ListTypedLinkFacetNamesCommand, } from "./commands/ListTypedLinkFacetNamesCommand";
|
|
56
|
+
import { LookupPolicyCommand, } from "./commands/LookupPolicyCommand";
|
|
57
|
+
import { PublishSchemaCommand, } from "./commands/PublishSchemaCommand";
|
|
58
|
+
import { PutSchemaFromJsonCommand, } from "./commands/PutSchemaFromJsonCommand";
|
|
59
|
+
import { RemoveFacetFromObjectCommand, } from "./commands/RemoveFacetFromObjectCommand";
|
|
60
|
+
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
61
|
+
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
62
|
+
import { UpdateFacetCommand } from "./commands/UpdateFacetCommand";
|
|
63
|
+
import { UpdateLinkAttributesCommand, } from "./commands/UpdateLinkAttributesCommand";
|
|
64
|
+
import { UpdateObjectAttributesCommand, } from "./commands/UpdateObjectAttributesCommand";
|
|
65
|
+
import { UpdateSchemaCommand, } from "./commands/UpdateSchemaCommand";
|
|
66
|
+
import { UpdateTypedLinkFacetCommand, } from "./commands/UpdateTypedLinkFacetCommand";
|
|
67
|
+
import { UpgradeAppliedSchemaCommand, } from "./commands/UpgradeAppliedSchemaCommand";
|
|
68
|
+
import { UpgradePublishedSchemaCommand, } from "./commands/UpgradePublishedSchemaCommand";
|
|
69
|
+
var CloudDirectory = (function (_super) {
|
|
70
|
+
__extends(CloudDirectory, _super);
|
|
71
|
+
function CloudDirectory() {
|
|
72
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
73
|
+
}
|
|
74
|
+
CloudDirectory.prototype.addFacetToObject = function (args, optionsOrCb, cb) {
|
|
75
|
+
var command = new AddFacetToObjectCommand(args);
|
|
76
|
+
if (typeof optionsOrCb === "function") {
|
|
77
|
+
this.send(command, optionsOrCb);
|
|
78
|
+
}
|
|
79
|
+
else if (typeof cb === "function") {
|
|
80
|
+
if (typeof optionsOrCb !== "object")
|
|
81
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
82
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
return this.send(command, optionsOrCb);
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
CloudDirectory.prototype.applySchema = function (args, optionsOrCb, cb) {
|
|
89
|
+
var command = new ApplySchemaCommand(args);
|
|
90
|
+
if (typeof optionsOrCb === "function") {
|
|
91
|
+
this.send(command, optionsOrCb);
|
|
92
|
+
}
|
|
93
|
+
else if (typeof cb === "function") {
|
|
94
|
+
if (typeof optionsOrCb !== "object")
|
|
95
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
96
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
return this.send(command, optionsOrCb);
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
CloudDirectory.prototype.attachObject = function (args, optionsOrCb, cb) {
|
|
103
|
+
var command = new AttachObjectCommand(args);
|
|
104
|
+
if (typeof optionsOrCb === "function") {
|
|
105
|
+
this.send(command, optionsOrCb);
|
|
106
|
+
}
|
|
107
|
+
else if (typeof cb === "function") {
|
|
108
|
+
if (typeof optionsOrCb !== "object")
|
|
109
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
110
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
111
|
+
}
|
|
112
|
+
else {
|
|
113
|
+
return this.send(command, optionsOrCb);
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
CloudDirectory.prototype.attachPolicy = function (args, optionsOrCb, cb) {
|
|
117
|
+
var command = new AttachPolicyCommand(args);
|
|
118
|
+
if (typeof optionsOrCb === "function") {
|
|
119
|
+
this.send(command, optionsOrCb);
|
|
120
|
+
}
|
|
121
|
+
else if (typeof cb === "function") {
|
|
122
|
+
if (typeof optionsOrCb !== "object")
|
|
123
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
124
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
125
|
+
}
|
|
126
|
+
else {
|
|
127
|
+
return this.send(command, optionsOrCb);
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
CloudDirectory.prototype.attachToIndex = function (args, optionsOrCb, cb) {
|
|
131
|
+
var command = new AttachToIndexCommand(args);
|
|
132
|
+
if (typeof optionsOrCb === "function") {
|
|
133
|
+
this.send(command, optionsOrCb);
|
|
134
|
+
}
|
|
135
|
+
else if (typeof cb === "function") {
|
|
136
|
+
if (typeof optionsOrCb !== "object")
|
|
137
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
138
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
139
|
+
}
|
|
140
|
+
else {
|
|
141
|
+
return this.send(command, optionsOrCb);
|
|
142
|
+
}
|
|
143
|
+
};
|
|
144
|
+
CloudDirectory.prototype.attachTypedLink = function (args, optionsOrCb, cb) {
|
|
145
|
+
var command = new AttachTypedLinkCommand(args);
|
|
146
|
+
if (typeof optionsOrCb === "function") {
|
|
147
|
+
this.send(command, optionsOrCb);
|
|
148
|
+
}
|
|
149
|
+
else if (typeof cb === "function") {
|
|
150
|
+
if (typeof optionsOrCb !== "object")
|
|
151
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
152
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
153
|
+
}
|
|
154
|
+
else {
|
|
155
|
+
return this.send(command, optionsOrCb);
|
|
156
|
+
}
|
|
157
|
+
};
|
|
158
|
+
CloudDirectory.prototype.batchRead = function (args, optionsOrCb, cb) {
|
|
159
|
+
var command = new BatchReadCommand(args);
|
|
160
|
+
if (typeof optionsOrCb === "function") {
|
|
161
|
+
this.send(command, optionsOrCb);
|
|
162
|
+
}
|
|
163
|
+
else if (typeof cb === "function") {
|
|
164
|
+
if (typeof optionsOrCb !== "object")
|
|
165
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
166
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
167
|
+
}
|
|
168
|
+
else {
|
|
169
|
+
return this.send(command, optionsOrCb);
|
|
170
|
+
}
|
|
171
|
+
};
|
|
172
|
+
CloudDirectory.prototype.batchWrite = function (args, optionsOrCb, cb) {
|
|
173
|
+
var command = new BatchWriteCommand(args);
|
|
174
|
+
if (typeof optionsOrCb === "function") {
|
|
175
|
+
this.send(command, optionsOrCb);
|
|
176
|
+
}
|
|
177
|
+
else if (typeof cb === "function") {
|
|
178
|
+
if (typeof optionsOrCb !== "object")
|
|
179
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
180
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
181
|
+
}
|
|
182
|
+
else {
|
|
183
|
+
return this.send(command, optionsOrCb);
|
|
184
|
+
}
|
|
185
|
+
};
|
|
186
|
+
CloudDirectory.prototype.createDirectory = function (args, optionsOrCb, cb) {
|
|
187
|
+
var command = new CreateDirectoryCommand(args);
|
|
188
|
+
if (typeof optionsOrCb === "function") {
|
|
189
|
+
this.send(command, optionsOrCb);
|
|
190
|
+
}
|
|
191
|
+
else if (typeof cb === "function") {
|
|
192
|
+
if (typeof optionsOrCb !== "object")
|
|
193
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
194
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
195
|
+
}
|
|
196
|
+
else {
|
|
197
|
+
return this.send(command, optionsOrCb);
|
|
198
|
+
}
|
|
199
|
+
};
|
|
200
|
+
CloudDirectory.prototype.createFacet = function (args, optionsOrCb, cb) {
|
|
201
|
+
var command = new CreateFacetCommand(args);
|
|
202
|
+
if (typeof optionsOrCb === "function") {
|
|
203
|
+
this.send(command, optionsOrCb);
|
|
204
|
+
}
|
|
205
|
+
else if (typeof cb === "function") {
|
|
206
|
+
if (typeof optionsOrCb !== "object")
|
|
207
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
208
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
209
|
+
}
|
|
210
|
+
else {
|
|
211
|
+
return this.send(command, optionsOrCb);
|
|
212
|
+
}
|
|
213
|
+
};
|
|
214
|
+
CloudDirectory.prototype.createIndex = function (args, optionsOrCb, cb) {
|
|
215
|
+
var command = new CreateIndexCommand(args);
|
|
216
|
+
if (typeof optionsOrCb === "function") {
|
|
217
|
+
this.send(command, optionsOrCb);
|
|
218
|
+
}
|
|
219
|
+
else if (typeof cb === "function") {
|
|
220
|
+
if (typeof optionsOrCb !== "object")
|
|
221
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
222
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
223
|
+
}
|
|
224
|
+
else {
|
|
225
|
+
return this.send(command, optionsOrCb);
|
|
226
|
+
}
|
|
227
|
+
};
|
|
228
|
+
CloudDirectory.prototype.createObject = function (args, optionsOrCb, cb) {
|
|
229
|
+
var command = new CreateObjectCommand(args);
|
|
230
|
+
if (typeof optionsOrCb === "function") {
|
|
231
|
+
this.send(command, optionsOrCb);
|
|
232
|
+
}
|
|
233
|
+
else if (typeof cb === "function") {
|
|
234
|
+
if (typeof optionsOrCb !== "object")
|
|
235
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
236
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
237
|
+
}
|
|
238
|
+
else {
|
|
239
|
+
return this.send(command, optionsOrCb);
|
|
240
|
+
}
|
|
241
|
+
};
|
|
242
|
+
CloudDirectory.prototype.createSchema = function (args, optionsOrCb, cb) {
|
|
243
|
+
var command = new CreateSchemaCommand(args);
|
|
244
|
+
if (typeof optionsOrCb === "function") {
|
|
245
|
+
this.send(command, optionsOrCb);
|
|
246
|
+
}
|
|
247
|
+
else if (typeof cb === "function") {
|
|
248
|
+
if (typeof optionsOrCb !== "object")
|
|
249
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
250
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
251
|
+
}
|
|
252
|
+
else {
|
|
253
|
+
return this.send(command, optionsOrCb);
|
|
254
|
+
}
|
|
255
|
+
};
|
|
256
|
+
CloudDirectory.prototype.createTypedLinkFacet = function (args, optionsOrCb, cb) {
|
|
257
|
+
var command = new CreateTypedLinkFacetCommand(args);
|
|
258
|
+
if (typeof optionsOrCb === "function") {
|
|
259
|
+
this.send(command, optionsOrCb);
|
|
260
|
+
}
|
|
261
|
+
else if (typeof cb === "function") {
|
|
262
|
+
if (typeof optionsOrCb !== "object")
|
|
263
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
264
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
265
|
+
}
|
|
266
|
+
else {
|
|
267
|
+
return this.send(command, optionsOrCb);
|
|
268
|
+
}
|
|
269
|
+
};
|
|
270
|
+
CloudDirectory.prototype.deleteDirectory = function (args, optionsOrCb, cb) {
|
|
271
|
+
var command = new DeleteDirectoryCommand(args);
|
|
272
|
+
if (typeof optionsOrCb === "function") {
|
|
273
|
+
this.send(command, optionsOrCb);
|
|
274
|
+
}
|
|
275
|
+
else if (typeof cb === "function") {
|
|
276
|
+
if (typeof optionsOrCb !== "object")
|
|
277
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
278
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
279
|
+
}
|
|
280
|
+
else {
|
|
281
|
+
return this.send(command, optionsOrCb);
|
|
282
|
+
}
|
|
283
|
+
};
|
|
284
|
+
CloudDirectory.prototype.deleteFacet = function (args, optionsOrCb, cb) {
|
|
285
|
+
var command = new DeleteFacetCommand(args);
|
|
286
|
+
if (typeof optionsOrCb === "function") {
|
|
287
|
+
this.send(command, optionsOrCb);
|
|
288
|
+
}
|
|
289
|
+
else if (typeof cb === "function") {
|
|
290
|
+
if (typeof optionsOrCb !== "object")
|
|
291
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
292
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
293
|
+
}
|
|
294
|
+
else {
|
|
295
|
+
return this.send(command, optionsOrCb);
|
|
296
|
+
}
|
|
297
|
+
};
|
|
298
|
+
CloudDirectory.prototype.deleteObject = function (args, optionsOrCb, cb) {
|
|
299
|
+
var command = new DeleteObjectCommand(args);
|
|
300
|
+
if (typeof optionsOrCb === "function") {
|
|
301
|
+
this.send(command, optionsOrCb);
|
|
302
|
+
}
|
|
303
|
+
else if (typeof cb === "function") {
|
|
304
|
+
if (typeof optionsOrCb !== "object")
|
|
305
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
306
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
307
|
+
}
|
|
308
|
+
else {
|
|
309
|
+
return this.send(command, optionsOrCb);
|
|
310
|
+
}
|
|
311
|
+
};
|
|
312
|
+
CloudDirectory.prototype.deleteSchema = function (args, optionsOrCb, cb) {
|
|
313
|
+
var command = new DeleteSchemaCommand(args);
|
|
314
|
+
if (typeof optionsOrCb === "function") {
|
|
315
|
+
this.send(command, optionsOrCb);
|
|
316
|
+
}
|
|
317
|
+
else if (typeof cb === "function") {
|
|
318
|
+
if (typeof optionsOrCb !== "object")
|
|
319
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
320
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
321
|
+
}
|
|
322
|
+
else {
|
|
323
|
+
return this.send(command, optionsOrCb);
|
|
324
|
+
}
|
|
325
|
+
};
|
|
326
|
+
CloudDirectory.prototype.deleteTypedLinkFacet = function (args, optionsOrCb, cb) {
|
|
327
|
+
var command = new DeleteTypedLinkFacetCommand(args);
|
|
328
|
+
if (typeof optionsOrCb === "function") {
|
|
329
|
+
this.send(command, optionsOrCb);
|
|
330
|
+
}
|
|
331
|
+
else if (typeof cb === "function") {
|
|
332
|
+
if (typeof optionsOrCb !== "object")
|
|
333
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
334
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
335
|
+
}
|
|
336
|
+
else {
|
|
337
|
+
return this.send(command, optionsOrCb);
|
|
338
|
+
}
|
|
339
|
+
};
|
|
340
|
+
CloudDirectory.prototype.detachFromIndex = function (args, optionsOrCb, cb) {
|
|
341
|
+
var command = new DetachFromIndexCommand(args);
|
|
342
|
+
if (typeof optionsOrCb === "function") {
|
|
343
|
+
this.send(command, optionsOrCb);
|
|
344
|
+
}
|
|
345
|
+
else if (typeof cb === "function") {
|
|
346
|
+
if (typeof optionsOrCb !== "object")
|
|
347
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
348
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
349
|
+
}
|
|
350
|
+
else {
|
|
351
|
+
return this.send(command, optionsOrCb);
|
|
352
|
+
}
|
|
353
|
+
};
|
|
354
|
+
CloudDirectory.prototype.detachObject = function (args, optionsOrCb, cb) {
|
|
355
|
+
var command = new DetachObjectCommand(args);
|
|
356
|
+
if (typeof optionsOrCb === "function") {
|
|
357
|
+
this.send(command, optionsOrCb);
|
|
358
|
+
}
|
|
359
|
+
else if (typeof cb === "function") {
|
|
360
|
+
if (typeof optionsOrCb !== "object")
|
|
361
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
362
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
363
|
+
}
|
|
364
|
+
else {
|
|
365
|
+
return this.send(command, optionsOrCb);
|
|
366
|
+
}
|
|
367
|
+
};
|
|
368
|
+
CloudDirectory.prototype.detachPolicy = function (args, optionsOrCb, cb) {
|
|
369
|
+
var command = new DetachPolicyCommand(args);
|
|
370
|
+
if (typeof optionsOrCb === "function") {
|
|
371
|
+
this.send(command, optionsOrCb);
|
|
372
|
+
}
|
|
373
|
+
else if (typeof cb === "function") {
|
|
374
|
+
if (typeof optionsOrCb !== "object")
|
|
375
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
376
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
377
|
+
}
|
|
378
|
+
else {
|
|
379
|
+
return this.send(command, optionsOrCb);
|
|
380
|
+
}
|
|
381
|
+
};
|
|
382
|
+
CloudDirectory.prototype.detachTypedLink = function (args, optionsOrCb, cb) {
|
|
383
|
+
var command = new DetachTypedLinkCommand(args);
|
|
384
|
+
if (typeof optionsOrCb === "function") {
|
|
385
|
+
this.send(command, optionsOrCb);
|
|
386
|
+
}
|
|
387
|
+
else if (typeof cb === "function") {
|
|
388
|
+
if (typeof optionsOrCb !== "object")
|
|
389
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
390
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
391
|
+
}
|
|
392
|
+
else {
|
|
393
|
+
return this.send(command, optionsOrCb);
|
|
394
|
+
}
|
|
395
|
+
};
|
|
396
|
+
CloudDirectory.prototype.disableDirectory = function (args, optionsOrCb, cb) {
|
|
397
|
+
var command = new DisableDirectoryCommand(args);
|
|
398
|
+
if (typeof optionsOrCb === "function") {
|
|
399
|
+
this.send(command, optionsOrCb);
|
|
400
|
+
}
|
|
401
|
+
else if (typeof cb === "function") {
|
|
402
|
+
if (typeof optionsOrCb !== "object")
|
|
403
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
404
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
405
|
+
}
|
|
406
|
+
else {
|
|
407
|
+
return this.send(command, optionsOrCb);
|
|
408
|
+
}
|
|
409
|
+
};
|
|
410
|
+
CloudDirectory.prototype.enableDirectory = function (args, optionsOrCb, cb) {
|
|
411
|
+
var command = new EnableDirectoryCommand(args);
|
|
412
|
+
if (typeof optionsOrCb === "function") {
|
|
413
|
+
this.send(command, optionsOrCb);
|
|
414
|
+
}
|
|
415
|
+
else if (typeof cb === "function") {
|
|
416
|
+
if (typeof optionsOrCb !== "object")
|
|
417
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
418
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
419
|
+
}
|
|
420
|
+
else {
|
|
421
|
+
return this.send(command, optionsOrCb);
|
|
422
|
+
}
|
|
423
|
+
};
|
|
424
|
+
CloudDirectory.prototype.getAppliedSchemaVersion = function (args, optionsOrCb, cb) {
|
|
425
|
+
var command = new GetAppliedSchemaVersionCommand(args);
|
|
426
|
+
if (typeof optionsOrCb === "function") {
|
|
427
|
+
this.send(command, optionsOrCb);
|
|
428
|
+
}
|
|
429
|
+
else if (typeof cb === "function") {
|
|
430
|
+
if (typeof optionsOrCb !== "object")
|
|
431
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
432
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
433
|
+
}
|
|
434
|
+
else {
|
|
435
|
+
return this.send(command, optionsOrCb);
|
|
436
|
+
}
|
|
437
|
+
};
|
|
438
|
+
CloudDirectory.prototype.getDirectory = function (args, optionsOrCb, cb) {
|
|
439
|
+
var command = new GetDirectoryCommand(args);
|
|
440
|
+
if (typeof optionsOrCb === "function") {
|
|
441
|
+
this.send(command, optionsOrCb);
|
|
442
|
+
}
|
|
443
|
+
else if (typeof cb === "function") {
|
|
444
|
+
if (typeof optionsOrCb !== "object")
|
|
445
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
446
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
447
|
+
}
|
|
448
|
+
else {
|
|
449
|
+
return this.send(command, optionsOrCb);
|
|
450
|
+
}
|
|
451
|
+
};
|
|
452
|
+
CloudDirectory.prototype.getFacet = function (args, optionsOrCb, cb) {
|
|
453
|
+
var command = new GetFacetCommand(args);
|
|
454
|
+
if (typeof optionsOrCb === "function") {
|
|
455
|
+
this.send(command, optionsOrCb);
|
|
456
|
+
}
|
|
457
|
+
else if (typeof cb === "function") {
|
|
458
|
+
if (typeof optionsOrCb !== "object")
|
|
459
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
460
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
461
|
+
}
|
|
462
|
+
else {
|
|
463
|
+
return this.send(command, optionsOrCb);
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
CloudDirectory.prototype.getLinkAttributes = function (args, optionsOrCb, cb) {
|
|
467
|
+
var command = new GetLinkAttributesCommand(args);
|
|
468
|
+
if (typeof optionsOrCb === "function") {
|
|
469
|
+
this.send(command, optionsOrCb);
|
|
470
|
+
}
|
|
471
|
+
else if (typeof cb === "function") {
|
|
472
|
+
if (typeof optionsOrCb !== "object")
|
|
473
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
474
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
475
|
+
}
|
|
476
|
+
else {
|
|
477
|
+
return this.send(command, optionsOrCb);
|
|
478
|
+
}
|
|
479
|
+
};
|
|
480
|
+
CloudDirectory.prototype.getObjectAttributes = function (args, optionsOrCb, cb) {
|
|
481
|
+
var command = new GetObjectAttributesCommand(args);
|
|
482
|
+
if (typeof optionsOrCb === "function") {
|
|
483
|
+
this.send(command, optionsOrCb);
|
|
484
|
+
}
|
|
485
|
+
else if (typeof cb === "function") {
|
|
486
|
+
if (typeof optionsOrCb !== "object")
|
|
487
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
488
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
489
|
+
}
|
|
490
|
+
else {
|
|
491
|
+
return this.send(command, optionsOrCb);
|
|
492
|
+
}
|
|
493
|
+
};
|
|
494
|
+
CloudDirectory.prototype.getObjectInformation = function (args, optionsOrCb, cb) {
|
|
495
|
+
var command = new GetObjectInformationCommand(args);
|
|
496
|
+
if (typeof optionsOrCb === "function") {
|
|
497
|
+
this.send(command, optionsOrCb);
|
|
498
|
+
}
|
|
499
|
+
else if (typeof cb === "function") {
|
|
500
|
+
if (typeof optionsOrCb !== "object")
|
|
501
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
502
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
503
|
+
}
|
|
504
|
+
else {
|
|
505
|
+
return this.send(command, optionsOrCb);
|
|
506
|
+
}
|
|
507
|
+
};
|
|
508
|
+
CloudDirectory.prototype.getSchemaAsJson = function (args, optionsOrCb, cb) {
|
|
509
|
+
var command = new GetSchemaAsJsonCommand(args);
|
|
510
|
+
if (typeof optionsOrCb === "function") {
|
|
511
|
+
this.send(command, optionsOrCb);
|
|
512
|
+
}
|
|
513
|
+
else if (typeof cb === "function") {
|
|
514
|
+
if (typeof optionsOrCb !== "object")
|
|
515
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
516
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
517
|
+
}
|
|
518
|
+
else {
|
|
519
|
+
return this.send(command, optionsOrCb);
|
|
520
|
+
}
|
|
521
|
+
};
|
|
522
|
+
CloudDirectory.prototype.getTypedLinkFacetInformation = function (args, optionsOrCb, cb) {
|
|
523
|
+
var command = new GetTypedLinkFacetInformationCommand(args);
|
|
524
|
+
if (typeof optionsOrCb === "function") {
|
|
525
|
+
this.send(command, optionsOrCb);
|
|
526
|
+
}
|
|
527
|
+
else if (typeof cb === "function") {
|
|
528
|
+
if (typeof optionsOrCb !== "object")
|
|
529
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
530
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
531
|
+
}
|
|
532
|
+
else {
|
|
533
|
+
return this.send(command, optionsOrCb);
|
|
534
|
+
}
|
|
535
|
+
};
|
|
536
|
+
CloudDirectory.prototype.listAppliedSchemaArns = function (args, optionsOrCb, cb) {
|
|
537
|
+
var command = new ListAppliedSchemaArnsCommand(args);
|
|
538
|
+
if (typeof optionsOrCb === "function") {
|
|
539
|
+
this.send(command, optionsOrCb);
|
|
540
|
+
}
|
|
541
|
+
else if (typeof cb === "function") {
|
|
542
|
+
if (typeof optionsOrCb !== "object")
|
|
543
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
544
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
545
|
+
}
|
|
546
|
+
else {
|
|
547
|
+
return this.send(command, optionsOrCb);
|
|
548
|
+
}
|
|
549
|
+
};
|
|
550
|
+
CloudDirectory.prototype.listAttachedIndices = function (args, optionsOrCb, cb) {
|
|
551
|
+
var command = new ListAttachedIndicesCommand(args);
|
|
552
|
+
if (typeof optionsOrCb === "function") {
|
|
553
|
+
this.send(command, optionsOrCb);
|
|
554
|
+
}
|
|
555
|
+
else if (typeof cb === "function") {
|
|
556
|
+
if (typeof optionsOrCb !== "object")
|
|
557
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
558
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
559
|
+
}
|
|
560
|
+
else {
|
|
561
|
+
return this.send(command, optionsOrCb);
|
|
562
|
+
}
|
|
563
|
+
};
|
|
564
|
+
CloudDirectory.prototype.listDevelopmentSchemaArns = function (args, optionsOrCb, cb) {
|
|
565
|
+
var command = new ListDevelopmentSchemaArnsCommand(args);
|
|
566
|
+
if (typeof optionsOrCb === "function") {
|
|
567
|
+
this.send(command, optionsOrCb);
|
|
568
|
+
}
|
|
569
|
+
else if (typeof cb === "function") {
|
|
570
|
+
if (typeof optionsOrCb !== "object")
|
|
571
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
572
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
573
|
+
}
|
|
574
|
+
else {
|
|
575
|
+
return this.send(command, optionsOrCb);
|
|
576
|
+
}
|
|
577
|
+
};
|
|
578
|
+
CloudDirectory.prototype.listDirectories = function (args, optionsOrCb, cb) {
|
|
579
|
+
var command = new ListDirectoriesCommand(args);
|
|
580
|
+
if (typeof optionsOrCb === "function") {
|
|
581
|
+
this.send(command, optionsOrCb);
|
|
582
|
+
}
|
|
583
|
+
else if (typeof cb === "function") {
|
|
584
|
+
if (typeof optionsOrCb !== "object")
|
|
585
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
586
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
587
|
+
}
|
|
588
|
+
else {
|
|
589
|
+
return this.send(command, optionsOrCb);
|
|
590
|
+
}
|
|
591
|
+
};
|
|
592
|
+
CloudDirectory.prototype.listFacetAttributes = function (args, optionsOrCb, cb) {
|
|
593
|
+
var command = new ListFacetAttributesCommand(args);
|
|
594
|
+
if (typeof optionsOrCb === "function") {
|
|
595
|
+
this.send(command, optionsOrCb);
|
|
596
|
+
}
|
|
597
|
+
else if (typeof cb === "function") {
|
|
598
|
+
if (typeof optionsOrCb !== "object")
|
|
599
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
600
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
601
|
+
}
|
|
602
|
+
else {
|
|
603
|
+
return this.send(command, optionsOrCb);
|
|
604
|
+
}
|
|
605
|
+
};
|
|
606
|
+
CloudDirectory.prototype.listFacetNames = function (args, optionsOrCb, cb) {
|
|
607
|
+
var command = new ListFacetNamesCommand(args);
|
|
608
|
+
if (typeof optionsOrCb === "function") {
|
|
609
|
+
this.send(command, optionsOrCb);
|
|
610
|
+
}
|
|
611
|
+
else if (typeof cb === "function") {
|
|
612
|
+
if (typeof optionsOrCb !== "object")
|
|
613
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
614
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
615
|
+
}
|
|
616
|
+
else {
|
|
617
|
+
return this.send(command, optionsOrCb);
|
|
618
|
+
}
|
|
619
|
+
};
|
|
620
|
+
CloudDirectory.prototype.listIncomingTypedLinks = function (args, optionsOrCb, cb) {
|
|
621
|
+
var command = new ListIncomingTypedLinksCommand(args);
|
|
622
|
+
if (typeof optionsOrCb === "function") {
|
|
623
|
+
this.send(command, optionsOrCb);
|
|
624
|
+
}
|
|
625
|
+
else if (typeof cb === "function") {
|
|
626
|
+
if (typeof optionsOrCb !== "object")
|
|
627
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
628
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
629
|
+
}
|
|
630
|
+
else {
|
|
631
|
+
return this.send(command, optionsOrCb);
|
|
632
|
+
}
|
|
633
|
+
};
|
|
634
|
+
CloudDirectory.prototype.listIndex = function (args, optionsOrCb, cb) {
|
|
635
|
+
var command = new ListIndexCommand(args);
|
|
636
|
+
if (typeof optionsOrCb === "function") {
|
|
637
|
+
this.send(command, optionsOrCb);
|
|
638
|
+
}
|
|
639
|
+
else if (typeof cb === "function") {
|
|
640
|
+
if (typeof optionsOrCb !== "object")
|
|
641
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
642
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
643
|
+
}
|
|
644
|
+
else {
|
|
645
|
+
return this.send(command, optionsOrCb);
|
|
646
|
+
}
|
|
647
|
+
};
|
|
648
|
+
CloudDirectory.prototype.listManagedSchemaArns = function (args, optionsOrCb, cb) {
|
|
649
|
+
var command = new ListManagedSchemaArnsCommand(args);
|
|
650
|
+
if (typeof optionsOrCb === "function") {
|
|
651
|
+
this.send(command, optionsOrCb);
|
|
652
|
+
}
|
|
653
|
+
else if (typeof cb === "function") {
|
|
654
|
+
if (typeof optionsOrCb !== "object")
|
|
655
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
656
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
657
|
+
}
|
|
658
|
+
else {
|
|
659
|
+
return this.send(command, optionsOrCb);
|
|
660
|
+
}
|
|
661
|
+
};
|
|
662
|
+
CloudDirectory.prototype.listObjectAttributes = function (args, optionsOrCb, cb) {
|
|
663
|
+
var command = new ListObjectAttributesCommand(args);
|
|
664
|
+
if (typeof optionsOrCb === "function") {
|
|
665
|
+
this.send(command, optionsOrCb);
|
|
666
|
+
}
|
|
667
|
+
else if (typeof cb === "function") {
|
|
668
|
+
if (typeof optionsOrCb !== "object")
|
|
669
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
670
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
671
|
+
}
|
|
672
|
+
else {
|
|
673
|
+
return this.send(command, optionsOrCb);
|
|
674
|
+
}
|
|
675
|
+
};
|
|
676
|
+
CloudDirectory.prototype.listObjectChildren = function (args, optionsOrCb, cb) {
|
|
677
|
+
var command = new ListObjectChildrenCommand(args);
|
|
678
|
+
if (typeof optionsOrCb === "function") {
|
|
679
|
+
this.send(command, optionsOrCb);
|
|
680
|
+
}
|
|
681
|
+
else if (typeof cb === "function") {
|
|
682
|
+
if (typeof optionsOrCb !== "object")
|
|
683
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
684
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
685
|
+
}
|
|
686
|
+
else {
|
|
687
|
+
return this.send(command, optionsOrCb);
|
|
688
|
+
}
|
|
689
|
+
};
|
|
690
|
+
CloudDirectory.prototype.listObjectParentPaths = function (args, optionsOrCb, cb) {
|
|
691
|
+
var command = new ListObjectParentPathsCommand(args);
|
|
692
|
+
if (typeof optionsOrCb === "function") {
|
|
693
|
+
this.send(command, optionsOrCb);
|
|
694
|
+
}
|
|
695
|
+
else if (typeof cb === "function") {
|
|
696
|
+
if (typeof optionsOrCb !== "object")
|
|
697
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
698
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
699
|
+
}
|
|
700
|
+
else {
|
|
701
|
+
return this.send(command, optionsOrCb);
|
|
702
|
+
}
|
|
703
|
+
};
|
|
704
|
+
CloudDirectory.prototype.listObjectParents = function (args, optionsOrCb, cb) {
|
|
705
|
+
var command = new ListObjectParentsCommand(args);
|
|
706
|
+
if (typeof optionsOrCb === "function") {
|
|
707
|
+
this.send(command, optionsOrCb);
|
|
708
|
+
}
|
|
709
|
+
else if (typeof cb === "function") {
|
|
710
|
+
if (typeof optionsOrCb !== "object")
|
|
711
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
712
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
713
|
+
}
|
|
714
|
+
else {
|
|
715
|
+
return this.send(command, optionsOrCb);
|
|
716
|
+
}
|
|
717
|
+
};
|
|
718
|
+
CloudDirectory.prototype.listObjectPolicies = function (args, optionsOrCb, cb) {
|
|
719
|
+
var command = new ListObjectPoliciesCommand(args);
|
|
720
|
+
if (typeof optionsOrCb === "function") {
|
|
721
|
+
this.send(command, optionsOrCb);
|
|
722
|
+
}
|
|
723
|
+
else if (typeof cb === "function") {
|
|
724
|
+
if (typeof optionsOrCb !== "object")
|
|
725
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
726
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
727
|
+
}
|
|
728
|
+
else {
|
|
729
|
+
return this.send(command, optionsOrCb);
|
|
730
|
+
}
|
|
731
|
+
};
|
|
732
|
+
CloudDirectory.prototype.listOutgoingTypedLinks = function (args, optionsOrCb, cb) {
|
|
733
|
+
var command = new ListOutgoingTypedLinksCommand(args);
|
|
734
|
+
if (typeof optionsOrCb === "function") {
|
|
735
|
+
this.send(command, optionsOrCb);
|
|
736
|
+
}
|
|
737
|
+
else if (typeof cb === "function") {
|
|
738
|
+
if (typeof optionsOrCb !== "object")
|
|
739
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
740
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
741
|
+
}
|
|
742
|
+
else {
|
|
743
|
+
return this.send(command, optionsOrCb);
|
|
744
|
+
}
|
|
745
|
+
};
|
|
746
|
+
CloudDirectory.prototype.listPolicyAttachments = function (args, optionsOrCb, cb) {
|
|
747
|
+
var command = new ListPolicyAttachmentsCommand(args);
|
|
748
|
+
if (typeof optionsOrCb === "function") {
|
|
749
|
+
this.send(command, optionsOrCb);
|
|
750
|
+
}
|
|
751
|
+
else if (typeof cb === "function") {
|
|
752
|
+
if (typeof optionsOrCb !== "object")
|
|
753
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
754
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
755
|
+
}
|
|
756
|
+
else {
|
|
757
|
+
return this.send(command, optionsOrCb);
|
|
758
|
+
}
|
|
759
|
+
};
|
|
760
|
+
CloudDirectory.prototype.listPublishedSchemaArns = function (args, optionsOrCb, cb) {
|
|
761
|
+
var command = new ListPublishedSchemaArnsCommand(args);
|
|
762
|
+
if (typeof optionsOrCb === "function") {
|
|
763
|
+
this.send(command, optionsOrCb);
|
|
764
|
+
}
|
|
765
|
+
else if (typeof cb === "function") {
|
|
766
|
+
if (typeof optionsOrCb !== "object")
|
|
767
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
768
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
769
|
+
}
|
|
770
|
+
else {
|
|
771
|
+
return this.send(command, optionsOrCb);
|
|
772
|
+
}
|
|
773
|
+
};
|
|
774
|
+
CloudDirectory.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
|
|
775
|
+
var command = new ListTagsForResourceCommand(args);
|
|
776
|
+
if (typeof optionsOrCb === "function") {
|
|
777
|
+
this.send(command, optionsOrCb);
|
|
778
|
+
}
|
|
779
|
+
else if (typeof cb === "function") {
|
|
780
|
+
if (typeof optionsOrCb !== "object")
|
|
781
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
782
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
783
|
+
}
|
|
784
|
+
else {
|
|
785
|
+
return this.send(command, optionsOrCb);
|
|
786
|
+
}
|
|
787
|
+
};
|
|
788
|
+
CloudDirectory.prototype.listTypedLinkFacetAttributes = function (args, optionsOrCb, cb) {
|
|
789
|
+
var command = new ListTypedLinkFacetAttributesCommand(args);
|
|
790
|
+
if (typeof optionsOrCb === "function") {
|
|
791
|
+
this.send(command, optionsOrCb);
|
|
792
|
+
}
|
|
793
|
+
else if (typeof cb === "function") {
|
|
794
|
+
if (typeof optionsOrCb !== "object")
|
|
795
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
796
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
797
|
+
}
|
|
798
|
+
else {
|
|
799
|
+
return this.send(command, optionsOrCb);
|
|
800
|
+
}
|
|
801
|
+
};
|
|
802
|
+
CloudDirectory.prototype.listTypedLinkFacetNames = function (args, optionsOrCb, cb) {
|
|
803
|
+
var command = new ListTypedLinkFacetNamesCommand(args);
|
|
804
|
+
if (typeof optionsOrCb === "function") {
|
|
805
|
+
this.send(command, optionsOrCb);
|
|
806
|
+
}
|
|
807
|
+
else if (typeof cb === "function") {
|
|
808
|
+
if (typeof optionsOrCb !== "object")
|
|
809
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
810
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
811
|
+
}
|
|
812
|
+
else {
|
|
813
|
+
return this.send(command, optionsOrCb);
|
|
814
|
+
}
|
|
815
|
+
};
|
|
816
|
+
CloudDirectory.prototype.lookupPolicy = function (args, optionsOrCb, cb) {
|
|
817
|
+
var command = new LookupPolicyCommand(args);
|
|
818
|
+
if (typeof optionsOrCb === "function") {
|
|
819
|
+
this.send(command, optionsOrCb);
|
|
820
|
+
}
|
|
821
|
+
else if (typeof cb === "function") {
|
|
822
|
+
if (typeof optionsOrCb !== "object")
|
|
823
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
824
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
825
|
+
}
|
|
826
|
+
else {
|
|
827
|
+
return this.send(command, optionsOrCb);
|
|
828
|
+
}
|
|
829
|
+
};
|
|
830
|
+
CloudDirectory.prototype.publishSchema = function (args, optionsOrCb, cb) {
|
|
831
|
+
var command = new PublishSchemaCommand(args);
|
|
832
|
+
if (typeof optionsOrCb === "function") {
|
|
833
|
+
this.send(command, optionsOrCb);
|
|
834
|
+
}
|
|
835
|
+
else if (typeof cb === "function") {
|
|
836
|
+
if (typeof optionsOrCb !== "object")
|
|
837
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
838
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
839
|
+
}
|
|
840
|
+
else {
|
|
841
|
+
return this.send(command, optionsOrCb);
|
|
842
|
+
}
|
|
843
|
+
};
|
|
844
|
+
CloudDirectory.prototype.putSchemaFromJson = function (args, optionsOrCb, cb) {
|
|
845
|
+
var command = new PutSchemaFromJsonCommand(args);
|
|
846
|
+
if (typeof optionsOrCb === "function") {
|
|
847
|
+
this.send(command, optionsOrCb);
|
|
848
|
+
}
|
|
849
|
+
else if (typeof cb === "function") {
|
|
850
|
+
if (typeof optionsOrCb !== "object")
|
|
851
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
852
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
853
|
+
}
|
|
854
|
+
else {
|
|
855
|
+
return this.send(command, optionsOrCb);
|
|
856
|
+
}
|
|
857
|
+
};
|
|
858
|
+
CloudDirectory.prototype.removeFacetFromObject = function (args, optionsOrCb, cb) {
|
|
859
|
+
var command = new RemoveFacetFromObjectCommand(args);
|
|
860
|
+
if (typeof optionsOrCb === "function") {
|
|
861
|
+
this.send(command, optionsOrCb);
|
|
862
|
+
}
|
|
863
|
+
else if (typeof cb === "function") {
|
|
864
|
+
if (typeof optionsOrCb !== "object")
|
|
865
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
866
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
867
|
+
}
|
|
868
|
+
else {
|
|
869
|
+
return this.send(command, optionsOrCb);
|
|
870
|
+
}
|
|
871
|
+
};
|
|
872
|
+
CloudDirectory.prototype.tagResource = function (args, optionsOrCb, cb) {
|
|
873
|
+
var command = new TagResourceCommand(args);
|
|
874
|
+
if (typeof optionsOrCb === "function") {
|
|
875
|
+
this.send(command, optionsOrCb);
|
|
876
|
+
}
|
|
877
|
+
else if (typeof cb === "function") {
|
|
878
|
+
if (typeof optionsOrCb !== "object")
|
|
879
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
880
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
881
|
+
}
|
|
882
|
+
else {
|
|
883
|
+
return this.send(command, optionsOrCb);
|
|
884
|
+
}
|
|
885
|
+
};
|
|
886
|
+
CloudDirectory.prototype.untagResource = function (args, optionsOrCb, cb) {
|
|
887
|
+
var command = new UntagResourceCommand(args);
|
|
888
|
+
if (typeof optionsOrCb === "function") {
|
|
889
|
+
this.send(command, optionsOrCb);
|
|
890
|
+
}
|
|
891
|
+
else if (typeof cb === "function") {
|
|
892
|
+
if (typeof optionsOrCb !== "object")
|
|
893
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
894
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
895
|
+
}
|
|
896
|
+
else {
|
|
897
|
+
return this.send(command, optionsOrCb);
|
|
898
|
+
}
|
|
899
|
+
};
|
|
900
|
+
CloudDirectory.prototype.updateFacet = function (args, optionsOrCb, cb) {
|
|
901
|
+
var command = new UpdateFacetCommand(args);
|
|
902
|
+
if (typeof optionsOrCb === "function") {
|
|
903
|
+
this.send(command, optionsOrCb);
|
|
904
|
+
}
|
|
905
|
+
else if (typeof cb === "function") {
|
|
906
|
+
if (typeof optionsOrCb !== "object")
|
|
907
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
908
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
909
|
+
}
|
|
910
|
+
else {
|
|
911
|
+
return this.send(command, optionsOrCb);
|
|
912
|
+
}
|
|
913
|
+
};
|
|
914
|
+
CloudDirectory.prototype.updateLinkAttributes = function (args, optionsOrCb, cb) {
|
|
915
|
+
var command = new UpdateLinkAttributesCommand(args);
|
|
916
|
+
if (typeof optionsOrCb === "function") {
|
|
917
|
+
this.send(command, optionsOrCb);
|
|
918
|
+
}
|
|
919
|
+
else if (typeof cb === "function") {
|
|
920
|
+
if (typeof optionsOrCb !== "object")
|
|
921
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
922
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
923
|
+
}
|
|
924
|
+
else {
|
|
925
|
+
return this.send(command, optionsOrCb);
|
|
926
|
+
}
|
|
927
|
+
};
|
|
928
|
+
CloudDirectory.prototype.updateObjectAttributes = function (args, optionsOrCb, cb) {
|
|
929
|
+
var command = new UpdateObjectAttributesCommand(args);
|
|
930
|
+
if (typeof optionsOrCb === "function") {
|
|
931
|
+
this.send(command, optionsOrCb);
|
|
932
|
+
}
|
|
933
|
+
else if (typeof cb === "function") {
|
|
934
|
+
if (typeof optionsOrCb !== "object")
|
|
935
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
936
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
937
|
+
}
|
|
938
|
+
else {
|
|
939
|
+
return this.send(command, optionsOrCb);
|
|
940
|
+
}
|
|
941
|
+
};
|
|
942
|
+
CloudDirectory.prototype.updateSchema = function (args, optionsOrCb, cb) {
|
|
943
|
+
var command = new UpdateSchemaCommand(args);
|
|
944
|
+
if (typeof optionsOrCb === "function") {
|
|
945
|
+
this.send(command, optionsOrCb);
|
|
946
|
+
}
|
|
947
|
+
else if (typeof cb === "function") {
|
|
948
|
+
if (typeof optionsOrCb !== "object")
|
|
949
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
950
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
951
|
+
}
|
|
952
|
+
else {
|
|
953
|
+
return this.send(command, optionsOrCb);
|
|
954
|
+
}
|
|
955
|
+
};
|
|
956
|
+
CloudDirectory.prototype.updateTypedLinkFacet = function (args, optionsOrCb, cb) {
|
|
957
|
+
var command = new UpdateTypedLinkFacetCommand(args);
|
|
958
|
+
if (typeof optionsOrCb === "function") {
|
|
959
|
+
this.send(command, optionsOrCb);
|
|
960
|
+
}
|
|
961
|
+
else if (typeof cb === "function") {
|
|
962
|
+
if (typeof optionsOrCb !== "object")
|
|
963
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
964
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
965
|
+
}
|
|
966
|
+
else {
|
|
967
|
+
return this.send(command, optionsOrCb);
|
|
968
|
+
}
|
|
969
|
+
};
|
|
970
|
+
CloudDirectory.prototype.upgradeAppliedSchema = function (args, optionsOrCb, cb) {
|
|
971
|
+
var command = new UpgradeAppliedSchemaCommand(args);
|
|
972
|
+
if (typeof optionsOrCb === "function") {
|
|
973
|
+
this.send(command, optionsOrCb);
|
|
974
|
+
}
|
|
975
|
+
else if (typeof cb === "function") {
|
|
976
|
+
if (typeof optionsOrCb !== "object")
|
|
977
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
978
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
979
|
+
}
|
|
980
|
+
else {
|
|
981
|
+
return this.send(command, optionsOrCb);
|
|
982
|
+
}
|
|
983
|
+
};
|
|
984
|
+
CloudDirectory.prototype.upgradePublishedSchema = function (args, optionsOrCb, cb) {
|
|
985
|
+
var command = new UpgradePublishedSchemaCommand(args);
|
|
986
|
+
if (typeof optionsOrCb === "function") {
|
|
987
|
+
this.send(command, optionsOrCb);
|
|
988
|
+
}
|
|
989
|
+
else if (typeof cb === "function") {
|
|
990
|
+
if (typeof optionsOrCb !== "object")
|
|
991
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
992
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
993
|
+
}
|
|
994
|
+
else {
|
|
995
|
+
return this.send(command, optionsOrCb);
|
|
996
|
+
}
|
|
997
|
+
};
|
|
998
|
+
return CloudDirectory;
|
|
999
|
+
}(CloudDirectoryClient));
|
|
1000
|
+
export { CloudDirectory };
|