@aws-sdk/client-clouddirectory 3.32.0 → 3.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -0
- package/dist-cjs/CloudDirectory.js +1005 -0
- package/dist-cjs/CloudDirectoryClient.js +48 -0
- package/dist-cjs/commands/AddFacetToObjectCommand.js +60 -0
- package/dist-cjs/commands/ApplySchemaCommand.js +61 -0
- package/dist-cjs/commands/AttachObjectCommand.js +70 -0
- package/dist-cjs/commands/AttachPolicyCommand.js +61 -0
- package/dist-cjs/commands/AttachToIndexCommand.js +60 -0
- package/dist-cjs/commands/AttachTypedLinkCommand.js +60 -0
- package/dist-cjs/commands/BatchReadCommand.js +60 -0
- package/dist-cjs/commands/BatchWriteCommand.js +61 -0
- package/dist-cjs/commands/CreateDirectoryCommand.js +63 -0
- package/dist-cjs/commands/CreateFacetCommand.js +61 -0
- package/dist-cjs/commands/CreateIndexCommand.js +60 -0
- package/dist-cjs/commands/CreateObjectCommand.js +63 -0
- package/dist-cjs/commands/CreateSchemaCommand.js +80 -0
- package/dist-cjs/commands/CreateTypedLinkFacetCommand.js +60 -0
- package/dist-cjs/commands/DeleteDirectoryCommand.js +62 -0
- package/dist-cjs/commands/DeleteFacetCommand.js +62 -0
- package/dist-cjs/commands/DeleteObjectCommand.js +61 -0
- package/dist-cjs/commands/DeleteSchemaCommand.js +60 -0
- package/dist-cjs/commands/DeleteTypedLinkFacetCommand.js +60 -0
- package/dist-cjs/commands/DetachFromIndexCommand.js +60 -0
- package/dist-cjs/commands/DetachObjectCommand.js +61 -0
- package/dist-cjs/commands/DetachPolicyCommand.js +60 -0
- package/dist-cjs/commands/DetachTypedLinkCommand.js +60 -0
- package/dist-cjs/commands/DisableDirectoryCommand.js +61 -0
- package/dist-cjs/commands/EnableDirectoryCommand.js +61 -0
- package/dist-cjs/commands/GetAppliedSchemaVersionCommand.js +60 -0
- package/dist-cjs/commands/GetDirectoryCommand.js +60 -0
- package/dist-cjs/commands/GetFacetCommand.js +61 -0
- package/dist-cjs/commands/GetLinkAttributesCommand.js +60 -0
- package/dist-cjs/commands/GetObjectAttributesCommand.js +60 -0
- package/dist-cjs/commands/GetObjectInformationCommand.js +60 -0
- package/dist-cjs/commands/GetSchemaAsJsonCommand.js +60 -0
- package/dist-cjs/commands/GetTypedLinkFacetInformationCommand.js +60 -0
- package/dist-cjs/commands/ListAppliedSchemaArnsCommand.js +60 -0
- package/dist-cjs/commands/ListAttachedIndicesCommand.js +60 -0
- package/dist-cjs/commands/ListDevelopmentSchemaArnsCommand.js +61 -0
- package/dist-cjs/commands/ListDirectoriesCommand.js +60 -0
- package/dist-cjs/commands/ListFacetAttributesCommand.js +60 -0
- package/dist-cjs/commands/ListFacetNamesCommand.js +60 -0
- package/dist-cjs/commands/ListIncomingTypedLinksCommand.js +62 -0
- package/dist-cjs/commands/ListIndexCommand.js +60 -0
- package/dist-cjs/commands/ListManagedSchemaArnsCommand.js +60 -0
- package/dist-cjs/commands/ListObjectAttributesCommand.js +61 -0
- package/dist-cjs/commands/ListObjectChildrenCommand.js +61 -0
- package/dist-cjs/commands/ListObjectParentPathsCommand.js +67 -0
- package/dist-cjs/commands/ListObjectParentsCommand.js +61 -0
- package/dist-cjs/commands/ListObjectPoliciesCommand.js +60 -0
- package/dist-cjs/commands/ListOutgoingTypedLinksCommand.js +62 -0
- package/dist-cjs/commands/ListPolicyAttachmentsCommand.js +60 -0
- package/dist-cjs/commands/ListPublishedSchemaArnsCommand.js +60 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +62 -0
- package/dist-cjs/commands/ListTypedLinkFacetAttributesCommand.js +60 -0
- package/dist-cjs/commands/ListTypedLinkFacetNamesCommand.js +61 -0
- package/dist-cjs/commands/LookupPolicyCommand.js +65 -0
- package/dist-cjs/commands/PublishSchemaCommand.js +60 -0
- package/dist-cjs/commands/PutSchemaFromJsonCommand.js +60 -0
- package/dist-cjs/commands/RemoveFacetFromObjectCommand.js +60 -0
- package/dist-cjs/commands/TagResourceCommand.js +60 -0
- package/dist-cjs/commands/UntagResourceCommand.js +60 -0
- package/dist-cjs/commands/UpdateFacetCommand.js +71 -0
- package/dist-cjs/commands/UpdateLinkAttributesCommand.js +60 -0
- package/dist-cjs/commands/UpdateObjectAttributesCommand.js +60 -0
- package/dist-cjs/commands/UpdateSchemaCommand.js +61 -0
- package/dist-cjs/commands/UpdateTypedLinkFacetCommand.js +60 -0
- package/dist-cjs/commands/UpgradeAppliedSchemaCommand.js +60 -0
- package/dist-cjs/commands/UpgradePublishedSchemaCommand.js +60 -0
- package/dist-cjs/endpoints.js +56 -0
- package/dist-cjs/index.js +92 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +2627 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAppliedSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListAttachedIndicesPaginator.js +45 -0
- package/dist-cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListDirectoriesPaginator.js +45 -0
- package/dist-cjs/pagination/ListFacetAttributesPaginator.js +45 -0
- package/dist-cjs/pagination/ListFacetNamesPaginator.js +45 -0
- package/dist-cjs/pagination/ListIndexPaginator.js +45 -0
- package/dist-cjs/pagination/ListManagedSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectAttributesPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectChildrenPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectParentPathsPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectParentsPaginator.js +45 -0
- package/dist-cjs/pagination/ListObjectPoliciesPaginator.js +45 -0
- package/dist-cjs/pagination/ListPolicyAttachmentsPaginator.js +45 -0
- package/dist-cjs/pagination/ListPublishedSchemaArnsPaginator.js +45 -0
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +45 -0
- package/dist-cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +45 -0
- package/dist-cjs/pagination/ListTypedLinkFacetNamesPaginator.js +45 -0
- package/dist-cjs/pagination/LookupPolicyPaginator.js +45 -0
- package/dist-cjs/protocols/Aws_restJson1.js +11264 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +46 -0
- package/dist-cjs/runtimeConfig.native.js +19 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-es/CloudDirectory.js +1000 -0
- package/dist-es/CloudDirectoryClient.js +37 -0
- package/dist-es/commands/AddFacetToObjectCommand.js +39 -0
- package/dist-es/commands/ApplySchemaCommand.js +39 -0
- package/dist-es/commands/AttachObjectCommand.js +39 -0
- package/dist-es/commands/AttachPolicyCommand.js +39 -0
- package/dist-es/commands/AttachToIndexCommand.js +39 -0
- package/dist-es/commands/AttachTypedLinkCommand.js +39 -0
- package/dist-es/commands/BatchReadCommand.js +39 -0
- package/dist-es/commands/BatchWriteCommand.js +39 -0
- package/dist-es/commands/CreateDirectoryCommand.js +39 -0
- package/dist-es/commands/CreateFacetCommand.js +39 -0
- package/dist-es/commands/CreateIndexCommand.js +39 -0
- package/dist-es/commands/CreateObjectCommand.js +39 -0
- package/dist-es/commands/CreateSchemaCommand.js +39 -0
- package/dist-es/commands/CreateTypedLinkFacetCommand.js +39 -0
- package/dist-es/commands/DeleteDirectoryCommand.js +39 -0
- package/dist-es/commands/DeleteFacetCommand.js +39 -0
- package/dist-es/commands/DeleteObjectCommand.js +39 -0
- package/dist-es/commands/DeleteSchemaCommand.js +39 -0
- package/dist-es/commands/DeleteTypedLinkFacetCommand.js +39 -0
- package/dist-es/commands/DetachFromIndexCommand.js +39 -0
- package/dist-es/commands/DetachObjectCommand.js +39 -0
- package/dist-es/commands/DetachPolicyCommand.js +39 -0
- package/dist-es/commands/DetachTypedLinkCommand.js +39 -0
- package/dist-es/commands/DisableDirectoryCommand.js +39 -0
- package/dist-es/commands/EnableDirectoryCommand.js +39 -0
- package/dist-es/commands/GetAppliedSchemaVersionCommand.js +39 -0
- package/dist-es/commands/GetDirectoryCommand.js +39 -0
- package/dist-es/commands/GetFacetCommand.js +39 -0
- package/dist-es/commands/GetLinkAttributesCommand.js +39 -0
- package/dist-es/commands/GetObjectAttributesCommand.js +39 -0
- package/dist-es/commands/GetObjectInformationCommand.js +39 -0
- package/dist-es/commands/GetSchemaAsJsonCommand.js +39 -0
- package/dist-es/commands/GetTypedLinkFacetInformationCommand.js +39 -0
- package/dist-es/commands/ListAppliedSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListAttachedIndicesCommand.js +39 -0
- package/dist-es/commands/ListDevelopmentSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListDirectoriesCommand.js +39 -0
- package/dist-es/commands/ListFacetAttributesCommand.js +39 -0
- package/dist-es/commands/ListFacetNamesCommand.js +39 -0
- package/dist-es/commands/ListIncomingTypedLinksCommand.js +39 -0
- package/dist-es/commands/ListIndexCommand.js +39 -0
- package/dist-es/commands/ListManagedSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListObjectAttributesCommand.js +39 -0
- package/dist-es/commands/ListObjectChildrenCommand.js +39 -0
- package/dist-es/commands/ListObjectParentPathsCommand.js +39 -0
- package/dist-es/commands/ListObjectParentsCommand.js +39 -0
- package/dist-es/commands/ListObjectPoliciesCommand.js +39 -0
- package/dist-es/commands/ListOutgoingTypedLinksCommand.js +39 -0
- package/dist-es/commands/ListPolicyAttachmentsCommand.js +39 -0
- package/dist-es/commands/ListPublishedSchemaArnsCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/ListTypedLinkFacetAttributesCommand.js +39 -0
- package/dist-es/commands/ListTypedLinkFacetNamesCommand.js +39 -0
- package/dist-es/commands/LookupPolicyCommand.js +39 -0
- package/dist-es/commands/PublishSchemaCommand.js +39 -0
- package/dist-es/commands/PutSchemaFromJsonCommand.js +39 -0
- package/dist-es/commands/RemoveFacetFromObjectCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateFacetCommand.js +39 -0
- package/dist-es/commands/UpdateLinkAttributesCommand.js +39 -0
- package/dist-es/commands/UpdateObjectAttributesCommand.js +39 -0
- package/dist-es/commands/UpdateSchemaCommand.js +39 -0
- package/dist-es/commands/UpdateTypedLinkFacetCommand.js +39 -0
- package/dist-es/commands/UpgradeAppliedSchemaCommand.js +39 -0
- package/dist-es/commands/UpgradePublishedSchemaCommand.js +39 -0
- package/dist-es/endpoints.js +52 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +1252 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAppliedSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListAttachedIndicesPaginator.js +74 -0
- package/dist-es/pagination/ListDevelopmentSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListDirectoriesPaginator.js +74 -0
- package/dist-es/pagination/ListFacetAttributesPaginator.js +74 -0
- package/dist-es/pagination/ListFacetNamesPaginator.js +74 -0
- package/dist-es/pagination/ListIndexPaginator.js +74 -0
- package/dist-es/pagination/ListManagedSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListObjectAttributesPaginator.js +74 -0
- package/dist-es/pagination/ListObjectChildrenPaginator.js +74 -0
- package/dist-es/pagination/ListObjectParentPathsPaginator.js +74 -0
- package/dist-es/pagination/ListObjectParentsPaginator.js +74 -0
- package/dist-es/pagination/ListObjectPoliciesPaginator.js +74 -0
- package/dist-es/pagination/ListPolicyAttachmentsPaginator.js +74 -0
- package/dist-es/pagination/ListPublishedSchemaArnsPaginator.js +74 -0
- package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
- package/dist-es/pagination/ListTypedLinkFacetAttributesPaginator.js +74 -0
- package/dist-es/pagination/ListTypedLinkFacetNamesPaginator.js +74 -0
- package/dist-es/pagination/LookupPolicyPaginator.js +74 -0
- package/dist-es/protocols/Aws_restJson1.js +11983 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-types/CloudDirectory.d.ts +558 -0
- package/dist-types/CloudDirectoryClient.d.ts +203 -0
- package/dist-types/commands/AddFacetToObjectCommand.d.ts +35 -0
- package/dist-types/commands/ApplySchemaCommand.d.ts +36 -0
- package/dist-types/commands/AttachObjectCommand.d.ts +45 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +36 -0
- package/dist-types/commands/AttachToIndexCommand.d.ts +35 -0
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +35 -0
- package/dist-types/commands/BatchReadCommand.d.ts +35 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +36 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +38 -0
- package/dist-types/commands/CreateFacetCommand.d.ts +36 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +35 -0
- package/dist-types/commands/CreateObjectCommand.d.ts +38 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +55 -0
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +37 -0
- package/dist-types/commands/DeleteFacetCommand.d.ts +37 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +36 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +35 -0
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/commands/DetachFromIndexCommand.d.ts +35 -0
- package/dist-types/commands/DetachObjectCommand.d.ts +36 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +35 -0
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +35 -0
- package/dist-types/commands/DisableDirectoryCommand.d.ts +36 -0
- package/dist-types/commands/EnableDirectoryCommand.d.ts +36 -0
- package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +35 -0
- package/dist-types/commands/GetFacetCommand.d.ts +36 -0
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +35 -0
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +35 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +35 -0
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +35 -0
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +35 -0
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
- package/dist-types/commands/ListDirectoriesCommand.d.ts +35 -0
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +35 -0
- package/dist-types/commands/ListFacetNamesCommand.d.ts +35 -0
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
- package/dist-types/commands/ListIndexCommand.d.ts +35 -0
- package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +36 -0
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +36 -0
- package/dist-types/commands/ListObjectParentPathsCommand.d.ts +42 -0
- package/dist-types/commands/ListObjectParentsCommand.d.ts +36 -0
- package/dist-types/commands/ListObjectPoliciesCommand.d.ts +35 -0
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
- package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
- package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
- package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
- package/dist-types/commands/LookupPolicyCommand.d.ts +40 -0
- package/dist-types/commands/PublishSchemaCommand.d.ts +35 -0
- package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +35 -0
- package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateFacetCommand.d.ts +46 -0
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateSchemaCommand.d.ts +36 -0
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
- package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListDirectoriesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListFacetNamesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListIndexPaginator.d.ts +4 -0
- package/dist-types/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectAttributesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectChildrenPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectParentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
- package/dist-types/pagination/LookupPolicyPaginator.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
- package/dist-types/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/dist-types/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/CloudDirectory.d.ts +558 -0
- package/dist-types/ts3.4/CloudDirectoryClient.d.ts +203 -0
- package/dist-types/ts3.4/commands/AddFacetToObjectCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ApplySchemaCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/AttachObjectCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/AttachPolicyCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/AttachToIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/AttachTypedLinkCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/BatchReadCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDirectoryCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateFacetCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateObjectCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +55 -0
- package/dist-types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteDirectoryCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteFacetCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DeleteSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DetachFromIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DetachObjectCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DetachPolicyCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DetachTypedLinkCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DisableDirectoryCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/EnableDirectoryCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetDirectoryCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetFacetCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetLinkAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetObjectInformationCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListDirectoriesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListFacetAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListFacetNamesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListIndexCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListObjectAttributesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListObjectChildrenCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListObjectParentsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/LookupPolicyCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/PublishSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateFacetCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +35 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListIndexPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/LookupPolicyPaginator.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +200 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
- package/package.json +52 -49
- package/CloudDirectory.ts +0 -2405
- package/CloudDirectoryClient.ts +0 -516
- package/commands/AddFacetToObjectCommand.ts +0 -94
- package/commands/ApplySchemaCommand.ts +0 -95
- package/commands/AttachObjectCommand.ts +0 -104
- package/commands/AttachPolicyCommand.ts +0 -95
- package/commands/AttachToIndexCommand.ts +0 -94
- package/commands/AttachTypedLinkCommand.ts +0 -94
- package/commands/BatchReadCommand.ts +0 -94
- package/commands/BatchWriteCommand.ts +0 -95
- package/commands/CreateDirectoryCommand.ts +0 -97
- package/commands/CreateFacetCommand.ts +0 -95
- package/commands/CreateIndexCommand.ts +0 -94
- package/commands/CreateObjectCommand.ts +0 -97
- package/commands/CreateSchemaCommand.ts +0 -114
- package/commands/CreateTypedLinkFacetCommand.ts +0 -94
- package/commands/DeleteDirectoryCommand.ts +0 -96
- package/commands/DeleteFacetCommand.ts +0 -96
- package/commands/DeleteObjectCommand.ts +0 -95
- package/commands/DeleteSchemaCommand.ts +0 -94
- package/commands/DeleteTypedLinkFacetCommand.ts +0 -94
- package/commands/DetachFromIndexCommand.ts +0 -94
- package/commands/DetachObjectCommand.ts +0 -95
- package/commands/DetachPolicyCommand.ts +0 -94
- package/commands/DetachTypedLinkCommand.ts +0 -94
- package/commands/DisableDirectoryCommand.ts +0 -95
- package/commands/EnableDirectoryCommand.ts +0 -95
- package/commands/GetAppliedSchemaVersionCommand.ts +0 -94
- package/commands/GetDirectoryCommand.ts +0 -94
- package/commands/GetFacetCommand.ts +0 -95
- package/commands/GetLinkAttributesCommand.ts +0 -94
- package/commands/GetObjectAttributesCommand.ts +0 -94
- package/commands/GetObjectInformationCommand.ts +0 -94
- package/commands/GetSchemaAsJsonCommand.ts +0 -94
- package/commands/GetTypedLinkFacetInformationCommand.ts +0 -99
- package/commands/ListAppliedSchemaArnsCommand.ts +0 -94
- package/commands/ListAttachedIndicesCommand.ts +0 -94
- package/commands/ListDevelopmentSchemaArnsCommand.ts +0 -98
- package/commands/ListDirectoriesCommand.ts +0 -94
- package/commands/ListFacetAttributesCommand.ts +0 -94
- package/commands/ListFacetNamesCommand.ts +0 -94
- package/commands/ListIncomingTypedLinksCommand.ts +0 -96
- package/commands/ListIndexCommand.ts +0 -94
- package/commands/ListManagedSchemaArnsCommand.ts +0 -94
- package/commands/ListObjectAttributesCommand.ts +0 -95
- package/commands/ListObjectChildrenCommand.ts +0 -95
- package/commands/ListObjectParentPathsCommand.ts +0 -101
- package/commands/ListObjectParentsCommand.ts +0 -95
- package/commands/ListObjectPoliciesCommand.ts +0 -94
- package/commands/ListOutgoingTypedLinksCommand.ts +0 -96
- package/commands/ListPolicyAttachmentsCommand.ts +0 -94
- package/commands/ListPublishedSchemaArnsCommand.ts +0 -94
- package/commands/ListTagsForResourceCommand.ts +0 -96
- package/commands/ListTypedLinkFacetAttributesCommand.ts +0 -99
- package/commands/ListTypedLinkFacetNamesCommand.ts +0 -95
- package/commands/LookupPolicyCommand.ts +0 -99
- package/commands/PublishSchemaCommand.ts +0 -94
- package/commands/PutSchemaFromJsonCommand.ts +0 -94
- package/commands/RemoveFacetFromObjectCommand.ts +0 -94
- package/commands/TagResourceCommand.ts +0 -94
- package/commands/UntagResourceCommand.ts +0 -94
- package/commands/UpdateFacetCommand.ts +0 -105
- package/commands/UpdateLinkAttributesCommand.ts +0 -94
- package/commands/UpdateObjectAttributesCommand.ts +0 -94
- package/commands/UpdateSchemaCommand.ts +0 -95
- package/commands/UpdateTypedLinkFacetCommand.ts +0 -94
- package/commands/UpgradeAppliedSchemaCommand.ts +0 -94
- package/commands/UpgradePublishedSchemaCommand.ts +0 -94
- package/dist/cjs/CloudDirectory.js +0 -1006
- package/dist/cjs/CloudDirectory.js.map +0 -1
- package/dist/cjs/CloudDirectoryClient.js +0 -49
- package/dist/cjs/CloudDirectoryClient.js.map +0 -1
- package/dist/cjs/commands/AddFacetToObjectCommand.js +0 -61
- package/dist/cjs/commands/AddFacetToObjectCommand.js.map +0 -1
- package/dist/cjs/commands/ApplySchemaCommand.js +0 -62
- package/dist/cjs/commands/ApplySchemaCommand.js.map +0 -1
- package/dist/cjs/commands/AttachObjectCommand.js +0 -71
- package/dist/cjs/commands/AttachObjectCommand.js.map +0 -1
- package/dist/cjs/commands/AttachPolicyCommand.js +0 -62
- package/dist/cjs/commands/AttachPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/AttachToIndexCommand.js +0 -61
- package/dist/cjs/commands/AttachToIndexCommand.js.map +0 -1
- package/dist/cjs/commands/AttachTypedLinkCommand.js +0 -61
- package/dist/cjs/commands/AttachTypedLinkCommand.js.map +0 -1
- package/dist/cjs/commands/BatchReadCommand.js +0 -61
- package/dist/cjs/commands/BatchReadCommand.js.map +0 -1
- package/dist/cjs/commands/BatchWriteCommand.js +0 -62
- package/dist/cjs/commands/BatchWriteCommand.js.map +0 -1
- package/dist/cjs/commands/CreateDirectoryCommand.js +0 -64
- package/dist/cjs/commands/CreateDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/CreateFacetCommand.js +0 -62
- package/dist/cjs/commands/CreateFacetCommand.js.map +0 -1
- package/dist/cjs/commands/CreateIndexCommand.js +0 -61
- package/dist/cjs/commands/CreateIndexCommand.js.map +0 -1
- package/dist/cjs/commands/CreateObjectCommand.js +0 -64
- package/dist/cjs/commands/CreateObjectCommand.js.map +0 -1
- package/dist/cjs/commands/CreateSchemaCommand.js +0 -81
- package/dist/cjs/commands/CreateSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/CreateTypedLinkFacetCommand.js +0 -61
- package/dist/cjs/commands/CreateTypedLinkFacetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteDirectoryCommand.js +0 -63
- package/dist/cjs/commands/DeleteDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteFacetCommand.js +0 -63
- package/dist/cjs/commands/DeleteFacetCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteObjectCommand.js +0 -62
- package/dist/cjs/commands/DeleteObjectCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteSchemaCommand.js +0 -61
- package/dist/cjs/commands/DeleteSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js +0 -61
- package/dist/cjs/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
- package/dist/cjs/commands/DetachFromIndexCommand.js +0 -61
- package/dist/cjs/commands/DetachFromIndexCommand.js.map +0 -1
- package/dist/cjs/commands/DetachObjectCommand.js +0 -62
- package/dist/cjs/commands/DetachObjectCommand.js.map +0 -1
- package/dist/cjs/commands/DetachPolicyCommand.js +0 -61
- package/dist/cjs/commands/DetachPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/DetachTypedLinkCommand.js +0 -61
- package/dist/cjs/commands/DetachTypedLinkCommand.js.map +0 -1
- package/dist/cjs/commands/DisableDirectoryCommand.js +0 -62
- package/dist/cjs/commands/DisableDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/EnableDirectoryCommand.js +0 -62
- package/dist/cjs/commands/EnableDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js +0 -61
- package/dist/cjs/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
- package/dist/cjs/commands/GetDirectoryCommand.js +0 -61
- package/dist/cjs/commands/GetDirectoryCommand.js.map +0 -1
- package/dist/cjs/commands/GetFacetCommand.js +0 -62
- package/dist/cjs/commands/GetFacetCommand.js.map +0 -1
- package/dist/cjs/commands/GetLinkAttributesCommand.js +0 -61
- package/dist/cjs/commands/GetLinkAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetObjectAttributesCommand.js +0 -61
- package/dist/cjs/commands/GetObjectAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/GetObjectInformationCommand.js +0 -61
- package/dist/cjs/commands/GetObjectInformationCommand.js.map +0 -1
- package/dist/cjs/commands/GetSchemaAsJsonCommand.js +0 -61
- package/dist/cjs/commands/GetSchemaAsJsonCommand.js.map +0 -1
- package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js +0 -61
- package/dist/cjs/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
- package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js +0 -61
- package/dist/cjs/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListAttachedIndicesCommand.js +0 -61
- package/dist/cjs/commands/ListAttachedIndicesCommand.js.map +0 -1
- package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js +0 -62
- package/dist/cjs/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListDirectoriesCommand.js +0 -61
- package/dist/cjs/commands/ListDirectoriesCommand.js.map +0 -1
- package/dist/cjs/commands/ListFacetAttributesCommand.js +0 -61
- package/dist/cjs/commands/ListFacetAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/ListFacetNamesCommand.js +0 -61
- package/dist/cjs/commands/ListFacetNamesCommand.js.map +0 -1
- package/dist/cjs/commands/ListIncomingTypedLinksCommand.js +0 -63
- package/dist/cjs/commands/ListIncomingTypedLinksCommand.js.map +0 -1
- package/dist/cjs/commands/ListIndexCommand.js +0 -61
- package/dist/cjs/commands/ListIndexCommand.js.map +0 -1
- package/dist/cjs/commands/ListManagedSchemaArnsCommand.js +0 -61
- package/dist/cjs/commands/ListManagedSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectAttributesCommand.js +0 -62
- package/dist/cjs/commands/ListObjectAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectChildrenCommand.js +0 -62
- package/dist/cjs/commands/ListObjectChildrenCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectParentPathsCommand.js +0 -68
- package/dist/cjs/commands/ListObjectParentPathsCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectParentsCommand.js +0 -62
- package/dist/cjs/commands/ListObjectParentsCommand.js.map +0 -1
- package/dist/cjs/commands/ListObjectPoliciesCommand.js +0 -61
- package/dist/cjs/commands/ListObjectPoliciesCommand.js.map +0 -1
- package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js +0 -63
- package/dist/cjs/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
- package/dist/cjs/commands/ListPolicyAttachmentsCommand.js +0 -61
- package/dist/cjs/commands/ListPolicyAttachmentsCommand.js.map +0 -1
- package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js +0 -61
- package/dist/cjs/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
- package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -63
- package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js +0 -61
- package/dist/cjs/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js +0 -62
- package/dist/cjs/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
- package/dist/cjs/commands/LookupPolicyCommand.js +0 -66
- package/dist/cjs/commands/LookupPolicyCommand.js.map +0 -1
- package/dist/cjs/commands/PublishSchemaCommand.js +0 -61
- package/dist/cjs/commands/PublishSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/PutSchemaFromJsonCommand.js +0 -61
- package/dist/cjs/commands/PutSchemaFromJsonCommand.js.map +0 -1
- package/dist/cjs/commands/RemoveFacetFromObjectCommand.js +0 -61
- package/dist/cjs/commands/RemoveFacetFromObjectCommand.js.map +0 -1
- package/dist/cjs/commands/TagResourceCommand.js +0 -61
- package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UntagResourceCommand.js +0 -61
- package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateFacetCommand.js +0 -72
- package/dist/cjs/commands/UpdateFacetCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateLinkAttributesCommand.js +0 -61
- package/dist/cjs/commands/UpdateLinkAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateObjectAttributesCommand.js +0 -61
- package/dist/cjs/commands/UpdateObjectAttributesCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateSchemaCommand.js +0 -62
- package/dist/cjs/commands/UpdateSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js +0 -61
- package/dist/cjs/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
- package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js +0 -61
- package/dist/cjs/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
- package/dist/cjs/commands/UpgradePublishedSchemaCommand.js +0 -61
- package/dist/cjs/commands/UpgradePublishedSchemaCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -57
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -93
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -2628
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -91
- package/dist/cjs/pagination/Interfaces.js +0 -3
- package/dist/cjs/pagination/Interfaces.js.map +0 -1
- package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListAttachedIndicesPaginator.js +0 -46
- package/dist/cjs/pagination/ListAttachedIndicesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListDirectoriesPaginator.js +0 -46
- package/dist/cjs/pagination/ListDirectoriesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListFacetAttributesPaginator.js +0 -46
- package/dist/cjs/pagination/ListFacetAttributesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListFacetNamesPaginator.js +0 -46
- package/dist/cjs/pagination/ListFacetNamesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListIndexPaginator.js +0 -46
- package/dist/cjs/pagination/ListIndexPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectAttributesPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectAttributesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectChildrenPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectChildrenPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectParentPathsPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectParentPathsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectParentsPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectParentsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListObjectPoliciesPaginator.js +0 -46
- package/dist/cjs/pagination/ListObjectPoliciesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js +0 -46
- package/dist/cjs/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js +0 -46
- package/dist/cjs/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -46
- package/dist/cjs/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js +0 -46
- package/dist/cjs/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
- package/dist/cjs/pagination/LookupPolicyPaginator.js +0 -46
- package/dist/cjs/pagination/LookupPolicyPaginator.js.map +0 -1
- package/dist/cjs/protocols/Aws_restJson1.js +0 -11265
- package/dist/cjs/protocols/Aws_restJson1.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/es/CloudDirectory.js +0 -1009
- package/dist/es/CloudDirectory.js.map +0 -1
- package/dist/es/CloudDirectoryClient.js +0 -51
- package/dist/es/CloudDirectoryClient.js.map +0 -1
- package/dist/es/commands/AddFacetToObjectCommand.js +0 -65
- package/dist/es/commands/AddFacetToObjectCommand.js.map +0 -1
- package/dist/es/commands/ApplySchemaCommand.js +0 -66
- package/dist/es/commands/ApplySchemaCommand.js.map +0 -1
- package/dist/es/commands/AttachObjectCommand.js +0 -75
- package/dist/es/commands/AttachObjectCommand.js.map +0 -1
- package/dist/es/commands/AttachPolicyCommand.js +0 -66
- package/dist/es/commands/AttachPolicyCommand.js.map +0 -1
- package/dist/es/commands/AttachToIndexCommand.js +0 -65
- package/dist/es/commands/AttachToIndexCommand.js.map +0 -1
- package/dist/es/commands/AttachTypedLinkCommand.js +0 -65
- package/dist/es/commands/AttachTypedLinkCommand.js.map +0 -1
- package/dist/es/commands/BatchReadCommand.js +0 -65
- package/dist/es/commands/BatchReadCommand.js.map +0 -1
- package/dist/es/commands/BatchWriteCommand.js +0 -66
- package/dist/es/commands/BatchWriteCommand.js.map +0 -1
- package/dist/es/commands/CreateDirectoryCommand.js +0 -68
- package/dist/es/commands/CreateDirectoryCommand.js.map +0 -1
- package/dist/es/commands/CreateFacetCommand.js +0 -66
- package/dist/es/commands/CreateFacetCommand.js.map +0 -1
- package/dist/es/commands/CreateIndexCommand.js +0 -65
- package/dist/es/commands/CreateIndexCommand.js.map +0 -1
- package/dist/es/commands/CreateObjectCommand.js +0 -68
- package/dist/es/commands/CreateObjectCommand.js.map +0 -1
- package/dist/es/commands/CreateSchemaCommand.js +0 -85
- package/dist/es/commands/CreateSchemaCommand.js.map +0 -1
- package/dist/es/commands/CreateTypedLinkFacetCommand.js +0 -65
- package/dist/es/commands/CreateTypedLinkFacetCommand.js.map +0 -1
- package/dist/es/commands/DeleteDirectoryCommand.js +0 -67
- package/dist/es/commands/DeleteDirectoryCommand.js.map +0 -1
- package/dist/es/commands/DeleteFacetCommand.js +0 -67
- package/dist/es/commands/DeleteFacetCommand.js.map +0 -1
- package/dist/es/commands/DeleteObjectCommand.js +0 -66
- package/dist/es/commands/DeleteObjectCommand.js.map +0 -1
- package/dist/es/commands/DeleteSchemaCommand.js +0 -65
- package/dist/es/commands/DeleteSchemaCommand.js.map +0 -1
- package/dist/es/commands/DeleteTypedLinkFacetCommand.js +0 -65
- package/dist/es/commands/DeleteTypedLinkFacetCommand.js.map +0 -1
- package/dist/es/commands/DetachFromIndexCommand.js +0 -65
- package/dist/es/commands/DetachFromIndexCommand.js.map +0 -1
- package/dist/es/commands/DetachObjectCommand.js +0 -66
- package/dist/es/commands/DetachObjectCommand.js.map +0 -1
- package/dist/es/commands/DetachPolicyCommand.js +0 -65
- package/dist/es/commands/DetachPolicyCommand.js.map +0 -1
- package/dist/es/commands/DetachTypedLinkCommand.js +0 -65
- package/dist/es/commands/DetachTypedLinkCommand.js.map +0 -1
- package/dist/es/commands/DisableDirectoryCommand.js +0 -66
- package/dist/es/commands/DisableDirectoryCommand.js.map +0 -1
- package/dist/es/commands/EnableDirectoryCommand.js +0 -66
- package/dist/es/commands/EnableDirectoryCommand.js.map +0 -1
- package/dist/es/commands/GetAppliedSchemaVersionCommand.js +0 -65
- package/dist/es/commands/GetAppliedSchemaVersionCommand.js.map +0 -1
- package/dist/es/commands/GetDirectoryCommand.js +0 -65
- package/dist/es/commands/GetDirectoryCommand.js.map +0 -1
- package/dist/es/commands/GetFacetCommand.js +0 -66
- package/dist/es/commands/GetFacetCommand.js.map +0 -1
- package/dist/es/commands/GetLinkAttributesCommand.js +0 -65
- package/dist/es/commands/GetLinkAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetObjectAttributesCommand.js +0 -65
- package/dist/es/commands/GetObjectAttributesCommand.js.map +0 -1
- package/dist/es/commands/GetObjectInformationCommand.js +0 -65
- package/dist/es/commands/GetObjectInformationCommand.js.map +0 -1
- package/dist/es/commands/GetSchemaAsJsonCommand.js +0 -65
- package/dist/es/commands/GetSchemaAsJsonCommand.js.map +0 -1
- package/dist/es/commands/GetTypedLinkFacetInformationCommand.js +0 -65
- package/dist/es/commands/GetTypedLinkFacetInformationCommand.js.map +0 -1
- package/dist/es/commands/ListAppliedSchemaArnsCommand.js +0 -65
- package/dist/es/commands/ListAppliedSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListAttachedIndicesCommand.js +0 -65
- package/dist/es/commands/ListAttachedIndicesCommand.js.map +0 -1
- package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js +0 -66
- package/dist/es/commands/ListDevelopmentSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListDirectoriesCommand.js +0 -65
- package/dist/es/commands/ListDirectoriesCommand.js.map +0 -1
- package/dist/es/commands/ListFacetAttributesCommand.js +0 -65
- package/dist/es/commands/ListFacetAttributesCommand.js.map +0 -1
- package/dist/es/commands/ListFacetNamesCommand.js +0 -65
- package/dist/es/commands/ListFacetNamesCommand.js.map +0 -1
- package/dist/es/commands/ListIncomingTypedLinksCommand.js +0 -67
- package/dist/es/commands/ListIncomingTypedLinksCommand.js.map +0 -1
- package/dist/es/commands/ListIndexCommand.js +0 -65
- package/dist/es/commands/ListIndexCommand.js.map +0 -1
- package/dist/es/commands/ListManagedSchemaArnsCommand.js +0 -65
- package/dist/es/commands/ListManagedSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListObjectAttributesCommand.js +0 -66
- package/dist/es/commands/ListObjectAttributesCommand.js.map +0 -1
- package/dist/es/commands/ListObjectChildrenCommand.js +0 -66
- package/dist/es/commands/ListObjectChildrenCommand.js.map +0 -1
- package/dist/es/commands/ListObjectParentPathsCommand.js +0 -72
- package/dist/es/commands/ListObjectParentPathsCommand.js.map +0 -1
- package/dist/es/commands/ListObjectParentsCommand.js +0 -66
- package/dist/es/commands/ListObjectParentsCommand.js.map +0 -1
- package/dist/es/commands/ListObjectPoliciesCommand.js +0 -65
- package/dist/es/commands/ListObjectPoliciesCommand.js.map +0 -1
- package/dist/es/commands/ListOutgoingTypedLinksCommand.js +0 -67
- package/dist/es/commands/ListOutgoingTypedLinksCommand.js.map +0 -1
- package/dist/es/commands/ListPolicyAttachmentsCommand.js +0 -65
- package/dist/es/commands/ListPolicyAttachmentsCommand.js.map +0 -1
- package/dist/es/commands/ListPublishedSchemaArnsCommand.js +0 -65
- package/dist/es/commands/ListPublishedSchemaArnsCommand.js.map +0 -1
- package/dist/es/commands/ListTagsForResourceCommand.js +0 -67
- package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js +0 -65
- package/dist/es/commands/ListTypedLinkFacetAttributesCommand.js.map +0 -1
- package/dist/es/commands/ListTypedLinkFacetNamesCommand.js +0 -66
- package/dist/es/commands/ListTypedLinkFacetNamesCommand.js.map +0 -1
- package/dist/es/commands/LookupPolicyCommand.js +0 -70
- package/dist/es/commands/LookupPolicyCommand.js.map +0 -1
- package/dist/es/commands/PublishSchemaCommand.js +0 -65
- package/dist/es/commands/PublishSchemaCommand.js.map +0 -1
- package/dist/es/commands/PutSchemaFromJsonCommand.js +0 -65
- package/dist/es/commands/PutSchemaFromJsonCommand.js.map +0 -1
- package/dist/es/commands/RemoveFacetFromObjectCommand.js +0 -65
- package/dist/es/commands/RemoveFacetFromObjectCommand.js.map +0 -1
- package/dist/es/commands/TagResourceCommand.js +0 -65
- package/dist/es/commands/TagResourceCommand.js.map +0 -1
- package/dist/es/commands/UntagResourceCommand.js +0 -65
- package/dist/es/commands/UntagResourceCommand.js.map +0 -1
- package/dist/es/commands/UpdateFacetCommand.js +0 -76
- package/dist/es/commands/UpdateFacetCommand.js.map +0 -1
- package/dist/es/commands/UpdateLinkAttributesCommand.js +0 -65
- package/dist/es/commands/UpdateLinkAttributesCommand.js.map +0 -1
- package/dist/es/commands/UpdateObjectAttributesCommand.js +0 -65
- package/dist/es/commands/UpdateObjectAttributesCommand.js.map +0 -1
- package/dist/es/commands/UpdateSchemaCommand.js +0 -66
- package/dist/es/commands/UpdateSchemaCommand.js.map +0 -1
- package/dist/es/commands/UpdateTypedLinkFacetCommand.js +0 -65
- package/dist/es/commands/UpdateTypedLinkFacetCommand.js.map +0 -1
- package/dist/es/commands/UpgradeAppliedSchemaCommand.js +0 -65
- package/dist/es/commands/UpgradeAppliedSchemaCommand.js.map +0 -1
- package/dist/es/commands/UpgradePublishedSchemaCommand.js +0 -65
- package/dist/es/commands/UpgradePublishedSchemaCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -53
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -90
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -2036
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -91
- package/dist/es/pagination/Interfaces.js +0 -2
- package/dist/es/pagination/Interfaces.js.map +0 -1
- package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListAppliedSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListAttachedIndicesPaginator.js +0 -87
- package/dist/es/pagination/ListAttachedIndicesPaginator.js.map +0 -1
- package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListDevelopmentSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListDirectoriesPaginator.js +0 -87
- package/dist/es/pagination/ListDirectoriesPaginator.js.map +0 -1
- package/dist/es/pagination/ListFacetAttributesPaginator.js +0 -87
- package/dist/es/pagination/ListFacetAttributesPaginator.js.map +0 -1
- package/dist/es/pagination/ListFacetNamesPaginator.js +0 -87
- package/dist/es/pagination/ListFacetNamesPaginator.js.map +0 -1
- package/dist/es/pagination/ListIndexPaginator.js +0 -87
- package/dist/es/pagination/ListIndexPaginator.js.map +0 -1
- package/dist/es/pagination/ListManagedSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListManagedSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectAttributesPaginator.js +0 -87
- package/dist/es/pagination/ListObjectAttributesPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectChildrenPaginator.js +0 -87
- package/dist/es/pagination/ListObjectChildrenPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectParentPathsPaginator.js +0 -87
- package/dist/es/pagination/ListObjectParentPathsPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectParentsPaginator.js +0 -87
- package/dist/es/pagination/ListObjectParentsPaginator.js.map +0 -1
- package/dist/es/pagination/ListObjectPoliciesPaginator.js +0 -87
- package/dist/es/pagination/ListObjectPoliciesPaginator.js.map +0 -1
- package/dist/es/pagination/ListPolicyAttachmentsPaginator.js +0 -87
- package/dist/es/pagination/ListPolicyAttachmentsPaginator.js.map +0 -1
- package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js +0 -87
- package/dist/es/pagination/ListPublishedSchemaArnsPaginator.js.map +0 -1
- package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -87
- package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js +0 -87
- package/dist/es/pagination/ListTypedLinkFacetAttributesPaginator.js.map +0 -1
- package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js +0 -87
- package/dist/es/pagination/ListTypedLinkFacetNamesPaginator.js.map +0 -1
- package/dist/es/pagination/LookupPolicyPaginator.js +0 -87
- package/dist/es/pagination/LookupPolicyPaginator.js.map +0 -1
- package/dist/es/protocols/Aws_restJson1.js +0 -11989
- package/dist/es/protocols/Aws_restJson1.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -20
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -25
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -12
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -17
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/types/CloudDirectory.d.ts +0 -558
- package/dist/types/CloudDirectoryClient.d.ts +0 -203
- package/dist/types/commands/AddFacetToObjectCommand.d.ts +0 -35
- package/dist/types/commands/ApplySchemaCommand.d.ts +0 -36
- package/dist/types/commands/AttachObjectCommand.d.ts +0 -45
- package/dist/types/commands/AttachPolicyCommand.d.ts +0 -36
- package/dist/types/commands/AttachToIndexCommand.d.ts +0 -35
- package/dist/types/commands/AttachTypedLinkCommand.d.ts +0 -35
- package/dist/types/commands/BatchReadCommand.d.ts +0 -35
- package/dist/types/commands/BatchWriteCommand.d.ts +0 -36
- package/dist/types/commands/CreateDirectoryCommand.d.ts +0 -38
- package/dist/types/commands/CreateFacetCommand.d.ts +0 -36
- package/dist/types/commands/CreateIndexCommand.d.ts +0 -35
- package/dist/types/commands/CreateObjectCommand.d.ts +0 -38
- package/dist/types/commands/CreateSchemaCommand.d.ts +0 -55
- package/dist/types/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/commands/DeleteDirectoryCommand.d.ts +0 -37
- package/dist/types/commands/DeleteFacetCommand.d.ts +0 -37
- package/dist/types/commands/DeleteObjectCommand.d.ts +0 -36
- package/dist/types/commands/DeleteSchemaCommand.d.ts +0 -35
- package/dist/types/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/commands/DetachFromIndexCommand.d.ts +0 -35
- package/dist/types/commands/DetachObjectCommand.d.ts +0 -36
- package/dist/types/commands/DetachPolicyCommand.d.ts +0 -35
- package/dist/types/commands/DetachTypedLinkCommand.d.ts +0 -35
- package/dist/types/commands/DisableDirectoryCommand.d.ts +0 -36
- package/dist/types/commands/EnableDirectoryCommand.d.ts +0 -36
- package/dist/types/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
- package/dist/types/commands/GetDirectoryCommand.d.ts +0 -35
- package/dist/types/commands/GetFacetCommand.d.ts +0 -36
- package/dist/types/commands/GetLinkAttributesCommand.d.ts +0 -35
- package/dist/types/commands/GetObjectAttributesCommand.d.ts +0 -35
- package/dist/types/commands/GetObjectInformationCommand.d.ts +0 -35
- package/dist/types/commands/GetSchemaAsJsonCommand.d.ts +0 -35
- package/dist/types/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
- package/dist/types/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/commands/ListAttachedIndicesCommand.d.ts +0 -35
- package/dist/types/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
- package/dist/types/commands/ListDirectoriesCommand.d.ts +0 -35
- package/dist/types/commands/ListFacetAttributesCommand.d.ts +0 -35
- package/dist/types/commands/ListFacetNamesCommand.d.ts +0 -35
- package/dist/types/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
- package/dist/types/commands/ListIndexCommand.d.ts +0 -35
- package/dist/types/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/commands/ListObjectAttributesCommand.d.ts +0 -36
- package/dist/types/commands/ListObjectChildrenCommand.d.ts +0 -36
- package/dist/types/commands/ListObjectParentPathsCommand.d.ts +0 -42
- package/dist/types/commands/ListObjectParentsCommand.d.ts +0 -36
- package/dist/types/commands/ListObjectPoliciesCommand.d.ts +0 -35
- package/dist/types/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
- package/dist/types/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
- package/dist/types/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -37
- package/dist/types/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
- package/dist/types/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
- package/dist/types/commands/LookupPolicyCommand.d.ts +0 -40
- package/dist/types/commands/PublishSchemaCommand.d.ts +0 -35
- package/dist/types/commands/PutSchemaFromJsonCommand.d.ts +0 -35
- package/dist/types/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
- package/dist/types/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UpdateFacetCommand.d.ts +0 -46
- package/dist/types/commands/UpdateLinkAttributesCommand.d.ts +0 -35
- package/dist/types/commands/UpdateObjectAttributesCommand.d.ts +0 -35
- package/dist/types/commands/UpdateSchemaCommand.d.ts +0 -36
- package/dist/types/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
- package/dist/types/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
- package/dist/types/pagination/Interfaces.d.ts +0 -6
- package/dist/types/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListDirectoriesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListFacetNamesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListIndexPaginator.d.ts +0 -4
- package/dist/types/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectAttributesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectChildrenPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectParentsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
- package/dist/types/pagination/LookupPolicyPaginator.d.ts +0 -4
- package/dist/types/protocols/Aws_restJson1.d.ts +0 -200
- package/dist/types/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/runtimeConfig.d.ts +0 -36
- package/dist/types/runtimeConfig.native.d.ts +0 -35
- package/dist/types/ts3.4/CloudDirectory.d.ts +0 -558
- package/dist/types/ts3.4/CloudDirectoryClient.d.ts +0 -203
- package/dist/types/ts3.4/commands/AddFacetToObjectCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ApplySchemaCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/AttachObjectCommand.d.ts +0 -45
- package/dist/types/ts3.4/commands/AttachPolicyCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/AttachToIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/AttachTypedLinkCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/BatchReadCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/BatchWriteCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/CreateDirectoryCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateFacetCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/CreateIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/CreateObjectCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateSchemaCommand.d.ts +0 -55
- package/dist/types/ts3.4/commands/CreateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteDirectoryCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteFacetCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteObjectCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DeleteSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DetachFromIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DetachObjectCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/DetachPolicyCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DetachTypedLinkCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DisableDirectoryCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/EnableDirectoryCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetAppliedSchemaVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetDirectoryCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetFacetCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetLinkAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetObjectAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetObjectInformationCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetSchemaAsJsonCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetTypedLinkFacetInformationCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListAppliedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListAttachedIndicesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListDevelopmentSchemaArnsCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListDirectoriesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListFacetAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListFacetNamesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListIncomingTypedLinksCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListIndexCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListManagedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListObjectAttributesCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListObjectChildrenCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListObjectParentPathsCommand.d.ts +0 -42
- package/dist/types/ts3.4/commands/ListObjectParentsCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/ListObjectPoliciesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListOutgoingTypedLinksCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListPolicyAttachmentsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListPublishedSchemaArnsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListTypedLinkFacetAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListTypedLinkFacetNamesCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/LookupPolicyCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/PublishSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/PutSchemaFromJsonCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/RemoveFacetFromObjectCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateFacetCommand.d.ts +0 -46
- package/dist/types/ts3.4/commands/UpdateLinkAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateObjectAttributesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateSchemaCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/UpdateTypedLinkFacetCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpgradeAppliedSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpgradePublishedSchemaCommand.d.ts +0 -35
- package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist/types/ts3.4/pagination/ListAppliedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListAttachedIndicesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListDevelopmentSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListDirectoriesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListFacetNamesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListIndexPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListManagedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectAttributesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectChildrenPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectParentPathsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectParentsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListObjectPoliciesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListPolicyAttachmentsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListPublishedSchemaArnsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTypedLinkFacetAttributesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTypedLinkFacetNamesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/LookupPolicyPaginator.d.ts +0 -4
- package/dist/types/ts3.4/protocols/Aws_restJson1.d.ts +0 -200
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
- package/endpoints.ts +0 -57
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -6731
- package/pagination/Interfaces.ts +0 -7
- package/pagination/ListAppliedSchemaArnsPaginator.ts +0 -58
- package/pagination/ListAttachedIndicesPaginator.ts +0 -58
- package/pagination/ListDevelopmentSchemaArnsPaginator.ts +0 -58
- package/pagination/ListDirectoriesPaginator.ts +0 -58
- package/pagination/ListFacetAttributesPaginator.ts +0 -58
- package/pagination/ListFacetNamesPaginator.ts +0 -58
- package/pagination/ListIndexPaginator.ts +0 -54
- package/pagination/ListManagedSchemaArnsPaginator.ts +0 -58
- package/pagination/ListObjectAttributesPaginator.ts +0 -58
- package/pagination/ListObjectChildrenPaginator.ts +0 -58
- package/pagination/ListObjectParentPathsPaginator.ts +0 -58
- package/pagination/ListObjectParentsPaginator.ts +0 -58
- package/pagination/ListObjectPoliciesPaginator.ts +0 -58
- package/pagination/ListPolicyAttachmentsPaginator.ts +0 -58
- package/pagination/ListPublishedSchemaArnsPaginator.ts +0 -58
- package/pagination/ListTagsForResourcePaginator.ts +0 -58
- package/pagination/ListTypedLinkFacetAttributesPaginator.ts +0 -58
- package/pagination/ListTypedLinkFacetNamesPaginator.ts +0 -58
- package/pagination/LookupPolicyPaginator.ts +0 -58
- package/protocols/Aws_restJson1.ts +0 -12886
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -12
- package/tsconfig.json +0 -32
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DetachFromIndexCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Detaches the specified object from the specified index.</p>
|
|
10
|
+
* @example
|
|
11
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
+
* ```javascript
|
|
13
|
+
* import { CloudDirectoryClient, DetachFromIndexCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
14
|
+
* // const { CloudDirectoryClient, DetachFromIndexCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
15
|
+
* const client = new CloudDirectoryClient(config);
|
|
16
|
+
* const command = new DetachFromIndexCommand(input);
|
|
17
|
+
* const response = await client.send(command);
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @see {@link DetachFromIndexCommandInput} for command's `input` shape.
|
|
21
|
+
* @see {@link DetachFromIndexCommandOutput} for command's `response` shape.
|
|
22
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
class DetachFromIndexCommand extends smithy_client_1.Command {
|
|
26
|
+
// Start section: command_properties
|
|
27
|
+
// End section: command_properties
|
|
28
|
+
constructor(input) {
|
|
29
|
+
// Start section: command_constructor
|
|
30
|
+
super();
|
|
31
|
+
this.input = input;
|
|
32
|
+
// End section: command_constructor
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
+
const { logger } = configuration;
|
|
41
|
+
const clientName = "CloudDirectoryClient";
|
|
42
|
+
const commandName = "DetachFromIndexCommand";
|
|
43
|
+
const handlerExecutionContext = {
|
|
44
|
+
logger,
|
|
45
|
+
clientName,
|
|
46
|
+
commandName,
|
|
47
|
+
inputFilterSensitiveLog: models_0_1.DetachFromIndexRequest.filterSensitiveLog,
|
|
48
|
+
outputFilterSensitiveLog: models_0_1.DetachFromIndexResponse.filterSensitiveLog,
|
|
49
|
+
};
|
|
50
|
+
const { requestHandler } = configuration;
|
|
51
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
+
}
|
|
53
|
+
serialize(input, context) {
|
|
54
|
+
return Aws_restJson1_1.serializeAws_restJson1DetachFromIndexCommand(input, context);
|
|
55
|
+
}
|
|
56
|
+
deserialize(output, context) {
|
|
57
|
+
return Aws_restJson1_1.deserializeAws_restJson1DetachFromIndexCommand(output, context);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.DetachFromIndexCommand = DetachFromIndexCommand;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DetachObjectCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Detaches a given object from the parent object. The object that is to be detached from the
|
|
10
|
+
* parent is specified by the link name.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { CloudDirectoryClient, DetachObjectCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
15
|
+
* // const { CloudDirectoryClient, DetachObjectCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
16
|
+
* const client = new CloudDirectoryClient(config);
|
|
17
|
+
* const command = new DetachObjectCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DetachObjectCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DetachObjectCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
class DetachObjectCommand extends smithy_client_1.Command {
|
|
27
|
+
// Start section: command_properties
|
|
28
|
+
// End section: command_properties
|
|
29
|
+
constructor(input) {
|
|
30
|
+
// Start section: command_constructor
|
|
31
|
+
super();
|
|
32
|
+
this.input = input;
|
|
33
|
+
// End section: command_constructor
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
39
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
40
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
41
|
+
const { logger } = configuration;
|
|
42
|
+
const clientName = "CloudDirectoryClient";
|
|
43
|
+
const commandName = "DetachObjectCommand";
|
|
44
|
+
const handlerExecutionContext = {
|
|
45
|
+
logger,
|
|
46
|
+
clientName,
|
|
47
|
+
commandName,
|
|
48
|
+
inputFilterSensitiveLog: models_0_1.DetachObjectRequest.filterSensitiveLog,
|
|
49
|
+
outputFilterSensitiveLog: models_0_1.DetachObjectResponse.filterSensitiveLog,
|
|
50
|
+
};
|
|
51
|
+
const { requestHandler } = configuration;
|
|
52
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
53
|
+
}
|
|
54
|
+
serialize(input, context) {
|
|
55
|
+
return Aws_restJson1_1.serializeAws_restJson1DetachObjectCommand(input, context);
|
|
56
|
+
}
|
|
57
|
+
deserialize(output, context) {
|
|
58
|
+
return Aws_restJson1_1.deserializeAws_restJson1DetachObjectCommand(output, context);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.DetachObjectCommand = DetachObjectCommand;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DetachPolicyCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Detaches a policy from an object.</p>
|
|
10
|
+
* @example
|
|
11
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
+
* ```javascript
|
|
13
|
+
* import { CloudDirectoryClient, DetachPolicyCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
14
|
+
* // const { CloudDirectoryClient, DetachPolicyCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
15
|
+
* const client = new CloudDirectoryClient(config);
|
|
16
|
+
* const command = new DetachPolicyCommand(input);
|
|
17
|
+
* const response = await client.send(command);
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @see {@link DetachPolicyCommandInput} for command's `input` shape.
|
|
21
|
+
* @see {@link DetachPolicyCommandOutput} for command's `response` shape.
|
|
22
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
class DetachPolicyCommand extends smithy_client_1.Command {
|
|
26
|
+
// Start section: command_properties
|
|
27
|
+
// End section: command_properties
|
|
28
|
+
constructor(input) {
|
|
29
|
+
// Start section: command_constructor
|
|
30
|
+
super();
|
|
31
|
+
this.input = input;
|
|
32
|
+
// End section: command_constructor
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
+
const { logger } = configuration;
|
|
41
|
+
const clientName = "CloudDirectoryClient";
|
|
42
|
+
const commandName = "DetachPolicyCommand";
|
|
43
|
+
const handlerExecutionContext = {
|
|
44
|
+
logger,
|
|
45
|
+
clientName,
|
|
46
|
+
commandName,
|
|
47
|
+
inputFilterSensitiveLog: models_0_1.DetachPolicyRequest.filterSensitiveLog,
|
|
48
|
+
outputFilterSensitiveLog: models_0_1.DetachPolicyResponse.filterSensitiveLog,
|
|
49
|
+
};
|
|
50
|
+
const { requestHandler } = configuration;
|
|
51
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
+
}
|
|
53
|
+
serialize(input, context) {
|
|
54
|
+
return Aws_restJson1_1.serializeAws_restJson1DetachPolicyCommand(input, context);
|
|
55
|
+
}
|
|
56
|
+
deserialize(output, context) {
|
|
57
|
+
return Aws_restJson1_1.deserializeAws_restJson1DetachPolicyCommand(output, context);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.DetachPolicyCommand = DetachPolicyCommand;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DetachTypedLinkCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Detaches a typed link from a specified source and target object. For more information, see <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink">Typed Links</a>.</p>
|
|
10
|
+
* @example
|
|
11
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
+
* ```javascript
|
|
13
|
+
* import { CloudDirectoryClient, DetachTypedLinkCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
14
|
+
* // const { CloudDirectoryClient, DetachTypedLinkCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
15
|
+
* const client = new CloudDirectoryClient(config);
|
|
16
|
+
* const command = new DetachTypedLinkCommand(input);
|
|
17
|
+
* const response = await client.send(command);
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @see {@link DetachTypedLinkCommandInput} for command's `input` shape.
|
|
21
|
+
* @see {@link DetachTypedLinkCommandOutput} for command's `response` shape.
|
|
22
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
class DetachTypedLinkCommand extends smithy_client_1.Command {
|
|
26
|
+
// Start section: command_properties
|
|
27
|
+
// End section: command_properties
|
|
28
|
+
constructor(input) {
|
|
29
|
+
// Start section: command_constructor
|
|
30
|
+
super();
|
|
31
|
+
this.input = input;
|
|
32
|
+
// End section: command_constructor
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
+
const { logger } = configuration;
|
|
41
|
+
const clientName = "CloudDirectoryClient";
|
|
42
|
+
const commandName = "DetachTypedLinkCommand";
|
|
43
|
+
const handlerExecutionContext = {
|
|
44
|
+
logger,
|
|
45
|
+
clientName,
|
|
46
|
+
commandName,
|
|
47
|
+
inputFilterSensitiveLog: models_0_1.DetachTypedLinkRequest.filterSensitiveLog,
|
|
48
|
+
outputFilterSensitiveLog: (output) => output,
|
|
49
|
+
};
|
|
50
|
+
const { requestHandler } = configuration;
|
|
51
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
+
}
|
|
53
|
+
serialize(input, context) {
|
|
54
|
+
return Aws_restJson1_1.serializeAws_restJson1DetachTypedLinkCommand(input, context);
|
|
55
|
+
}
|
|
56
|
+
deserialize(output, context) {
|
|
57
|
+
return Aws_restJson1_1.deserializeAws_restJson1DetachTypedLinkCommand(output, context);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.DetachTypedLinkCommand = DetachTypedLinkCommand;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DisableDirectoryCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Disables the specified directory. Disabled directories cannot be read or written to.
|
|
10
|
+
* Only enabled directories can be disabled. Disabled directories may be reenabled.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { CloudDirectoryClient, DisableDirectoryCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
15
|
+
* // const { CloudDirectoryClient, DisableDirectoryCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
16
|
+
* const client = new CloudDirectoryClient(config);
|
|
17
|
+
* const command = new DisableDirectoryCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DisableDirectoryCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DisableDirectoryCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
class DisableDirectoryCommand extends smithy_client_1.Command {
|
|
27
|
+
// Start section: command_properties
|
|
28
|
+
// End section: command_properties
|
|
29
|
+
constructor(input) {
|
|
30
|
+
// Start section: command_constructor
|
|
31
|
+
super();
|
|
32
|
+
this.input = input;
|
|
33
|
+
// End section: command_constructor
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
39
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
40
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
41
|
+
const { logger } = configuration;
|
|
42
|
+
const clientName = "CloudDirectoryClient";
|
|
43
|
+
const commandName = "DisableDirectoryCommand";
|
|
44
|
+
const handlerExecutionContext = {
|
|
45
|
+
logger,
|
|
46
|
+
clientName,
|
|
47
|
+
commandName,
|
|
48
|
+
inputFilterSensitiveLog: models_0_1.DisableDirectoryRequest.filterSensitiveLog,
|
|
49
|
+
outputFilterSensitiveLog: models_0_1.DisableDirectoryResponse.filterSensitiveLog,
|
|
50
|
+
};
|
|
51
|
+
const { requestHandler } = configuration;
|
|
52
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
53
|
+
}
|
|
54
|
+
serialize(input, context) {
|
|
55
|
+
return Aws_restJson1_1.serializeAws_restJson1DisableDirectoryCommand(input, context);
|
|
56
|
+
}
|
|
57
|
+
deserialize(output, context) {
|
|
58
|
+
return Aws_restJson1_1.deserializeAws_restJson1DisableDirectoryCommand(output, context);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.DisableDirectoryCommand = DisableDirectoryCommand;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EnableDirectoryCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Enables the specified directory. Only disabled directories can be enabled. Once
|
|
10
|
+
* enabled, the directory can then be read and written to.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { CloudDirectoryClient, EnableDirectoryCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
15
|
+
* // const { CloudDirectoryClient, EnableDirectoryCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
16
|
+
* const client = new CloudDirectoryClient(config);
|
|
17
|
+
* const command = new EnableDirectoryCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link EnableDirectoryCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link EnableDirectoryCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
class EnableDirectoryCommand extends smithy_client_1.Command {
|
|
27
|
+
// Start section: command_properties
|
|
28
|
+
// End section: command_properties
|
|
29
|
+
constructor(input) {
|
|
30
|
+
// Start section: command_constructor
|
|
31
|
+
super();
|
|
32
|
+
this.input = input;
|
|
33
|
+
// End section: command_constructor
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
39
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
40
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
41
|
+
const { logger } = configuration;
|
|
42
|
+
const clientName = "CloudDirectoryClient";
|
|
43
|
+
const commandName = "EnableDirectoryCommand";
|
|
44
|
+
const handlerExecutionContext = {
|
|
45
|
+
logger,
|
|
46
|
+
clientName,
|
|
47
|
+
commandName,
|
|
48
|
+
inputFilterSensitiveLog: models_0_1.EnableDirectoryRequest.filterSensitiveLog,
|
|
49
|
+
outputFilterSensitiveLog: models_0_1.EnableDirectoryResponse.filterSensitiveLog,
|
|
50
|
+
};
|
|
51
|
+
const { requestHandler } = configuration;
|
|
52
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
53
|
+
}
|
|
54
|
+
serialize(input, context) {
|
|
55
|
+
return Aws_restJson1_1.serializeAws_restJson1EnableDirectoryCommand(input, context);
|
|
56
|
+
}
|
|
57
|
+
deserialize(output, context) {
|
|
58
|
+
return Aws_restJson1_1.deserializeAws_restJson1EnableDirectoryCommand(output, context);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.EnableDirectoryCommand = EnableDirectoryCommand;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetAppliedSchemaVersionCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Returns current applied schema version ARN, including the minor version in use.</p>
|
|
10
|
+
* @example
|
|
11
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
+
* ```javascript
|
|
13
|
+
* import { CloudDirectoryClient, GetAppliedSchemaVersionCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
14
|
+
* // const { CloudDirectoryClient, GetAppliedSchemaVersionCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
15
|
+
* const client = new CloudDirectoryClient(config);
|
|
16
|
+
* const command = new GetAppliedSchemaVersionCommand(input);
|
|
17
|
+
* const response = await client.send(command);
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @see {@link GetAppliedSchemaVersionCommandInput} for command's `input` shape.
|
|
21
|
+
* @see {@link GetAppliedSchemaVersionCommandOutput} for command's `response` shape.
|
|
22
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
class GetAppliedSchemaVersionCommand extends smithy_client_1.Command {
|
|
26
|
+
// Start section: command_properties
|
|
27
|
+
// End section: command_properties
|
|
28
|
+
constructor(input) {
|
|
29
|
+
// Start section: command_constructor
|
|
30
|
+
super();
|
|
31
|
+
this.input = input;
|
|
32
|
+
// End section: command_constructor
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
+
const { logger } = configuration;
|
|
41
|
+
const clientName = "CloudDirectoryClient";
|
|
42
|
+
const commandName = "GetAppliedSchemaVersionCommand";
|
|
43
|
+
const handlerExecutionContext = {
|
|
44
|
+
logger,
|
|
45
|
+
clientName,
|
|
46
|
+
commandName,
|
|
47
|
+
inputFilterSensitiveLog: models_0_1.GetAppliedSchemaVersionRequest.filterSensitiveLog,
|
|
48
|
+
outputFilterSensitiveLog: models_0_1.GetAppliedSchemaVersionResponse.filterSensitiveLog,
|
|
49
|
+
};
|
|
50
|
+
const { requestHandler } = configuration;
|
|
51
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
+
}
|
|
53
|
+
serialize(input, context) {
|
|
54
|
+
return Aws_restJson1_1.serializeAws_restJson1GetAppliedSchemaVersionCommand(input, context);
|
|
55
|
+
}
|
|
56
|
+
deserialize(output, context) {
|
|
57
|
+
return Aws_restJson1_1.deserializeAws_restJson1GetAppliedSchemaVersionCommand(output, context);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.GetAppliedSchemaVersionCommand = GetAppliedSchemaVersionCommand;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetDirectoryCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Retrieves metadata about a directory.</p>
|
|
10
|
+
* @example
|
|
11
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
+
* ```javascript
|
|
13
|
+
* import { CloudDirectoryClient, GetDirectoryCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
14
|
+
* // const { CloudDirectoryClient, GetDirectoryCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
15
|
+
* const client = new CloudDirectoryClient(config);
|
|
16
|
+
* const command = new GetDirectoryCommand(input);
|
|
17
|
+
* const response = await client.send(command);
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @see {@link GetDirectoryCommandInput} for command's `input` shape.
|
|
21
|
+
* @see {@link GetDirectoryCommandOutput} for command's `response` shape.
|
|
22
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
class GetDirectoryCommand extends smithy_client_1.Command {
|
|
26
|
+
// Start section: command_properties
|
|
27
|
+
// End section: command_properties
|
|
28
|
+
constructor(input) {
|
|
29
|
+
// Start section: command_constructor
|
|
30
|
+
super();
|
|
31
|
+
this.input = input;
|
|
32
|
+
// End section: command_constructor
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
+
const { logger } = configuration;
|
|
41
|
+
const clientName = "CloudDirectoryClient";
|
|
42
|
+
const commandName = "GetDirectoryCommand";
|
|
43
|
+
const handlerExecutionContext = {
|
|
44
|
+
logger,
|
|
45
|
+
clientName,
|
|
46
|
+
commandName,
|
|
47
|
+
inputFilterSensitiveLog: models_0_1.GetDirectoryRequest.filterSensitiveLog,
|
|
48
|
+
outputFilterSensitiveLog: models_0_1.GetDirectoryResponse.filterSensitiveLog,
|
|
49
|
+
};
|
|
50
|
+
const { requestHandler } = configuration;
|
|
51
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
+
}
|
|
53
|
+
serialize(input, context) {
|
|
54
|
+
return Aws_restJson1_1.serializeAws_restJson1GetDirectoryCommand(input, context);
|
|
55
|
+
}
|
|
56
|
+
deserialize(output, context) {
|
|
57
|
+
return Aws_restJson1_1.deserializeAws_restJson1GetDirectoryCommand(output, context);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.GetDirectoryCommand = GetDirectoryCommand;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetFacetCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Gets details of the <a>Facet</a>, such as facet name, attributes, <a>Rule</a>s, or <code>ObjectType</code>. You can call this on all kinds of schema
|
|
10
|
+
* facets -- published, development, or applied.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { CloudDirectoryClient, GetFacetCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
15
|
+
* // const { CloudDirectoryClient, GetFacetCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
16
|
+
* const client = new CloudDirectoryClient(config);
|
|
17
|
+
* const command = new GetFacetCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link GetFacetCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link GetFacetCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
class GetFacetCommand extends smithy_client_1.Command {
|
|
27
|
+
// Start section: command_properties
|
|
28
|
+
// End section: command_properties
|
|
29
|
+
constructor(input) {
|
|
30
|
+
// Start section: command_constructor
|
|
31
|
+
super();
|
|
32
|
+
this.input = input;
|
|
33
|
+
// End section: command_constructor
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
39
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
40
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
41
|
+
const { logger } = configuration;
|
|
42
|
+
const clientName = "CloudDirectoryClient";
|
|
43
|
+
const commandName = "GetFacetCommand";
|
|
44
|
+
const handlerExecutionContext = {
|
|
45
|
+
logger,
|
|
46
|
+
clientName,
|
|
47
|
+
commandName,
|
|
48
|
+
inputFilterSensitiveLog: models_0_1.GetFacetRequest.filterSensitiveLog,
|
|
49
|
+
outputFilterSensitiveLog: models_0_1.GetFacetResponse.filterSensitiveLog,
|
|
50
|
+
};
|
|
51
|
+
const { requestHandler } = configuration;
|
|
52
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
53
|
+
}
|
|
54
|
+
serialize(input, context) {
|
|
55
|
+
return Aws_restJson1_1.serializeAws_restJson1GetFacetCommand(input, context);
|
|
56
|
+
}
|
|
57
|
+
deserialize(output, context) {
|
|
58
|
+
return Aws_restJson1_1.deserializeAws_restJson1GetFacetCommand(output, context);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.GetFacetCommand = GetFacetCommand;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetLinkAttributesCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
/**
|
|
9
|
+
* <p>Retrieves attributes that are associated with a typed link.</p>
|
|
10
|
+
* @example
|
|
11
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
12
|
+
* ```javascript
|
|
13
|
+
* import { CloudDirectoryClient, GetLinkAttributesCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import
|
|
14
|
+
* // const { CloudDirectoryClient, GetLinkAttributesCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import
|
|
15
|
+
* const client = new CloudDirectoryClient(config);
|
|
16
|
+
* const command = new GetLinkAttributesCommand(input);
|
|
17
|
+
* const response = await client.send(command);
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @see {@link GetLinkAttributesCommandInput} for command's `input` shape.
|
|
21
|
+
* @see {@link GetLinkAttributesCommandOutput} for command's `response` shape.
|
|
22
|
+
* @see {@link CloudDirectoryClientResolvedConfig | config} for command's `input` shape.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
class GetLinkAttributesCommand extends smithy_client_1.Command {
|
|
26
|
+
// Start section: command_properties
|
|
27
|
+
// End section: command_properties
|
|
28
|
+
constructor(input) {
|
|
29
|
+
// Start section: command_constructor
|
|
30
|
+
super();
|
|
31
|
+
this.input = input;
|
|
32
|
+
// End section: command_constructor
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
38
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
39
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
40
|
+
const { logger } = configuration;
|
|
41
|
+
const clientName = "CloudDirectoryClient";
|
|
42
|
+
const commandName = "GetLinkAttributesCommand";
|
|
43
|
+
const handlerExecutionContext = {
|
|
44
|
+
logger,
|
|
45
|
+
clientName,
|
|
46
|
+
commandName,
|
|
47
|
+
inputFilterSensitiveLog: models_0_1.GetLinkAttributesRequest.filterSensitiveLog,
|
|
48
|
+
outputFilterSensitiveLog: models_0_1.GetLinkAttributesResponse.filterSensitiveLog,
|
|
49
|
+
};
|
|
50
|
+
const { requestHandler } = configuration;
|
|
51
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
52
|
+
}
|
|
53
|
+
serialize(input, context) {
|
|
54
|
+
return Aws_restJson1_1.serializeAws_restJson1GetLinkAttributesCommand(input, context);
|
|
55
|
+
}
|
|
56
|
+
deserialize(output, context) {
|
|
57
|
+
return Aws_restJson1_1.deserializeAws_restJson1GetLinkAttributesCommand(output, context);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.GetLinkAttributesCommand = GetLinkAttributesCommand;
|