@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,558 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CloudDirectoryClient } from "./CloudDirectoryClient";
|
|
3
|
+
import { AddFacetToObjectCommandInput, AddFacetToObjectCommandOutput } from "./commands/AddFacetToObjectCommand";
|
|
4
|
+
import { ApplySchemaCommandInput, ApplySchemaCommandOutput } from "./commands/ApplySchemaCommand";
|
|
5
|
+
import { AttachObjectCommandInput, AttachObjectCommandOutput } from "./commands/AttachObjectCommand";
|
|
6
|
+
import { AttachPolicyCommandInput, AttachPolicyCommandOutput } from "./commands/AttachPolicyCommand";
|
|
7
|
+
import { AttachToIndexCommandInput, AttachToIndexCommandOutput } from "./commands/AttachToIndexCommand";
|
|
8
|
+
import { AttachTypedLinkCommandInput, AttachTypedLinkCommandOutput } from "./commands/AttachTypedLinkCommand";
|
|
9
|
+
import { BatchReadCommandInput, BatchReadCommandOutput } from "./commands/BatchReadCommand";
|
|
10
|
+
import { BatchWriteCommandInput, BatchWriteCommandOutput } from "./commands/BatchWriteCommand";
|
|
11
|
+
import { CreateDirectoryCommandInput, CreateDirectoryCommandOutput } from "./commands/CreateDirectoryCommand";
|
|
12
|
+
import { CreateFacetCommandInput, CreateFacetCommandOutput } from "./commands/CreateFacetCommand";
|
|
13
|
+
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
14
|
+
import { CreateObjectCommandInput, CreateObjectCommandOutput } from "./commands/CreateObjectCommand";
|
|
15
|
+
import { CreateSchemaCommandInput, CreateSchemaCommandOutput } from "./commands/CreateSchemaCommand";
|
|
16
|
+
import { CreateTypedLinkFacetCommandInput, CreateTypedLinkFacetCommandOutput } from "./commands/CreateTypedLinkFacetCommand";
|
|
17
|
+
import { DeleteDirectoryCommandInput, DeleteDirectoryCommandOutput } from "./commands/DeleteDirectoryCommand";
|
|
18
|
+
import { DeleteFacetCommandInput, DeleteFacetCommandOutput } from "./commands/DeleteFacetCommand";
|
|
19
|
+
import { DeleteObjectCommandInput, DeleteObjectCommandOutput } from "./commands/DeleteObjectCommand";
|
|
20
|
+
import { DeleteSchemaCommandInput, DeleteSchemaCommandOutput } from "./commands/DeleteSchemaCommand";
|
|
21
|
+
import { DeleteTypedLinkFacetCommandInput, DeleteTypedLinkFacetCommandOutput } from "./commands/DeleteTypedLinkFacetCommand";
|
|
22
|
+
import { DetachFromIndexCommandInput, DetachFromIndexCommandOutput } from "./commands/DetachFromIndexCommand";
|
|
23
|
+
import { DetachObjectCommandInput, DetachObjectCommandOutput } from "./commands/DetachObjectCommand";
|
|
24
|
+
import { DetachPolicyCommandInput, DetachPolicyCommandOutput } from "./commands/DetachPolicyCommand";
|
|
25
|
+
import { DetachTypedLinkCommandInput, DetachTypedLinkCommandOutput } from "./commands/DetachTypedLinkCommand";
|
|
26
|
+
import { DisableDirectoryCommandInput, DisableDirectoryCommandOutput } from "./commands/DisableDirectoryCommand";
|
|
27
|
+
import { EnableDirectoryCommandInput, EnableDirectoryCommandOutput } from "./commands/EnableDirectoryCommand";
|
|
28
|
+
import { GetAppliedSchemaVersionCommandInput, GetAppliedSchemaVersionCommandOutput } from "./commands/GetAppliedSchemaVersionCommand";
|
|
29
|
+
import { GetDirectoryCommandInput, GetDirectoryCommandOutput } from "./commands/GetDirectoryCommand";
|
|
30
|
+
import { GetFacetCommandInput, GetFacetCommandOutput } from "./commands/GetFacetCommand";
|
|
31
|
+
import { GetLinkAttributesCommandInput, GetLinkAttributesCommandOutput } from "./commands/GetLinkAttributesCommand";
|
|
32
|
+
import { GetObjectAttributesCommandInput, GetObjectAttributesCommandOutput } from "./commands/GetObjectAttributesCommand";
|
|
33
|
+
import { GetObjectInformationCommandInput, GetObjectInformationCommandOutput } from "./commands/GetObjectInformationCommand";
|
|
34
|
+
import { GetSchemaAsJsonCommandInput, GetSchemaAsJsonCommandOutput } from "./commands/GetSchemaAsJsonCommand";
|
|
35
|
+
import { GetTypedLinkFacetInformationCommandInput, GetTypedLinkFacetInformationCommandOutput } from "./commands/GetTypedLinkFacetInformationCommand";
|
|
36
|
+
import { ListAppliedSchemaArnsCommandInput, ListAppliedSchemaArnsCommandOutput } from "./commands/ListAppliedSchemaArnsCommand";
|
|
37
|
+
import { ListAttachedIndicesCommandInput, ListAttachedIndicesCommandOutput } from "./commands/ListAttachedIndicesCommand";
|
|
38
|
+
import { ListDevelopmentSchemaArnsCommandInput, ListDevelopmentSchemaArnsCommandOutput } from "./commands/ListDevelopmentSchemaArnsCommand";
|
|
39
|
+
import { ListDirectoriesCommandInput, ListDirectoriesCommandOutput } from "./commands/ListDirectoriesCommand";
|
|
40
|
+
import { ListFacetAttributesCommandInput, ListFacetAttributesCommandOutput } from "./commands/ListFacetAttributesCommand";
|
|
41
|
+
import { ListFacetNamesCommandInput, ListFacetNamesCommandOutput } from "./commands/ListFacetNamesCommand";
|
|
42
|
+
import { ListIncomingTypedLinksCommandInput, ListIncomingTypedLinksCommandOutput } from "./commands/ListIncomingTypedLinksCommand";
|
|
43
|
+
import { ListIndexCommandInput, ListIndexCommandOutput } from "./commands/ListIndexCommand";
|
|
44
|
+
import { ListManagedSchemaArnsCommandInput, ListManagedSchemaArnsCommandOutput } from "./commands/ListManagedSchemaArnsCommand";
|
|
45
|
+
import { ListObjectAttributesCommandInput, ListObjectAttributesCommandOutput } from "./commands/ListObjectAttributesCommand";
|
|
46
|
+
import { ListObjectChildrenCommandInput, ListObjectChildrenCommandOutput } from "./commands/ListObjectChildrenCommand";
|
|
47
|
+
import { ListObjectParentPathsCommandInput, ListObjectParentPathsCommandOutput } from "./commands/ListObjectParentPathsCommand";
|
|
48
|
+
import { ListObjectParentsCommandInput, ListObjectParentsCommandOutput } from "./commands/ListObjectParentsCommand";
|
|
49
|
+
import { ListObjectPoliciesCommandInput, ListObjectPoliciesCommandOutput } from "./commands/ListObjectPoliciesCommand";
|
|
50
|
+
import { ListOutgoingTypedLinksCommandInput, ListOutgoingTypedLinksCommandOutput } from "./commands/ListOutgoingTypedLinksCommand";
|
|
51
|
+
import { ListPolicyAttachmentsCommandInput, ListPolicyAttachmentsCommandOutput } from "./commands/ListPolicyAttachmentsCommand";
|
|
52
|
+
import { ListPublishedSchemaArnsCommandInput, ListPublishedSchemaArnsCommandOutput } from "./commands/ListPublishedSchemaArnsCommand";
|
|
53
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import { ListTypedLinkFacetAttributesCommandInput, ListTypedLinkFacetAttributesCommandOutput } from "./commands/ListTypedLinkFacetAttributesCommand";
|
|
55
|
+
import { ListTypedLinkFacetNamesCommandInput, ListTypedLinkFacetNamesCommandOutput } from "./commands/ListTypedLinkFacetNamesCommand";
|
|
56
|
+
import { LookupPolicyCommandInput, LookupPolicyCommandOutput } from "./commands/LookupPolicyCommand";
|
|
57
|
+
import { PublishSchemaCommandInput, PublishSchemaCommandOutput } from "./commands/PublishSchemaCommand";
|
|
58
|
+
import { PutSchemaFromJsonCommandInput, PutSchemaFromJsonCommandOutput } from "./commands/PutSchemaFromJsonCommand";
|
|
59
|
+
import { RemoveFacetFromObjectCommandInput, RemoveFacetFromObjectCommandOutput } from "./commands/RemoveFacetFromObjectCommand";
|
|
60
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
61
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
62
|
+
import { UpdateFacetCommandInput, UpdateFacetCommandOutput } from "./commands/UpdateFacetCommand";
|
|
63
|
+
import { UpdateLinkAttributesCommandInput, UpdateLinkAttributesCommandOutput } from "./commands/UpdateLinkAttributesCommand";
|
|
64
|
+
import { UpdateObjectAttributesCommandInput, UpdateObjectAttributesCommandOutput } from "./commands/UpdateObjectAttributesCommand";
|
|
65
|
+
import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput } from "./commands/UpdateSchemaCommand";
|
|
66
|
+
import { UpdateTypedLinkFacetCommandInput, UpdateTypedLinkFacetCommandOutput } from "./commands/UpdateTypedLinkFacetCommand";
|
|
67
|
+
import { UpgradeAppliedSchemaCommandInput, UpgradeAppliedSchemaCommandOutput } from "./commands/UpgradeAppliedSchemaCommand";
|
|
68
|
+
import { UpgradePublishedSchemaCommandInput, UpgradePublishedSchemaCommandOutput } from "./commands/UpgradePublishedSchemaCommand";
|
|
69
|
+
/**
|
|
70
|
+
* <fullname>Amazon Cloud Directory</fullname>
|
|
71
|
+
* <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the
|
|
72
|
+
* development and management of cloud-scale web, mobile, and IoT applications. This guide
|
|
73
|
+
* describes the Cloud Directory operations that you can call programmatically and includes
|
|
74
|
+
* detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory
|
|
75
|
+
* Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>
|
|
76
|
+
*/
|
|
77
|
+
export declare class CloudDirectory extends CloudDirectoryClient {
|
|
78
|
+
/**
|
|
79
|
+
* <p>Adds a new <a>Facet</a> to an object. An object can have more than one facet applied on it.</p>
|
|
80
|
+
*/
|
|
81
|
+
addFacetToObject(args: AddFacetToObjectCommandInput, options?: __HttpHandlerOptions): Promise<AddFacetToObjectCommandOutput>;
|
|
82
|
+
addFacetToObject(args: AddFacetToObjectCommandInput, cb: (err: any, data?: AddFacetToObjectCommandOutput) => void): void;
|
|
83
|
+
addFacetToObject(args: AddFacetToObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFacetToObjectCommandOutput) => void): void;
|
|
84
|
+
/**
|
|
85
|
+
* <p>Copies the input published schema, at the specified version, into the <a>Directory</a> with the same
|
|
86
|
+
* name and version as that of the published schema.</p>
|
|
87
|
+
*/
|
|
88
|
+
applySchema(args: ApplySchemaCommandInput, options?: __HttpHandlerOptions): Promise<ApplySchemaCommandOutput>;
|
|
89
|
+
applySchema(args: ApplySchemaCommandInput, cb: (err: any, data?: ApplySchemaCommandOutput) => void): void;
|
|
90
|
+
applySchema(args: ApplySchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplySchemaCommandOutput) => void): void;
|
|
91
|
+
/**
|
|
92
|
+
* <p>Attaches an existing object to another object. An object can be accessed in two
|
|
93
|
+
* ways:</p>
|
|
94
|
+
* <ol>
|
|
95
|
+
* <li>
|
|
96
|
+
* <p>Using the path</p>
|
|
97
|
+
* </li>
|
|
98
|
+
* <li>
|
|
99
|
+
* <p>Using <code>ObjectIdentifier</code>
|
|
100
|
+
* </p>
|
|
101
|
+
* </li>
|
|
102
|
+
* </ol>
|
|
103
|
+
*/
|
|
104
|
+
attachObject(args: AttachObjectCommandInput, options?: __HttpHandlerOptions): Promise<AttachObjectCommandOutput>;
|
|
105
|
+
attachObject(args: AttachObjectCommandInput, cb: (err: any, data?: AttachObjectCommandOutput) => void): void;
|
|
106
|
+
attachObject(args: AttachObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachObjectCommandOutput) => void): void;
|
|
107
|
+
/**
|
|
108
|
+
* <p>Attaches a policy object to a regular object. An object can have a limited number of attached
|
|
109
|
+
* policies.</p>
|
|
110
|
+
*/
|
|
111
|
+
attachPolicy(args: AttachPolicyCommandInput, options?: __HttpHandlerOptions): Promise<AttachPolicyCommandOutput>;
|
|
112
|
+
attachPolicy(args: AttachPolicyCommandInput, cb: (err: any, data?: AttachPolicyCommandOutput) => void): void;
|
|
113
|
+
attachPolicy(args: AttachPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachPolicyCommandOutput) => void): void;
|
|
114
|
+
/**
|
|
115
|
+
* <p>Attaches the specified object to the specified index.</p>
|
|
116
|
+
*/
|
|
117
|
+
attachToIndex(args: AttachToIndexCommandInput, options?: __HttpHandlerOptions): Promise<AttachToIndexCommandOutput>;
|
|
118
|
+
attachToIndex(args: AttachToIndexCommandInput, cb: (err: any, data?: AttachToIndexCommandOutput) => void): void;
|
|
119
|
+
attachToIndex(args: AttachToIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachToIndexCommandOutput) => void): void;
|
|
120
|
+
/**
|
|
121
|
+
* <p>Attaches a typed link to a specified source and target object. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
122
|
+
*/
|
|
123
|
+
attachTypedLink(args: AttachTypedLinkCommandInput, options?: __HttpHandlerOptions): Promise<AttachTypedLinkCommandOutput>;
|
|
124
|
+
attachTypedLink(args: AttachTypedLinkCommandInput, cb: (err: any, data?: AttachTypedLinkCommandOutput) => void): void;
|
|
125
|
+
attachTypedLink(args: AttachTypedLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachTypedLinkCommandOutput) => void): void;
|
|
126
|
+
/**
|
|
127
|
+
* <p>Performs all the read operations in a batch. </p>
|
|
128
|
+
*/
|
|
129
|
+
batchRead(args: BatchReadCommandInput, options?: __HttpHandlerOptions): Promise<BatchReadCommandOutput>;
|
|
130
|
+
batchRead(args: BatchReadCommandInput, cb: (err: any, data?: BatchReadCommandOutput) => void): void;
|
|
131
|
+
batchRead(args: BatchReadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchReadCommandOutput) => void): void;
|
|
132
|
+
/**
|
|
133
|
+
* <p>Performs all the write operations in a batch. Either all the operations succeed or
|
|
134
|
+
* none.</p>
|
|
135
|
+
*/
|
|
136
|
+
batchWrite(args: BatchWriteCommandInput, options?: __HttpHandlerOptions): Promise<BatchWriteCommandOutput>;
|
|
137
|
+
batchWrite(args: BatchWriteCommandInput, cb: (err: any, data?: BatchWriteCommandOutput) => void): void;
|
|
138
|
+
batchWrite(args: BatchWriteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchWriteCommandOutput) => void): void;
|
|
139
|
+
/**
|
|
140
|
+
* <p>Creates a <a>Directory</a> by copying the published schema into the
|
|
141
|
+
* directory. A directory cannot be created without a schema.</p>
|
|
142
|
+
* <p>You can also quickly create a directory using a managed schema, called the
|
|
143
|
+
* <code>QuickStartSchema</code>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_managed.html">Managed Schema</a> in the <i>Amazon Cloud Directory Developer Guide</i>.</p>
|
|
144
|
+
*/
|
|
145
|
+
createDirectory(args: CreateDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateDirectoryCommandOutput>;
|
|
146
|
+
createDirectory(args: CreateDirectoryCommandInput, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
|
|
147
|
+
createDirectory(args: CreateDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDirectoryCommandOutput) => void): void;
|
|
148
|
+
/**
|
|
149
|
+
* <p>Creates a new <a>Facet</a> in a schema. Facet creation is allowed only
|
|
150
|
+
* in development or applied schemas.</p>
|
|
151
|
+
*/
|
|
152
|
+
createFacet(args: CreateFacetCommandInput, options?: __HttpHandlerOptions): Promise<CreateFacetCommandOutput>;
|
|
153
|
+
createFacet(args: CreateFacetCommandInput, cb: (err: any, data?: CreateFacetCommandOutput) => void): void;
|
|
154
|
+
createFacet(args: CreateFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFacetCommandOutput) => void): void;
|
|
155
|
+
/**
|
|
156
|
+
* <p>Creates an index object. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.html">Indexing and search</a> for more information.</p>
|
|
157
|
+
*/
|
|
158
|
+
createIndex(args: CreateIndexCommandInput, options?: __HttpHandlerOptions): Promise<CreateIndexCommandOutput>;
|
|
159
|
+
createIndex(args: CreateIndexCommandInput, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
|
|
160
|
+
createIndex(args: CreateIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
|
|
161
|
+
/**
|
|
162
|
+
* <p>Creates an object in a <a>Directory</a>. Additionally attaches the object to
|
|
163
|
+
* a parent, if a parent reference and <code>LinkName</code> is specified. An object is simply a
|
|
164
|
+
* collection of <a>Facet</a> attributes. You can also use this API call to create a
|
|
165
|
+
* policy object, if the facet from which you create the object is a policy facet. </p>
|
|
166
|
+
*/
|
|
167
|
+
createObject(args: CreateObjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateObjectCommandOutput>;
|
|
168
|
+
createObject(args: CreateObjectCommandInput, cb: (err: any, data?: CreateObjectCommandOutput) => void): void;
|
|
169
|
+
createObject(args: CreateObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObjectCommandOutput) => void): void;
|
|
170
|
+
/**
|
|
171
|
+
* <p>Creates a new schema in a development state. A schema can exist in three
|
|
172
|
+
* phases:</p>
|
|
173
|
+
* <ul>
|
|
174
|
+
* <li>
|
|
175
|
+
* <p>
|
|
176
|
+
* <i>Development:</i> This is a mutable phase of the schema. All new
|
|
177
|
+
* schemas are in the development phase. Once the schema is finalized, it can be
|
|
178
|
+
* published.</p>
|
|
179
|
+
* </li>
|
|
180
|
+
* <li>
|
|
181
|
+
* <p>
|
|
182
|
+
* <i>Published:</i> Published schemas are immutable and have a version
|
|
183
|
+
* associated with them.</p>
|
|
184
|
+
* </li>
|
|
185
|
+
* <li>
|
|
186
|
+
* <p>
|
|
187
|
+
* <i>Applied:</i> Applied schemas are mutable in a way that allows you
|
|
188
|
+
* to add new schema facets. You can also add new, nonrequired attributes to existing schema
|
|
189
|
+
* facets. You can apply only published schemas to directories. </p>
|
|
190
|
+
* </li>
|
|
191
|
+
* </ul>
|
|
192
|
+
*/
|
|
193
|
+
createSchema(args: CreateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<CreateSchemaCommandOutput>;
|
|
194
|
+
createSchema(args: CreateSchemaCommandInput, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
|
|
195
|
+
createSchema(args: CreateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
|
|
196
|
+
/**
|
|
197
|
+
* <p>Creates a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
198
|
+
*/
|
|
199
|
+
createTypedLinkFacet(args: CreateTypedLinkFacetCommandInput, options?: __HttpHandlerOptions): Promise<CreateTypedLinkFacetCommandOutput>;
|
|
200
|
+
createTypedLinkFacet(args: CreateTypedLinkFacetCommandInput, cb: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void): void;
|
|
201
|
+
createTypedLinkFacet(args: CreateTypedLinkFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTypedLinkFacetCommandOutput) => void): void;
|
|
202
|
+
/**
|
|
203
|
+
* <p>Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme
|
|
204
|
+
* caution
|
|
205
|
+
* when deleting directories.</p>
|
|
206
|
+
*/
|
|
207
|
+
deleteDirectory(args: DeleteDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDirectoryCommandOutput>;
|
|
208
|
+
deleteDirectory(args: DeleteDirectoryCommandInput, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
|
|
209
|
+
deleteDirectory(args: DeleteDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDirectoryCommandOutput) => void): void;
|
|
210
|
+
/**
|
|
211
|
+
* <p>Deletes a given <a>Facet</a>. All attributes and <a>Rule</a>s
|
|
212
|
+
* that are associated with the facet will be deleted. Only development schema facets are allowed
|
|
213
|
+
* deletion.</p>
|
|
214
|
+
*/
|
|
215
|
+
deleteFacet(args: DeleteFacetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFacetCommandOutput>;
|
|
216
|
+
deleteFacet(args: DeleteFacetCommandInput, cb: (err: any, data?: DeleteFacetCommandOutput) => void): void;
|
|
217
|
+
deleteFacet(args: DeleteFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFacetCommandOutput) => void): void;
|
|
218
|
+
/**
|
|
219
|
+
* <p>Deletes an object and its associated attributes. Only objects with no children and no
|
|
220
|
+
* parents can be deleted. The maximum number of attributes that can be deleted during an object deletion is 30. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Amazon Cloud Directory Limits</a>.</p>
|
|
221
|
+
*/
|
|
222
|
+
deleteObject(args: DeleteObjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteObjectCommandOutput>;
|
|
223
|
+
deleteObject(args: DeleteObjectCommandInput, cb: (err: any, data?: DeleteObjectCommandOutput) => void): void;
|
|
224
|
+
deleteObject(args: DeleteObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObjectCommandOutput) => void): void;
|
|
225
|
+
/**
|
|
226
|
+
* <p>Deletes a given schema. Schemas in a development and published state can only be deleted. </p>
|
|
227
|
+
*/
|
|
228
|
+
deleteSchema(args: DeleteSchemaCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSchemaCommandOutput>;
|
|
229
|
+
deleteSchema(args: DeleteSchemaCommandInput, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
|
|
230
|
+
deleteSchema(args: DeleteSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
|
|
231
|
+
/**
|
|
232
|
+
* <p>Deletes a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
233
|
+
*/
|
|
234
|
+
deleteTypedLinkFacet(args: DeleteTypedLinkFacetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTypedLinkFacetCommandOutput>;
|
|
235
|
+
deleteTypedLinkFacet(args: DeleteTypedLinkFacetCommandInput, cb: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void): void;
|
|
236
|
+
deleteTypedLinkFacet(args: DeleteTypedLinkFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTypedLinkFacetCommandOutput) => void): void;
|
|
237
|
+
/**
|
|
238
|
+
* <p>Detaches the specified object from the specified index.</p>
|
|
239
|
+
*/
|
|
240
|
+
detachFromIndex(args: DetachFromIndexCommandInput, options?: __HttpHandlerOptions): Promise<DetachFromIndexCommandOutput>;
|
|
241
|
+
detachFromIndex(args: DetachFromIndexCommandInput, cb: (err: any, data?: DetachFromIndexCommandOutput) => void): void;
|
|
242
|
+
detachFromIndex(args: DetachFromIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachFromIndexCommandOutput) => void): void;
|
|
243
|
+
/**
|
|
244
|
+
* <p>Detaches a given object from the parent object. The object that is to be detached from the
|
|
245
|
+
* parent is specified by the link name.</p>
|
|
246
|
+
*/
|
|
247
|
+
detachObject(args: DetachObjectCommandInput, options?: __HttpHandlerOptions): Promise<DetachObjectCommandOutput>;
|
|
248
|
+
detachObject(args: DetachObjectCommandInput, cb: (err: any, data?: DetachObjectCommandOutput) => void): void;
|
|
249
|
+
detachObject(args: DetachObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachObjectCommandOutput) => void): void;
|
|
250
|
+
/**
|
|
251
|
+
* <p>Detaches a policy from an object.</p>
|
|
252
|
+
*/
|
|
253
|
+
detachPolicy(args: DetachPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DetachPolicyCommandOutput>;
|
|
254
|
+
detachPolicy(args: DetachPolicyCommandInput, cb: (err: any, data?: DetachPolicyCommandOutput) => void): void;
|
|
255
|
+
detachPolicy(args: DetachPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachPolicyCommandOutput) => void): void;
|
|
256
|
+
/**
|
|
257
|
+
* <p>Detaches a typed link from a specified source and target object. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
258
|
+
*/
|
|
259
|
+
detachTypedLink(args: DetachTypedLinkCommandInput, options?: __HttpHandlerOptions): Promise<DetachTypedLinkCommandOutput>;
|
|
260
|
+
detachTypedLink(args: DetachTypedLinkCommandInput, cb: (err: any, data?: DetachTypedLinkCommandOutput) => void): void;
|
|
261
|
+
detachTypedLink(args: DetachTypedLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachTypedLinkCommandOutput) => void): void;
|
|
262
|
+
/**
|
|
263
|
+
* <p>Disables the specified directory. Disabled directories cannot be read or written to.
|
|
264
|
+
* Only enabled directories can be disabled. Disabled directories may be reenabled.</p>
|
|
265
|
+
*/
|
|
266
|
+
disableDirectory(args: DisableDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<DisableDirectoryCommandOutput>;
|
|
267
|
+
disableDirectory(args: DisableDirectoryCommandInput, cb: (err: any, data?: DisableDirectoryCommandOutput) => void): void;
|
|
268
|
+
disableDirectory(args: DisableDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDirectoryCommandOutput) => void): void;
|
|
269
|
+
/**
|
|
270
|
+
* <p>Enables the specified directory. Only disabled directories can be enabled. Once
|
|
271
|
+
* enabled, the directory can then be read and written to.</p>
|
|
272
|
+
*/
|
|
273
|
+
enableDirectory(args: EnableDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<EnableDirectoryCommandOutput>;
|
|
274
|
+
enableDirectory(args: EnableDirectoryCommandInput, cb: (err: any, data?: EnableDirectoryCommandOutput) => void): void;
|
|
275
|
+
enableDirectory(args: EnableDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDirectoryCommandOutput) => void): void;
|
|
276
|
+
/**
|
|
277
|
+
* <p>Returns current applied schema version ARN, including the minor version in use.</p>
|
|
278
|
+
*/
|
|
279
|
+
getAppliedSchemaVersion(args: GetAppliedSchemaVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetAppliedSchemaVersionCommandOutput>;
|
|
280
|
+
getAppliedSchemaVersion(args: GetAppliedSchemaVersionCommandInput, cb: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void): void;
|
|
281
|
+
getAppliedSchemaVersion(args: GetAppliedSchemaVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppliedSchemaVersionCommandOutput) => void): void;
|
|
282
|
+
/**
|
|
283
|
+
* <p>Retrieves metadata about a directory.</p>
|
|
284
|
+
*/
|
|
285
|
+
getDirectory(args: GetDirectoryCommandInput, options?: __HttpHandlerOptions): Promise<GetDirectoryCommandOutput>;
|
|
286
|
+
getDirectory(args: GetDirectoryCommandInput, cb: (err: any, data?: GetDirectoryCommandOutput) => void): void;
|
|
287
|
+
getDirectory(args: GetDirectoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDirectoryCommandOutput) => void): void;
|
|
288
|
+
/**
|
|
289
|
+
* <p>Gets details of the <a>Facet</a>, such as facet name, attributes, <a>Rule</a>s, or <code>ObjectType</code>. You can call this on all kinds of schema
|
|
290
|
+
* facets -- published, development, or applied.</p>
|
|
291
|
+
*/
|
|
292
|
+
getFacet(args: GetFacetCommandInput, options?: __HttpHandlerOptions): Promise<GetFacetCommandOutput>;
|
|
293
|
+
getFacet(args: GetFacetCommandInput, cb: (err: any, data?: GetFacetCommandOutput) => void): void;
|
|
294
|
+
getFacet(args: GetFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFacetCommandOutput) => void): void;
|
|
295
|
+
/**
|
|
296
|
+
* <p>Retrieves attributes that are associated with a typed link.</p>
|
|
297
|
+
*/
|
|
298
|
+
getLinkAttributes(args: GetLinkAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetLinkAttributesCommandOutput>;
|
|
299
|
+
getLinkAttributes(args: GetLinkAttributesCommandInput, cb: (err: any, data?: GetLinkAttributesCommandOutput) => void): void;
|
|
300
|
+
getLinkAttributes(args: GetLinkAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLinkAttributesCommandOutput) => void): void;
|
|
301
|
+
/**
|
|
302
|
+
* <p>Retrieves attributes within a facet that are associated with an object.</p>
|
|
303
|
+
*/
|
|
304
|
+
getObjectAttributes(args: GetObjectAttributesCommandInput, options?: __HttpHandlerOptions): Promise<GetObjectAttributesCommandOutput>;
|
|
305
|
+
getObjectAttributes(args: GetObjectAttributesCommandInput, cb: (err: any, data?: GetObjectAttributesCommandOutput) => void): void;
|
|
306
|
+
getObjectAttributes(args: GetObjectAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetObjectAttributesCommandOutput) => void): void;
|
|
307
|
+
/**
|
|
308
|
+
* <p>Retrieves metadata about an object.</p>
|
|
309
|
+
*/
|
|
310
|
+
getObjectInformation(args: GetObjectInformationCommandInput, options?: __HttpHandlerOptions): Promise<GetObjectInformationCommandOutput>;
|
|
311
|
+
getObjectInformation(args: GetObjectInformationCommandInput, cb: (err: any, data?: GetObjectInformationCommandOutput) => void): void;
|
|
312
|
+
getObjectInformation(args: GetObjectInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetObjectInformationCommandOutput) => void): void;
|
|
313
|
+
/**
|
|
314
|
+
* <p>Retrieves a JSON representation of the schema. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_jsonformat.html#schemas_json">JSON Schema Format</a> for more information.</p>
|
|
315
|
+
*/
|
|
316
|
+
getSchemaAsJson(args: GetSchemaAsJsonCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaAsJsonCommandOutput>;
|
|
317
|
+
getSchemaAsJson(args: GetSchemaAsJsonCommandInput, cb: (err: any, data?: GetSchemaAsJsonCommandOutput) => void): void;
|
|
318
|
+
getSchemaAsJson(args: GetSchemaAsJsonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaAsJsonCommandOutput) => void): void;
|
|
319
|
+
/**
|
|
320
|
+
* <p>Returns the identity attribute order for a specific <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
321
|
+
*/
|
|
322
|
+
getTypedLinkFacetInformation(args: GetTypedLinkFacetInformationCommandInput, options?: __HttpHandlerOptions): Promise<GetTypedLinkFacetInformationCommandOutput>;
|
|
323
|
+
getTypedLinkFacetInformation(args: GetTypedLinkFacetInformationCommandInput, cb: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void): void;
|
|
324
|
+
getTypedLinkFacetInformation(args: GetTypedLinkFacetInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTypedLinkFacetInformationCommandOutput) => void): void;
|
|
325
|
+
/**
|
|
326
|
+
* <p>Lists schema major versions applied to a directory. If <code>SchemaArn</code> is provided, lists the minor version.</p>
|
|
327
|
+
*/
|
|
328
|
+
listAppliedSchemaArns(args: ListAppliedSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppliedSchemaArnsCommandOutput>;
|
|
329
|
+
listAppliedSchemaArns(args: ListAppliedSchemaArnsCommandInput, cb: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void): void;
|
|
330
|
+
listAppliedSchemaArns(args: ListAppliedSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppliedSchemaArnsCommandOutput) => void): void;
|
|
331
|
+
/**
|
|
332
|
+
* <p>Lists indices attached to the specified object.</p>
|
|
333
|
+
*/
|
|
334
|
+
listAttachedIndices(args: ListAttachedIndicesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttachedIndicesCommandOutput>;
|
|
335
|
+
listAttachedIndices(args: ListAttachedIndicesCommandInput, cb: (err: any, data?: ListAttachedIndicesCommandOutput) => void): void;
|
|
336
|
+
listAttachedIndices(args: ListAttachedIndicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttachedIndicesCommandOutput) => void): void;
|
|
337
|
+
/**
|
|
338
|
+
* <p>Retrieves each Amazon Resource Name (ARN) of schemas in the development
|
|
339
|
+
* state.</p>
|
|
340
|
+
*/
|
|
341
|
+
listDevelopmentSchemaArns(args: ListDevelopmentSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListDevelopmentSchemaArnsCommandOutput>;
|
|
342
|
+
listDevelopmentSchemaArns(args: ListDevelopmentSchemaArnsCommandInput, cb: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void): void;
|
|
343
|
+
listDevelopmentSchemaArns(args: ListDevelopmentSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevelopmentSchemaArnsCommandOutput) => void): void;
|
|
344
|
+
/**
|
|
345
|
+
* <p>Lists directories created within an account.</p>
|
|
346
|
+
*/
|
|
347
|
+
listDirectories(args: ListDirectoriesCommandInput, options?: __HttpHandlerOptions): Promise<ListDirectoriesCommandOutput>;
|
|
348
|
+
listDirectories(args: ListDirectoriesCommandInput, cb: (err: any, data?: ListDirectoriesCommandOutput) => void): void;
|
|
349
|
+
listDirectories(args: ListDirectoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDirectoriesCommandOutput) => void): void;
|
|
350
|
+
/**
|
|
351
|
+
* <p>Retrieves attributes attached to the facet.</p>
|
|
352
|
+
*/
|
|
353
|
+
listFacetAttributes(args: ListFacetAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListFacetAttributesCommandOutput>;
|
|
354
|
+
listFacetAttributes(args: ListFacetAttributesCommandInput, cb: (err: any, data?: ListFacetAttributesCommandOutput) => void): void;
|
|
355
|
+
listFacetAttributes(args: ListFacetAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFacetAttributesCommandOutput) => void): void;
|
|
356
|
+
/**
|
|
357
|
+
* <p>Retrieves the names of facets that exist in a schema.</p>
|
|
358
|
+
*/
|
|
359
|
+
listFacetNames(args: ListFacetNamesCommandInput, options?: __HttpHandlerOptions): Promise<ListFacetNamesCommandOutput>;
|
|
360
|
+
listFacetNames(args: ListFacetNamesCommandInput, cb: (err: any, data?: ListFacetNamesCommandOutput) => void): void;
|
|
361
|
+
listFacetNames(args: ListFacetNamesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFacetNamesCommandOutput) => void): void;
|
|
362
|
+
/**
|
|
363
|
+
* <p>Returns a paginated list of all the incoming <a>TypedLinkSpecifier</a>
|
|
364
|
+
* information for an object. It also supports filtering by typed link facet and identity
|
|
365
|
+
* attributes. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
366
|
+
*/
|
|
367
|
+
listIncomingTypedLinks(args: ListIncomingTypedLinksCommandInput, options?: __HttpHandlerOptions): Promise<ListIncomingTypedLinksCommandOutput>;
|
|
368
|
+
listIncomingTypedLinks(args: ListIncomingTypedLinksCommandInput, cb: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void): void;
|
|
369
|
+
listIncomingTypedLinks(args: ListIncomingTypedLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIncomingTypedLinksCommandOutput) => void): void;
|
|
370
|
+
/**
|
|
371
|
+
* <p>Lists objects attached to the specified index.</p>
|
|
372
|
+
*/
|
|
373
|
+
listIndex(args: ListIndexCommandInput, options?: __HttpHandlerOptions): Promise<ListIndexCommandOutput>;
|
|
374
|
+
listIndex(args: ListIndexCommandInput, cb: (err: any, data?: ListIndexCommandOutput) => void): void;
|
|
375
|
+
listIndex(args: ListIndexCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIndexCommandOutput) => void): void;
|
|
376
|
+
/**
|
|
377
|
+
* <p>Lists the major version families of each managed schema. If a major version ARN is provided as SchemaArn, the minor version revisions in that family are listed instead.</p>
|
|
378
|
+
*/
|
|
379
|
+
listManagedSchemaArns(args: ListManagedSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListManagedSchemaArnsCommandOutput>;
|
|
380
|
+
listManagedSchemaArns(args: ListManagedSchemaArnsCommandInput, cb: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void): void;
|
|
381
|
+
listManagedSchemaArns(args: ListManagedSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListManagedSchemaArnsCommandOutput) => void): void;
|
|
382
|
+
/**
|
|
383
|
+
* <p>Lists all attributes that are associated with an object.
|
|
384
|
+
* </p>
|
|
385
|
+
*/
|
|
386
|
+
listObjectAttributes(args: ListObjectAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectAttributesCommandOutput>;
|
|
387
|
+
listObjectAttributes(args: ListObjectAttributesCommandInput, cb: (err: any, data?: ListObjectAttributesCommandOutput) => void): void;
|
|
388
|
+
listObjectAttributes(args: ListObjectAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectAttributesCommandOutput) => void): void;
|
|
389
|
+
/**
|
|
390
|
+
* <p>Returns a paginated list of child objects that are associated with a given
|
|
391
|
+
* object.</p>
|
|
392
|
+
*/
|
|
393
|
+
listObjectChildren(args: ListObjectChildrenCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectChildrenCommandOutput>;
|
|
394
|
+
listObjectChildren(args: ListObjectChildrenCommandInput, cb: (err: any, data?: ListObjectChildrenCommandOutput) => void): void;
|
|
395
|
+
listObjectChildren(args: ListObjectChildrenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectChildrenCommandOutput) => void): void;
|
|
396
|
+
/**
|
|
397
|
+
* <p>Retrieves all available parent paths for any object type such as node, leaf node,
|
|
398
|
+
* policy node, and index node objects. For more information about objects, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html">Directory Structure</a>.</p>
|
|
399
|
+
* <p>Use this API to evaluate all parents for an object. The call returns all objects from
|
|
400
|
+
* the root of the directory up to the requested object. The API returns the number of paths
|
|
401
|
+
* based on user-defined <code>MaxResults</code>, in case there are multiple paths to the parent.
|
|
402
|
+
* The order of the paths and nodes returned is consistent among multiple API calls unless the
|
|
403
|
+
* objects are deleted or moved. Paths not leading to the directory root are ignored from the
|
|
404
|
+
* target object.</p>
|
|
405
|
+
*/
|
|
406
|
+
listObjectParentPaths(args: ListObjectParentPathsCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectParentPathsCommandOutput>;
|
|
407
|
+
listObjectParentPaths(args: ListObjectParentPathsCommandInput, cb: (err: any, data?: ListObjectParentPathsCommandOutput) => void): void;
|
|
408
|
+
listObjectParentPaths(args: ListObjectParentPathsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectParentPathsCommandOutput) => void): void;
|
|
409
|
+
/**
|
|
410
|
+
* <p>Lists parent objects that are associated with a given object in pagination
|
|
411
|
+
* fashion.</p>
|
|
412
|
+
*/
|
|
413
|
+
listObjectParents(args: ListObjectParentsCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectParentsCommandOutput>;
|
|
414
|
+
listObjectParents(args: ListObjectParentsCommandInput, cb: (err: any, data?: ListObjectParentsCommandOutput) => void): void;
|
|
415
|
+
listObjectParents(args: ListObjectParentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectParentsCommandOutput) => void): void;
|
|
416
|
+
/**
|
|
417
|
+
* <p>Returns policies attached to an object in pagination fashion.</p>
|
|
418
|
+
*/
|
|
419
|
+
listObjectPolicies(args: ListObjectPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectPoliciesCommandOutput>;
|
|
420
|
+
listObjectPolicies(args: ListObjectPoliciesCommandInput, cb: (err: any, data?: ListObjectPoliciesCommandOutput) => void): void;
|
|
421
|
+
listObjectPolicies(args: ListObjectPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectPoliciesCommandOutput) => void): void;
|
|
422
|
+
/**
|
|
423
|
+
* <p>Returns a paginated list of all the outgoing <a>TypedLinkSpecifier</a>
|
|
424
|
+
* information for an object. It also supports filtering by typed link facet and identity
|
|
425
|
+
* attributes. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
426
|
+
*/
|
|
427
|
+
listOutgoingTypedLinks(args: ListOutgoingTypedLinksCommandInput, options?: __HttpHandlerOptions): Promise<ListOutgoingTypedLinksCommandOutput>;
|
|
428
|
+
listOutgoingTypedLinks(args: ListOutgoingTypedLinksCommandInput, cb: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void): void;
|
|
429
|
+
listOutgoingTypedLinks(args: ListOutgoingTypedLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOutgoingTypedLinksCommandOutput) => void): void;
|
|
430
|
+
/**
|
|
431
|
+
* <p>Returns all of the <code>ObjectIdentifiers</code> to which a given policy is attached.</p>
|
|
432
|
+
*/
|
|
433
|
+
listPolicyAttachments(args: ListPolicyAttachmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListPolicyAttachmentsCommandOutput>;
|
|
434
|
+
listPolicyAttachments(args: ListPolicyAttachmentsCommandInput, cb: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void): void;
|
|
435
|
+
listPolicyAttachments(args: ListPolicyAttachmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPolicyAttachmentsCommandOutput) => void): void;
|
|
436
|
+
/**
|
|
437
|
+
* <p>Lists the major version families of each published schema. If a major version ARN is provided as <code>SchemaArn</code>, the minor version revisions in that family are listed instead.</p>
|
|
438
|
+
*/
|
|
439
|
+
listPublishedSchemaArns(args: ListPublishedSchemaArnsCommandInput, options?: __HttpHandlerOptions): Promise<ListPublishedSchemaArnsCommandOutput>;
|
|
440
|
+
listPublishedSchemaArns(args: ListPublishedSchemaArnsCommandInput, cb: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void): void;
|
|
441
|
+
listPublishedSchemaArns(args: ListPublishedSchemaArnsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPublishedSchemaArnsCommandOutput) => void): void;
|
|
442
|
+
/**
|
|
443
|
+
* <p>Returns tags for a resource. Tagging is currently supported only for directories with a
|
|
444
|
+
* limit of 50 tags per directory. All 50 tags are returned for a given directory with this API
|
|
445
|
+
* call.</p>
|
|
446
|
+
*/
|
|
447
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
448
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
449
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
450
|
+
/**
|
|
451
|
+
* <p>Returns a paginated list of all attribute definitions for a particular <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
452
|
+
*/
|
|
453
|
+
listTypedLinkFacetAttributes(args: ListTypedLinkFacetAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListTypedLinkFacetAttributesCommandOutput>;
|
|
454
|
+
listTypedLinkFacetAttributes(args: ListTypedLinkFacetAttributesCommandInput, cb: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void): void;
|
|
455
|
+
listTypedLinkFacetAttributes(args: ListTypedLinkFacetAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTypedLinkFacetAttributesCommandOutput) => void): void;
|
|
456
|
+
/**
|
|
457
|
+
* <p>Returns a paginated list of <code>TypedLink</code> facet names for a particular schema.
|
|
458
|
+
* For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
459
|
+
*/
|
|
460
|
+
listTypedLinkFacetNames(args: ListTypedLinkFacetNamesCommandInput, options?: __HttpHandlerOptions): Promise<ListTypedLinkFacetNamesCommandOutput>;
|
|
461
|
+
listTypedLinkFacetNames(args: ListTypedLinkFacetNamesCommandInput, cb: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void): void;
|
|
462
|
+
listTypedLinkFacetNames(args: ListTypedLinkFacetNamesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTypedLinkFacetNamesCommandOutput) => void): void;
|
|
463
|
+
/**
|
|
464
|
+
* <p>Lists all policies from the root of the <a>Directory</a> to the object
|
|
465
|
+
* specified. If there are no policies present, an empty list is returned. If policies are
|
|
466
|
+
* present, and if some objects don't have the policies attached, it returns the <code>ObjectIdentifier</code>
|
|
467
|
+
* for such objects. If policies are present, it returns <code>ObjectIdentifier</code>, <code>policyId</code>, and
|
|
468
|
+
* <code>policyType</code>. Paths that don't lead to the root from the target object are ignored. For more
|
|
469
|
+
* information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies">Policies</a>.</p>
|
|
470
|
+
*/
|
|
471
|
+
lookupPolicy(args: LookupPolicyCommandInput, options?: __HttpHandlerOptions): Promise<LookupPolicyCommandOutput>;
|
|
472
|
+
lookupPolicy(args: LookupPolicyCommandInput, cb: (err: any, data?: LookupPolicyCommandOutput) => void): void;
|
|
473
|
+
lookupPolicy(args: LookupPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: LookupPolicyCommandOutput) => void): void;
|
|
474
|
+
/**
|
|
475
|
+
* <p>Publishes a development schema with a major version and a recommended minor version.</p>
|
|
476
|
+
*/
|
|
477
|
+
publishSchema(args: PublishSchemaCommandInput, options?: __HttpHandlerOptions): Promise<PublishSchemaCommandOutput>;
|
|
478
|
+
publishSchema(args: PublishSchemaCommandInput, cb: (err: any, data?: PublishSchemaCommandOutput) => void): void;
|
|
479
|
+
publishSchema(args: PublishSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishSchemaCommandOutput) => void): void;
|
|
480
|
+
/**
|
|
481
|
+
* <p>Allows a schema to be updated using JSON upload. Only available for development schemas. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_jsonformat.html#schemas_json">JSON Schema Format</a> for more information.</p>
|
|
482
|
+
*/
|
|
483
|
+
putSchemaFromJson(args: PutSchemaFromJsonCommandInput, options?: __HttpHandlerOptions): Promise<PutSchemaFromJsonCommandOutput>;
|
|
484
|
+
putSchemaFromJson(args: PutSchemaFromJsonCommandInput, cb: (err: any, data?: PutSchemaFromJsonCommandOutput) => void): void;
|
|
485
|
+
putSchemaFromJson(args: PutSchemaFromJsonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSchemaFromJsonCommandOutput) => void): void;
|
|
486
|
+
/**
|
|
487
|
+
* <p>Removes the specified facet from the specified object.</p>
|
|
488
|
+
*/
|
|
489
|
+
removeFacetFromObject(args: RemoveFacetFromObjectCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFacetFromObjectCommandOutput>;
|
|
490
|
+
removeFacetFromObject(args: RemoveFacetFromObjectCommandInput, cb: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void): void;
|
|
491
|
+
removeFacetFromObject(args: RemoveFacetFromObjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFacetFromObjectCommandOutput) => void): void;
|
|
492
|
+
/**
|
|
493
|
+
* <p>An API operation for adding tags to a resource.</p>
|
|
494
|
+
*/
|
|
495
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
496
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
497
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
498
|
+
/**
|
|
499
|
+
* <p>An API operation for removing tags from a resource.</p>
|
|
500
|
+
*/
|
|
501
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
502
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
503
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
504
|
+
/**
|
|
505
|
+
* <p>Does the following:</p>
|
|
506
|
+
* <ol>
|
|
507
|
+
* <li>
|
|
508
|
+
* <p>Adds new <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
|
|
509
|
+
* </li>
|
|
510
|
+
* <li>
|
|
511
|
+
* <p>Updates existing <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
|
|
512
|
+
* </li>
|
|
513
|
+
* <li>
|
|
514
|
+
* <p>Deletes existing <code>Attributes</code>, <code>Rules</code>, or <code>ObjectTypes</code>.</p>
|
|
515
|
+
* </li>
|
|
516
|
+
* </ol>
|
|
517
|
+
*/
|
|
518
|
+
updateFacet(args: UpdateFacetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFacetCommandOutput>;
|
|
519
|
+
updateFacet(args: UpdateFacetCommandInput, cb: (err: any, data?: UpdateFacetCommandOutput) => void): void;
|
|
520
|
+
updateFacet(args: UpdateFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFacetCommandOutput) => void): void;
|
|
521
|
+
/**
|
|
522
|
+
* <p>Updates a given typed link’s attributes. Attributes to be updated must not contribute to the typed link’s identity, as defined by its <code>IdentityAttributeOrder</code>.</p>
|
|
523
|
+
*/
|
|
524
|
+
updateLinkAttributes(args: UpdateLinkAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLinkAttributesCommandOutput>;
|
|
525
|
+
updateLinkAttributes(args: UpdateLinkAttributesCommandInput, cb: (err: any, data?: UpdateLinkAttributesCommandOutput) => void): void;
|
|
526
|
+
updateLinkAttributes(args: UpdateLinkAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLinkAttributesCommandOutput) => void): void;
|
|
527
|
+
/**
|
|
528
|
+
* <p>Updates a given object's attributes.</p>
|
|
529
|
+
*/
|
|
530
|
+
updateObjectAttributes(args: UpdateObjectAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateObjectAttributesCommandOutput>;
|
|
531
|
+
updateObjectAttributes(args: UpdateObjectAttributesCommandInput, cb: (err: any, data?: UpdateObjectAttributesCommandOutput) => void): void;
|
|
532
|
+
updateObjectAttributes(args: UpdateObjectAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateObjectAttributesCommandOutput) => void): void;
|
|
533
|
+
/**
|
|
534
|
+
* <p>Updates the schema name with a new name. Only development schema names can be
|
|
535
|
+
* updated.</p>
|
|
536
|
+
*/
|
|
537
|
+
updateSchema(args: UpdateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaCommandOutput>;
|
|
538
|
+
updateSchema(args: UpdateSchemaCommandInput, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
|
|
539
|
+
updateSchema(args: UpdateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchemaCommandOutput) => void): void;
|
|
540
|
+
/**
|
|
541
|
+
* <p>Updates a <a>TypedLinkFacet</a>. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
542
|
+
*/
|
|
543
|
+
updateTypedLinkFacet(args: UpdateTypedLinkFacetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTypedLinkFacetCommandOutput>;
|
|
544
|
+
updateTypedLinkFacet(args: UpdateTypedLinkFacetCommandInput, cb: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void): void;
|
|
545
|
+
updateTypedLinkFacet(args: UpdateTypedLinkFacetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTypedLinkFacetCommandOutput) => void): void;
|
|
546
|
+
/**
|
|
547
|
+
* <p>Upgrades a single directory in-place using the <code>PublishedSchemaArn</code> with schema updates found in <code>MinorVersion</code>. Backwards-compatible minor version upgrades are instantaneously available for readers on all objects in the directory. Note: This is a synchronous API call and upgrades only one schema on a given directory per call. To upgrade multiple directories from one schema, you would need to call this API on each directory.</p>
|
|
548
|
+
*/
|
|
549
|
+
upgradeAppliedSchema(args: UpgradeAppliedSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpgradeAppliedSchemaCommandOutput>;
|
|
550
|
+
upgradeAppliedSchema(args: UpgradeAppliedSchemaCommandInput, cb: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void): void;
|
|
551
|
+
upgradeAppliedSchema(args: UpgradeAppliedSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpgradeAppliedSchemaCommandOutput) => void): void;
|
|
552
|
+
/**
|
|
553
|
+
* <p>Upgrades a published schema under a new minor version revision using the current contents of <code>DevelopmentSchemaArn</code>.</p>
|
|
554
|
+
*/
|
|
555
|
+
upgradePublishedSchema(args: UpgradePublishedSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpgradePublishedSchemaCommandOutput>;
|
|
556
|
+
upgradePublishedSchema(args: UpgradePublishedSchemaCommandInput, cb: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void): void;
|
|
557
|
+
upgradePublishedSchema(args: UpgradePublishedSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpgradePublishedSchemaCommandOutput) => void): void;
|
|
558
|
+
}
|