@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
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DeleteDirectoryRequest, DeleteDirectoryResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DeleteDirectoryCommand,
|
|
5
|
-
serializeAws_restJson1DeleteDirectoryCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DeleteDirectoryCommandInput extends DeleteDirectoryRequest {}
|
|
21
|
-
export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <p>Deletes a directory. Only disabled directories can be deleted. A deleted directory cannot be undone. Exercise extreme
|
|
25
|
-
* caution
|
|
26
|
-
* when deleting directories.</p>
|
|
27
|
-
* @example
|
|
28
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
-
* ```javascript
|
|
30
|
-
* import { CloudDirectoryClient, DeleteDirectoryCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
31
|
-
* // const { CloudDirectoryClient, DeleteDirectoryCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
32
|
-
* const client = new CloudDirectoryClient(config);
|
|
33
|
-
* const command = new DeleteDirectoryCommand(input);
|
|
34
|
-
* const response = await client.send(command);
|
|
35
|
-
* ```
|
|
36
|
-
*
|
|
37
|
-
* @see {@link DeleteDirectoryCommandInput} for command's `input` shape.
|
|
38
|
-
* @see {@link DeleteDirectoryCommandOutput} for command's `response` shape.
|
|
39
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
40
|
-
*
|
|
41
|
-
*/
|
|
42
|
-
export class DeleteDirectoryCommand extends $Command<
|
|
43
|
-
DeleteDirectoryCommandInput,
|
|
44
|
-
DeleteDirectoryCommandOutput,
|
|
45
|
-
CloudDirectoryClientResolvedConfig
|
|
46
|
-
> {
|
|
47
|
-
// Start section: command_properties
|
|
48
|
-
// End section: command_properties
|
|
49
|
-
|
|
50
|
-
constructor(readonly input: DeleteDirectoryCommandInput) {
|
|
51
|
-
// Start section: command_constructor
|
|
52
|
-
super();
|
|
53
|
-
// End section: command_constructor
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
*/
|
|
59
|
-
resolveMiddleware(
|
|
60
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
61
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
62
|
-
options?: __HttpHandlerOptions
|
|
63
|
-
): Handler<DeleteDirectoryCommandInput, DeleteDirectoryCommandOutput> {
|
|
64
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
65
|
-
|
|
66
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
67
|
-
|
|
68
|
-
const { logger } = configuration;
|
|
69
|
-
const clientName = "CloudDirectoryClient";
|
|
70
|
-
const commandName = "DeleteDirectoryCommand";
|
|
71
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
72
|
-
logger,
|
|
73
|
-
clientName,
|
|
74
|
-
commandName,
|
|
75
|
-
inputFilterSensitiveLog: DeleteDirectoryRequest.filterSensitiveLog,
|
|
76
|
-
outputFilterSensitiveLog: DeleteDirectoryResponse.filterSensitiveLog,
|
|
77
|
-
};
|
|
78
|
-
const { requestHandler } = configuration;
|
|
79
|
-
return stack.resolve(
|
|
80
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
81
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
82
|
-
handlerExecutionContext
|
|
83
|
-
);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
private serialize(input: DeleteDirectoryCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
87
|
-
return serializeAws_restJson1DeleteDirectoryCommand(input, context);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteDirectoryCommandOutput> {
|
|
91
|
-
return deserializeAws_restJson1DeleteDirectoryCommand(output, context);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
// Start section: command_body_extra
|
|
95
|
-
// End section: command_body_extra
|
|
96
|
-
}
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DeleteFacetRequest, DeleteFacetResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DeleteFacetCommand,
|
|
5
|
-
serializeAws_restJson1DeleteFacetCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DeleteFacetCommandInput extends DeleteFacetRequest {}
|
|
21
|
-
export interface DeleteFacetCommandOutput extends DeleteFacetResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <p>Deletes a given <a>Facet</a>. All attributes and <a>Rule</a>s
|
|
25
|
-
* that are associated with the facet will be deleted. Only development schema facets are allowed
|
|
26
|
-
* deletion.</p>
|
|
27
|
-
* @example
|
|
28
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
-
* ```javascript
|
|
30
|
-
* import { CloudDirectoryClient, DeleteFacetCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
31
|
-
* // const { CloudDirectoryClient, DeleteFacetCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
32
|
-
* const client = new CloudDirectoryClient(config);
|
|
33
|
-
* const command = new DeleteFacetCommand(input);
|
|
34
|
-
* const response = await client.send(command);
|
|
35
|
-
* ```
|
|
36
|
-
*
|
|
37
|
-
* @see {@link DeleteFacetCommandInput} for command's `input` shape.
|
|
38
|
-
* @see {@link DeleteFacetCommandOutput} for command's `response` shape.
|
|
39
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
40
|
-
*
|
|
41
|
-
*/
|
|
42
|
-
export class DeleteFacetCommand extends $Command<
|
|
43
|
-
DeleteFacetCommandInput,
|
|
44
|
-
DeleteFacetCommandOutput,
|
|
45
|
-
CloudDirectoryClientResolvedConfig
|
|
46
|
-
> {
|
|
47
|
-
// Start section: command_properties
|
|
48
|
-
// End section: command_properties
|
|
49
|
-
|
|
50
|
-
constructor(readonly input: DeleteFacetCommandInput) {
|
|
51
|
-
// Start section: command_constructor
|
|
52
|
-
super();
|
|
53
|
-
// End section: command_constructor
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
*/
|
|
59
|
-
resolveMiddleware(
|
|
60
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
61
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
62
|
-
options?: __HttpHandlerOptions
|
|
63
|
-
): Handler<DeleteFacetCommandInput, DeleteFacetCommandOutput> {
|
|
64
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
65
|
-
|
|
66
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
67
|
-
|
|
68
|
-
const { logger } = configuration;
|
|
69
|
-
const clientName = "CloudDirectoryClient";
|
|
70
|
-
const commandName = "DeleteFacetCommand";
|
|
71
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
72
|
-
logger,
|
|
73
|
-
clientName,
|
|
74
|
-
commandName,
|
|
75
|
-
inputFilterSensitiveLog: DeleteFacetRequest.filterSensitiveLog,
|
|
76
|
-
outputFilterSensitiveLog: DeleteFacetResponse.filterSensitiveLog,
|
|
77
|
-
};
|
|
78
|
-
const { requestHandler } = configuration;
|
|
79
|
-
return stack.resolve(
|
|
80
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
81
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
82
|
-
handlerExecutionContext
|
|
83
|
-
);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
private serialize(input: DeleteFacetCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
87
|
-
return serializeAws_restJson1DeleteFacetCommand(input, context);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteFacetCommandOutput> {
|
|
91
|
-
return deserializeAws_restJson1DeleteFacetCommand(output, context);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
// Start section: command_body_extra
|
|
95
|
-
// End section: command_body_extra
|
|
96
|
-
}
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DeleteObjectCommand,
|
|
5
|
-
serializeAws_restJson1DeleteObjectCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DeleteObjectCommandInput extends DeleteObjectRequest {}
|
|
21
|
-
export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <p>Deletes an object and its associated attributes. Only objects with no children and no
|
|
25
|
-
* 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>
|
|
26
|
-
* @example
|
|
27
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
28
|
-
* ```javascript
|
|
29
|
-
* import { CloudDirectoryClient, DeleteObjectCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
30
|
-
* // const { CloudDirectoryClient, DeleteObjectCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
31
|
-
* const client = new CloudDirectoryClient(config);
|
|
32
|
-
* const command = new DeleteObjectCommand(input);
|
|
33
|
-
* const response = await client.send(command);
|
|
34
|
-
* ```
|
|
35
|
-
*
|
|
36
|
-
* @see {@link DeleteObjectCommandInput} for command's `input` shape.
|
|
37
|
-
* @see {@link DeleteObjectCommandOutput} for command's `response` shape.
|
|
38
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
39
|
-
*
|
|
40
|
-
*/
|
|
41
|
-
export class DeleteObjectCommand extends $Command<
|
|
42
|
-
DeleteObjectCommandInput,
|
|
43
|
-
DeleteObjectCommandOutput,
|
|
44
|
-
CloudDirectoryClientResolvedConfig
|
|
45
|
-
> {
|
|
46
|
-
// Start section: command_properties
|
|
47
|
-
// End section: command_properties
|
|
48
|
-
|
|
49
|
-
constructor(readonly input: DeleteObjectCommandInput) {
|
|
50
|
-
// Start section: command_constructor
|
|
51
|
-
super();
|
|
52
|
-
// End section: command_constructor
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
resolveMiddleware(
|
|
59
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
60
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
61
|
-
options?: __HttpHandlerOptions
|
|
62
|
-
): Handler<DeleteObjectCommandInput, DeleteObjectCommandOutput> {
|
|
63
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
64
|
-
|
|
65
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
66
|
-
|
|
67
|
-
const { logger } = configuration;
|
|
68
|
-
const clientName = "CloudDirectoryClient";
|
|
69
|
-
const commandName = "DeleteObjectCommand";
|
|
70
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
71
|
-
logger,
|
|
72
|
-
clientName,
|
|
73
|
-
commandName,
|
|
74
|
-
inputFilterSensitiveLog: DeleteObjectRequest.filterSensitiveLog,
|
|
75
|
-
outputFilterSensitiveLog: DeleteObjectResponse.filterSensitiveLog,
|
|
76
|
-
};
|
|
77
|
-
const { requestHandler } = configuration;
|
|
78
|
-
return stack.resolve(
|
|
79
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
80
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
81
|
-
handlerExecutionContext
|
|
82
|
-
);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
private serialize(input: DeleteObjectCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
86
|
-
return serializeAws_restJson1DeleteObjectCommand(input, context);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteObjectCommandOutput> {
|
|
90
|
-
return deserializeAws_restJson1DeleteObjectCommand(output, context);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// Start section: command_body_extra
|
|
94
|
-
// End section: command_body_extra
|
|
95
|
-
}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DeleteSchemaRequest, DeleteSchemaResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DeleteSchemaCommand,
|
|
5
|
-
serializeAws_restJson1DeleteSchemaCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DeleteSchemaCommandInput extends DeleteSchemaRequest {}
|
|
21
|
-
export interface DeleteSchemaCommandOutput extends DeleteSchemaResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <p>Deletes a given schema. Schemas in a development and published state can only be deleted. </p>
|
|
25
|
-
* @example
|
|
26
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
27
|
-
* ```javascript
|
|
28
|
-
* import { CloudDirectoryClient, DeleteSchemaCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
29
|
-
* // const { CloudDirectoryClient, DeleteSchemaCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
30
|
-
* const client = new CloudDirectoryClient(config);
|
|
31
|
-
* const command = new DeleteSchemaCommand(input);
|
|
32
|
-
* const response = await client.send(command);
|
|
33
|
-
* ```
|
|
34
|
-
*
|
|
35
|
-
* @see {@link DeleteSchemaCommandInput} for command's `input` shape.
|
|
36
|
-
* @see {@link DeleteSchemaCommandOutput} for command's `response` shape.
|
|
37
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
38
|
-
*
|
|
39
|
-
*/
|
|
40
|
-
export class DeleteSchemaCommand extends $Command<
|
|
41
|
-
DeleteSchemaCommandInput,
|
|
42
|
-
DeleteSchemaCommandOutput,
|
|
43
|
-
CloudDirectoryClientResolvedConfig
|
|
44
|
-
> {
|
|
45
|
-
// Start section: command_properties
|
|
46
|
-
// End section: command_properties
|
|
47
|
-
|
|
48
|
-
constructor(readonly input: DeleteSchemaCommandInput) {
|
|
49
|
-
// Start section: command_constructor
|
|
50
|
-
super();
|
|
51
|
-
// End section: command_constructor
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
resolveMiddleware(
|
|
58
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
59
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
60
|
-
options?: __HttpHandlerOptions
|
|
61
|
-
): Handler<DeleteSchemaCommandInput, DeleteSchemaCommandOutput> {
|
|
62
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
63
|
-
|
|
64
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
65
|
-
|
|
66
|
-
const { logger } = configuration;
|
|
67
|
-
const clientName = "CloudDirectoryClient";
|
|
68
|
-
const commandName = "DeleteSchemaCommand";
|
|
69
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
70
|
-
logger,
|
|
71
|
-
clientName,
|
|
72
|
-
commandName,
|
|
73
|
-
inputFilterSensitiveLog: DeleteSchemaRequest.filterSensitiveLog,
|
|
74
|
-
outputFilterSensitiveLog: DeleteSchemaResponse.filterSensitiveLog,
|
|
75
|
-
};
|
|
76
|
-
const { requestHandler } = configuration;
|
|
77
|
-
return stack.resolve(
|
|
78
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
79
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
80
|
-
handlerExecutionContext
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
private serialize(input: DeleteSchemaCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
85
|
-
return serializeAws_restJson1DeleteSchemaCommand(input, context);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteSchemaCommandOutput> {
|
|
89
|
-
return deserializeAws_restJson1DeleteSchemaCommand(output, context);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// Start section: command_body_extra
|
|
93
|
-
// End section: command_body_extra
|
|
94
|
-
}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DeleteTypedLinkFacetRequest, DeleteTypedLinkFacetResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DeleteTypedLinkFacetCommand,
|
|
5
|
-
serializeAws_restJson1DeleteTypedLinkFacetCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DeleteTypedLinkFacetCommandInput extends DeleteTypedLinkFacetRequest {}
|
|
21
|
-
export interface DeleteTypedLinkFacetCommandOutput extends DeleteTypedLinkFacetResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <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>
|
|
25
|
-
* @example
|
|
26
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
27
|
-
* ```javascript
|
|
28
|
-
* import { CloudDirectoryClient, DeleteTypedLinkFacetCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
29
|
-
* // const { CloudDirectoryClient, DeleteTypedLinkFacetCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
30
|
-
* const client = new CloudDirectoryClient(config);
|
|
31
|
-
* const command = new DeleteTypedLinkFacetCommand(input);
|
|
32
|
-
* const response = await client.send(command);
|
|
33
|
-
* ```
|
|
34
|
-
*
|
|
35
|
-
* @see {@link DeleteTypedLinkFacetCommandInput} for command's `input` shape.
|
|
36
|
-
* @see {@link DeleteTypedLinkFacetCommandOutput} for command's `response` shape.
|
|
37
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
38
|
-
*
|
|
39
|
-
*/
|
|
40
|
-
export class DeleteTypedLinkFacetCommand extends $Command<
|
|
41
|
-
DeleteTypedLinkFacetCommandInput,
|
|
42
|
-
DeleteTypedLinkFacetCommandOutput,
|
|
43
|
-
CloudDirectoryClientResolvedConfig
|
|
44
|
-
> {
|
|
45
|
-
// Start section: command_properties
|
|
46
|
-
// End section: command_properties
|
|
47
|
-
|
|
48
|
-
constructor(readonly input: DeleteTypedLinkFacetCommandInput) {
|
|
49
|
-
// Start section: command_constructor
|
|
50
|
-
super();
|
|
51
|
-
// End section: command_constructor
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
resolveMiddleware(
|
|
58
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
59
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
60
|
-
options?: __HttpHandlerOptions
|
|
61
|
-
): Handler<DeleteTypedLinkFacetCommandInput, DeleteTypedLinkFacetCommandOutput> {
|
|
62
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
63
|
-
|
|
64
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
65
|
-
|
|
66
|
-
const { logger } = configuration;
|
|
67
|
-
const clientName = "CloudDirectoryClient";
|
|
68
|
-
const commandName = "DeleteTypedLinkFacetCommand";
|
|
69
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
70
|
-
logger,
|
|
71
|
-
clientName,
|
|
72
|
-
commandName,
|
|
73
|
-
inputFilterSensitiveLog: DeleteTypedLinkFacetRequest.filterSensitiveLog,
|
|
74
|
-
outputFilterSensitiveLog: DeleteTypedLinkFacetResponse.filterSensitiveLog,
|
|
75
|
-
};
|
|
76
|
-
const { requestHandler } = configuration;
|
|
77
|
-
return stack.resolve(
|
|
78
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
79
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
80
|
-
handlerExecutionContext
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
private serialize(input: DeleteTypedLinkFacetCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
85
|
-
return serializeAws_restJson1DeleteTypedLinkFacetCommand(input, context);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DeleteTypedLinkFacetCommandOutput> {
|
|
89
|
-
return deserializeAws_restJson1DeleteTypedLinkFacetCommand(output, context);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// Start section: command_body_extra
|
|
93
|
-
// End section: command_body_extra
|
|
94
|
-
}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DetachFromIndexRequest, DetachFromIndexResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DetachFromIndexCommand,
|
|
5
|
-
serializeAws_restJson1DetachFromIndexCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DetachFromIndexCommandInput extends DetachFromIndexRequest {}
|
|
21
|
-
export interface DetachFromIndexCommandOutput extends DetachFromIndexResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <p>Detaches the specified object from the specified index.</p>
|
|
25
|
-
* @example
|
|
26
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
27
|
-
* ```javascript
|
|
28
|
-
* import { CloudDirectoryClient, DetachFromIndexCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
29
|
-
* // const { CloudDirectoryClient, DetachFromIndexCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
30
|
-
* const client = new CloudDirectoryClient(config);
|
|
31
|
-
* const command = new DetachFromIndexCommand(input);
|
|
32
|
-
* const response = await client.send(command);
|
|
33
|
-
* ```
|
|
34
|
-
*
|
|
35
|
-
* @see {@link DetachFromIndexCommandInput} for command's `input` shape.
|
|
36
|
-
* @see {@link DetachFromIndexCommandOutput} for command's `response` shape.
|
|
37
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
38
|
-
*
|
|
39
|
-
*/
|
|
40
|
-
export class DetachFromIndexCommand extends $Command<
|
|
41
|
-
DetachFromIndexCommandInput,
|
|
42
|
-
DetachFromIndexCommandOutput,
|
|
43
|
-
CloudDirectoryClientResolvedConfig
|
|
44
|
-
> {
|
|
45
|
-
// Start section: command_properties
|
|
46
|
-
// End section: command_properties
|
|
47
|
-
|
|
48
|
-
constructor(readonly input: DetachFromIndexCommandInput) {
|
|
49
|
-
// Start section: command_constructor
|
|
50
|
-
super();
|
|
51
|
-
// End section: command_constructor
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
resolveMiddleware(
|
|
58
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
59
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
60
|
-
options?: __HttpHandlerOptions
|
|
61
|
-
): Handler<DetachFromIndexCommandInput, DetachFromIndexCommandOutput> {
|
|
62
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
63
|
-
|
|
64
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
65
|
-
|
|
66
|
-
const { logger } = configuration;
|
|
67
|
-
const clientName = "CloudDirectoryClient";
|
|
68
|
-
const commandName = "DetachFromIndexCommand";
|
|
69
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
70
|
-
logger,
|
|
71
|
-
clientName,
|
|
72
|
-
commandName,
|
|
73
|
-
inputFilterSensitiveLog: DetachFromIndexRequest.filterSensitiveLog,
|
|
74
|
-
outputFilterSensitiveLog: DetachFromIndexResponse.filterSensitiveLog,
|
|
75
|
-
};
|
|
76
|
-
const { requestHandler } = configuration;
|
|
77
|
-
return stack.resolve(
|
|
78
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
79
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
80
|
-
handlerExecutionContext
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
private serialize(input: DetachFromIndexCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
85
|
-
return serializeAws_restJson1DetachFromIndexCommand(input, context);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DetachFromIndexCommandOutput> {
|
|
89
|
-
return deserializeAws_restJson1DetachFromIndexCommand(output, context);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// Start section: command_body_extra
|
|
93
|
-
// End section: command_body_extra
|
|
94
|
-
}
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient";
|
|
2
|
-
import { DetachObjectRequest, DetachObjectResponse } from "../models/models_0";
|
|
3
|
-
import {
|
|
4
|
-
deserializeAws_restJson1DetachObjectCommand,
|
|
5
|
-
serializeAws_restJson1DetachObjectCommand,
|
|
6
|
-
} from "../protocols/Aws_restJson1";
|
|
7
|
-
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
8
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
9
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
10
|
-
import {
|
|
11
|
-
FinalizeHandlerArguments,
|
|
12
|
-
Handler,
|
|
13
|
-
HandlerExecutionContext,
|
|
14
|
-
MiddlewareStack,
|
|
15
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
16
|
-
MetadataBearer as __MetadataBearer,
|
|
17
|
-
SerdeContext as __SerdeContext,
|
|
18
|
-
} from "@aws-sdk/types";
|
|
19
|
-
|
|
20
|
-
export interface DetachObjectCommandInput extends DetachObjectRequest {}
|
|
21
|
-
export interface DetachObjectCommandOutput extends DetachObjectResponse, __MetadataBearer {}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* <p>Detaches a given object from the parent object. The object that is to be detached from the
|
|
25
|
-
* parent is specified by the link name.</p>
|
|
26
|
-
* @example
|
|
27
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
28
|
-
* ```javascript
|
|
29
|
-
* import { CloudDirectoryClient, DetachObjectCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
30
|
-
* // const { CloudDirectoryClient, DetachObjectCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
31
|
-
* const client = new CloudDirectoryClient(config);
|
|
32
|
-
* const command = new DetachObjectCommand(input);
|
|
33
|
-
* const response = await client.send(command);
|
|
34
|
-
* ```
|
|
35
|
-
*
|
|
36
|
-
* @see {@link DetachObjectCommandInput} for command's `input` shape.
|
|
37
|
-
* @see {@link DetachObjectCommandOutput} for command's `response` shape.
|
|
38
|
-
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
39
|
-
*
|
|
40
|
-
*/
|
|
41
|
-
export class DetachObjectCommand extends $Command<
|
|
42
|
-
DetachObjectCommandInput,
|
|
43
|
-
DetachObjectCommandOutput,
|
|
44
|
-
CloudDirectoryClientResolvedConfig
|
|
45
|
-
> {
|
|
46
|
-
// Start section: command_properties
|
|
47
|
-
// End section: command_properties
|
|
48
|
-
|
|
49
|
-
constructor(readonly input: DetachObjectCommandInput) {
|
|
50
|
-
// Start section: command_constructor
|
|
51
|
-
super();
|
|
52
|
-
// End section: command_constructor
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
resolveMiddleware(
|
|
59
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
60
|
-
configuration: CloudDirectoryClientResolvedConfig,
|
|
61
|
-
options?: __HttpHandlerOptions
|
|
62
|
-
): Handler<DetachObjectCommandInput, DetachObjectCommandOutput> {
|
|
63
|
-
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
64
|
-
|
|
65
|
-
const stack = clientStack.concat(this.middlewareStack);
|
|
66
|
-
|
|
67
|
-
const { logger } = configuration;
|
|
68
|
-
const clientName = "CloudDirectoryClient";
|
|
69
|
-
const commandName = "DetachObjectCommand";
|
|
70
|
-
const handlerExecutionContext: HandlerExecutionContext = {
|
|
71
|
-
logger,
|
|
72
|
-
clientName,
|
|
73
|
-
commandName,
|
|
74
|
-
inputFilterSensitiveLog: DetachObjectRequest.filterSensitiveLog,
|
|
75
|
-
outputFilterSensitiveLog: DetachObjectResponse.filterSensitiveLog,
|
|
76
|
-
};
|
|
77
|
-
const { requestHandler } = configuration;
|
|
78
|
-
return stack.resolve(
|
|
79
|
-
(request: FinalizeHandlerArguments<any>) =>
|
|
80
|
-
requestHandler.handle(request.request as __HttpRequest, options || {}),
|
|
81
|
-
handlerExecutionContext
|
|
82
|
-
);
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
private serialize(input: DetachObjectCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
|
|
86
|
-
return serializeAws_restJson1DetachObjectCommand(input, context);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
private deserialize(output: __HttpResponse, context: __SerdeContext): Promise<DetachObjectCommandOutput> {
|
|
90
|
-
return deserializeAws_restJson1DetachObjectCommand(output, context);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// Start section: command_body_extra
|
|
94
|
-
// End section: command_body_extra
|
|
95
|
-
}
|