@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,1252 @@
|
|
|
1
|
+
import { __assign } from "tslib";
|
|
2
|
+
export var AccessDeniedException;
|
|
3
|
+
(function (AccessDeniedException) {
|
|
4
|
+
AccessDeniedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
+
})(AccessDeniedException || (AccessDeniedException = {}));
|
|
6
|
+
export var AttributeKey;
|
|
7
|
+
(function (AttributeKey) {
|
|
8
|
+
AttributeKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
|
+
})(AttributeKey || (AttributeKey = {}));
|
|
10
|
+
export var TypedAttributeValue;
|
|
11
|
+
(function (TypedAttributeValue) {
|
|
12
|
+
TypedAttributeValue.visit = function (value, visitor) {
|
|
13
|
+
if (value.StringValue !== undefined)
|
|
14
|
+
return visitor.StringValue(value.StringValue);
|
|
15
|
+
if (value.BinaryValue !== undefined)
|
|
16
|
+
return visitor.BinaryValue(value.BinaryValue);
|
|
17
|
+
if (value.BooleanValue !== undefined)
|
|
18
|
+
return visitor.BooleanValue(value.BooleanValue);
|
|
19
|
+
if (value.NumberValue !== undefined)
|
|
20
|
+
return visitor.NumberValue(value.NumberValue);
|
|
21
|
+
if (value.DatetimeValue !== undefined)
|
|
22
|
+
return visitor.DatetimeValue(value.DatetimeValue);
|
|
23
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
24
|
+
};
|
|
25
|
+
TypedAttributeValue.filterSensitiveLog = function (obj) {
|
|
26
|
+
var _a;
|
|
27
|
+
if (obj.StringValue !== undefined)
|
|
28
|
+
return { StringValue: obj.StringValue };
|
|
29
|
+
if (obj.BinaryValue !== undefined)
|
|
30
|
+
return { BinaryValue: obj.BinaryValue };
|
|
31
|
+
if (obj.BooleanValue !== undefined)
|
|
32
|
+
return { BooleanValue: obj.BooleanValue };
|
|
33
|
+
if (obj.NumberValue !== undefined)
|
|
34
|
+
return { NumberValue: obj.NumberValue };
|
|
35
|
+
if (obj.DatetimeValue !== undefined)
|
|
36
|
+
return { DatetimeValue: obj.DatetimeValue };
|
|
37
|
+
if (obj.$unknown !== undefined)
|
|
38
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
39
|
+
};
|
|
40
|
+
})(TypedAttributeValue || (TypedAttributeValue = {}));
|
|
41
|
+
export var AttributeKeyAndValue;
|
|
42
|
+
(function (AttributeKeyAndValue) {
|
|
43
|
+
AttributeKeyAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
|
|
44
|
+
})(AttributeKeyAndValue || (AttributeKeyAndValue = {}));
|
|
45
|
+
export var ObjectReference;
|
|
46
|
+
(function (ObjectReference) {
|
|
47
|
+
ObjectReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
48
|
+
})(ObjectReference || (ObjectReference = {}));
|
|
49
|
+
export var SchemaFacet;
|
|
50
|
+
(function (SchemaFacet) {
|
|
51
|
+
SchemaFacet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
52
|
+
})(SchemaFacet || (SchemaFacet = {}));
|
|
53
|
+
export var AddFacetToObjectRequest;
|
|
54
|
+
(function (AddFacetToObjectRequest) {
|
|
55
|
+
AddFacetToObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
|
|
56
|
+
ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
|
|
57
|
+
}))); };
|
|
58
|
+
})(AddFacetToObjectRequest || (AddFacetToObjectRequest = {}));
|
|
59
|
+
export var AddFacetToObjectResponse;
|
|
60
|
+
(function (AddFacetToObjectResponse) {
|
|
61
|
+
AddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
62
|
+
})(AddFacetToObjectResponse || (AddFacetToObjectResponse = {}));
|
|
63
|
+
export var DirectoryNotEnabledException;
|
|
64
|
+
(function (DirectoryNotEnabledException) {
|
|
65
|
+
DirectoryNotEnabledException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
66
|
+
})(DirectoryNotEnabledException || (DirectoryNotEnabledException = {}));
|
|
67
|
+
export var FacetValidationException;
|
|
68
|
+
(function (FacetValidationException) {
|
|
69
|
+
FacetValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
70
|
+
})(FacetValidationException || (FacetValidationException = {}));
|
|
71
|
+
export var InternalServiceException;
|
|
72
|
+
(function (InternalServiceException) {
|
|
73
|
+
InternalServiceException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
74
|
+
})(InternalServiceException || (InternalServiceException = {}));
|
|
75
|
+
export var InvalidArnException;
|
|
76
|
+
(function (InvalidArnException) {
|
|
77
|
+
InvalidArnException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
|
+
})(InvalidArnException || (InvalidArnException = {}));
|
|
79
|
+
export var LimitExceededException;
|
|
80
|
+
(function (LimitExceededException) {
|
|
81
|
+
LimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
82
|
+
})(LimitExceededException || (LimitExceededException = {}));
|
|
83
|
+
export var ResourceNotFoundException;
|
|
84
|
+
(function (ResourceNotFoundException) {
|
|
85
|
+
ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
86
|
+
})(ResourceNotFoundException || (ResourceNotFoundException = {}));
|
|
87
|
+
export var RetryableConflictException;
|
|
88
|
+
(function (RetryableConflictException) {
|
|
89
|
+
RetryableConflictException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
90
|
+
})(RetryableConflictException || (RetryableConflictException = {}));
|
|
91
|
+
export var ValidationException;
|
|
92
|
+
(function (ValidationException) {
|
|
93
|
+
ValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
94
|
+
})(ValidationException || (ValidationException = {}));
|
|
95
|
+
export var ApplySchemaRequest;
|
|
96
|
+
(function (ApplySchemaRequest) {
|
|
97
|
+
ApplySchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
|
+
})(ApplySchemaRequest || (ApplySchemaRequest = {}));
|
|
99
|
+
export var ApplySchemaResponse;
|
|
100
|
+
(function (ApplySchemaResponse) {
|
|
101
|
+
ApplySchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
})(ApplySchemaResponse || (ApplySchemaResponse = {}));
|
|
103
|
+
export var InvalidAttachmentException;
|
|
104
|
+
(function (InvalidAttachmentException) {
|
|
105
|
+
InvalidAttachmentException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
})(InvalidAttachmentException || (InvalidAttachmentException = {}));
|
|
107
|
+
export var SchemaAlreadyExistsException;
|
|
108
|
+
(function (SchemaAlreadyExistsException) {
|
|
109
|
+
SchemaAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
|
+
})(SchemaAlreadyExistsException || (SchemaAlreadyExistsException = {}));
|
|
111
|
+
export var AttachObjectRequest;
|
|
112
|
+
(function (AttachObjectRequest) {
|
|
113
|
+
AttachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
114
|
+
})(AttachObjectRequest || (AttachObjectRequest = {}));
|
|
115
|
+
export var AttachObjectResponse;
|
|
116
|
+
(function (AttachObjectResponse) {
|
|
117
|
+
AttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
118
|
+
})(AttachObjectResponse || (AttachObjectResponse = {}));
|
|
119
|
+
export var LinkNameAlreadyInUseException;
|
|
120
|
+
(function (LinkNameAlreadyInUseException) {
|
|
121
|
+
LinkNameAlreadyInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
})(LinkNameAlreadyInUseException || (LinkNameAlreadyInUseException = {}));
|
|
123
|
+
export var AttachPolicyRequest;
|
|
124
|
+
(function (AttachPolicyRequest) {
|
|
125
|
+
AttachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
})(AttachPolicyRequest || (AttachPolicyRequest = {}));
|
|
127
|
+
export var AttachPolicyResponse;
|
|
128
|
+
(function (AttachPolicyResponse) {
|
|
129
|
+
AttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
})(AttachPolicyResponse || (AttachPolicyResponse = {}));
|
|
131
|
+
export var NotPolicyException;
|
|
132
|
+
(function (NotPolicyException) {
|
|
133
|
+
NotPolicyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
})(NotPolicyException || (NotPolicyException = {}));
|
|
135
|
+
export var AttachToIndexRequest;
|
|
136
|
+
(function (AttachToIndexRequest) {
|
|
137
|
+
AttachToIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
})(AttachToIndexRequest || (AttachToIndexRequest = {}));
|
|
139
|
+
export var AttachToIndexResponse;
|
|
140
|
+
(function (AttachToIndexResponse) {
|
|
141
|
+
AttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
})(AttachToIndexResponse || (AttachToIndexResponse = {}));
|
|
143
|
+
export var IndexedAttributeMissingException;
|
|
144
|
+
(function (IndexedAttributeMissingException) {
|
|
145
|
+
IndexedAttributeMissingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
})(IndexedAttributeMissingException || (IndexedAttributeMissingException = {}));
|
|
147
|
+
export var NotIndexException;
|
|
148
|
+
(function (NotIndexException) {
|
|
149
|
+
NotIndexException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
})(NotIndexException || (NotIndexException = {}));
|
|
151
|
+
export var AttributeNameAndValue;
|
|
152
|
+
(function (AttributeNameAndValue) {
|
|
153
|
+
AttributeNameAndValue.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }))); };
|
|
154
|
+
})(AttributeNameAndValue || (AttributeNameAndValue = {}));
|
|
155
|
+
export var TypedLinkSchemaAndFacetName;
|
|
156
|
+
(function (TypedLinkSchemaAndFacetName) {
|
|
157
|
+
TypedLinkSchemaAndFacetName.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
})(TypedLinkSchemaAndFacetName || (TypedLinkSchemaAndFacetName = {}));
|
|
159
|
+
export var AttachTypedLinkRequest;
|
|
160
|
+
(function (AttachTypedLinkRequest) {
|
|
161
|
+
AttachTypedLinkRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeNameAndValue.filterSensitiveLog(item); }) }))); };
|
|
162
|
+
})(AttachTypedLinkRequest || (AttachTypedLinkRequest = {}));
|
|
163
|
+
export var TypedLinkSpecifier;
|
|
164
|
+
(function (TypedLinkSpecifier) {
|
|
165
|
+
TypedLinkSpecifier.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.IdentityAttributeValues && {
|
|
166
|
+
IdentityAttributeValues: obj.IdentityAttributeValues.map(function (item) {
|
|
167
|
+
return AttributeNameAndValue.filterSensitiveLog(item);
|
|
168
|
+
}),
|
|
169
|
+
}))); };
|
|
170
|
+
})(TypedLinkSpecifier || (TypedLinkSpecifier = {}));
|
|
171
|
+
export var AttachTypedLinkResponse;
|
|
172
|
+
(function (AttachTypedLinkResponse) {
|
|
173
|
+
AttachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
174
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
175
|
+
}))); };
|
|
176
|
+
})(AttachTypedLinkResponse || (AttachTypedLinkResponse = {}));
|
|
177
|
+
export var ConsistencyLevel;
|
|
178
|
+
(function (ConsistencyLevel) {
|
|
179
|
+
ConsistencyLevel["EVENTUAL"] = "EVENTUAL";
|
|
180
|
+
ConsistencyLevel["SERIALIZABLE"] = "SERIALIZABLE";
|
|
181
|
+
})(ConsistencyLevel || (ConsistencyLevel = {}));
|
|
182
|
+
export var BatchGetLinkAttributes;
|
|
183
|
+
(function (BatchGetLinkAttributes) {
|
|
184
|
+
BatchGetLinkAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
185
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
186
|
+
}))); };
|
|
187
|
+
})(BatchGetLinkAttributes || (BatchGetLinkAttributes = {}));
|
|
188
|
+
export var BatchGetObjectAttributes;
|
|
189
|
+
(function (BatchGetObjectAttributes) {
|
|
190
|
+
BatchGetObjectAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
})(BatchGetObjectAttributes || (BatchGetObjectAttributes = {}));
|
|
192
|
+
export var BatchGetObjectInformation;
|
|
193
|
+
(function (BatchGetObjectInformation) {
|
|
194
|
+
BatchGetObjectInformation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
})(BatchGetObjectInformation || (BatchGetObjectInformation = {}));
|
|
196
|
+
export var BatchListAttachedIndices;
|
|
197
|
+
(function (BatchListAttachedIndices) {
|
|
198
|
+
BatchListAttachedIndices.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
})(BatchListAttachedIndices || (BatchListAttachedIndices = {}));
|
|
200
|
+
export var RangeMode;
|
|
201
|
+
(function (RangeMode) {
|
|
202
|
+
RangeMode["EXCLUSIVE"] = "EXCLUSIVE";
|
|
203
|
+
RangeMode["FIRST"] = "FIRST";
|
|
204
|
+
RangeMode["INCLUSIVE"] = "INCLUSIVE";
|
|
205
|
+
RangeMode["LAST"] = "LAST";
|
|
206
|
+
RangeMode["LAST_BEFORE_MISSING_VALUES"] = "LAST_BEFORE_MISSING_VALUES";
|
|
207
|
+
})(RangeMode || (RangeMode = {}));
|
|
208
|
+
export var TypedAttributeValueRange;
|
|
209
|
+
(function (TypedAttributeValueRange) {
|
|
210
|
+
TypedAttributeValueRange.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.StartValue && { StartValue: TypedAttributeValue.filterSensitiveLog(obj.StartValue) })), (obj.EndValue && { EndValue: TypedAttributeValue.filterSensitiveLog(obj.EndValue) }))); };
|
|
211
|
+
})(TypedAttributeValueRange || (TypedAttributeValueRange = {}));
|
|
212
|
+
export var TypedLinkAttributeRange;
|
|
213
|
+
(function (TypedLinkAttributeRange) {
|
|
214
|
+
TypedLinkAttributeRange.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }))); };
|
|
215
|
+
})(TypedLinkAttributeRange || (TypedLinkAttributeRange = {}));
|
|
216
|
+
export var BatchListIncomingTypedLinks;
|
|
217
|
+
(function (BatchListIncomingTypedLinks) {
|
|
218
|
+
BatchListIncomingTypedLinks.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
|
|
219
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
|
|
220
|
+
}))); };
|
|
221
|
+
})(BatchListIncomingTypedLinks || (BatchListIncomingTypedLinks = {}));
|
|
222
|
+
export var ObjectAttributeRange;
|
|
223
|
+
(function (ObjectAttributeRange) {
|
|
224
|
+
ObjectAttributeRange.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }))); };
|
|
225
|
+
})(ObjectAttributeRange || (ObjectAttributeRange = {}));
|
|
226
|
+
export var BatchListIndex;
|
|
227
|
+
(function (BatchListIndex) {
|
|
228
|
+
BatchListIndex.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.RangesOnIndexedValues && {
|
|
229
|
+
RangesOnIndexedValues: obj.RangesOnIndexedValues.map(function (item) { return ObjectAttributeRange.filterSensitiveLog(item); }),
|
|
230
|
+
}))); };
|
|
231
|
+
})(BatchListIndex || (BatchListIndex = {}));
|
|
232
|
+
export var BatchListObjectAttributes;
|
|
233
|
+
(function (BatchListObjectAttributes) {
|
|
234
|
+
BatchListObjectAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
})(BatchListObjectAttributes || (BatchListObjectAttributes = {}));
|
|
236
|
+
export var BatchListObjectChildren;
|
|
237
|
+
(function (BatchListObjectChildren) {
|
|
238
|
+
BatchListObjectChildren.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
})(BatchListObjectChildren || (BatchListObjectChildren = {}));
|
|
240
|
+
export var BatchListObjectParentPaths;
|
|
241
|
+
(function (BatchListObjectParentPaths) {
|
|
242
|
+
BatchListObjectParentPaths.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
})(BatchListObjectParentPaths || (BatchListObjectParentPaths = {}));
|
|
244
|
+
export var BatchListObjectParents;
|
|
245
|
+
(function (BatchListObjectParents) {
|
|
246
|
+
BatchListObjectParents.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
})(BatchListObjectParents || (BatchListObjectParents = {}));
|
|
248
|
+
export var BatchListObjectPolicies;
|
|
249
|
+
(function (BatchListObjectPolicies) {
|
|
250
|
+
BatchListObjectPolicies.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
})(BatchListObjectPolicies || (BatchListObjectPolicies = {}));
|
|
252
|
+
export var BatchListOutgoingTypedLinks;
|
|
253
|
+
(function (BatchListOutgoingTypedLinks) {
|
|
254
|
+
BatchListOutgoingTypedLinks.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
|
|
255
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
|
|
256
|
+
}))); };
|
|
257
|
+
})(BatchListOutgoingTypedLinks || (BatchListOutgoingTypedLinks = {}));
|
|
258
|
+
export var BatchListPolicyAttachments;
|
|
259
|
+
(function (BatchListPolicyAttachments) {
|
|
260
|
+
BatchListPolicyAttachments.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
})(BatchListPolicyAttachments || (BatchListPolicyAttachments = {}));
|
|
262
|
+
export var BatchLookupPolicy;
|
|
263
|
+
(function (BatchLookupPolicy) {
|
|
264
|
+
BatchLookupPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
})(BatchLookupPolicy || (BatchLookupPolicy = {}));
|
|
266
|
+
export var BatchReadOperation;
|
|
267
|
+
(function (BatchReadOperation) {
|
|
268
|
+
BatchReadOperation.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.ListIndex && { ListIndex: BatchListIndex.filterSensitiveLog(obj.ListIndex) })), (obj.ListOutgoingTypedLinks && {
|
|
269
|
+
ListOutgoingTypedLinks: BatchListOutgoingTypedLinks.filterSensitiveLog(obj.ListOutgoingTypedLinks),
|
|
270
|
+
})), (obj.ListIncomingTypedLinks && {
|
|
271
|
+
ListIncomingTypedLinks: BatchListIncomingTypedLinks.filterSensitiveLog(obj.ListIncomingTypedLinks),
|
|
272
|
+
})), (obj.GetLinkAttributes && {
|
|
273
|
+
GetLinkAttributes: BatchGetLinkAttributes.filterSensitiveLog(obj.GetLinkAttributes),
|
|
274
|
+
}))); };
|
|
275
|
+
})(BatchReadOperation || (BatchReadOperation = {}));
|
|
276
|
+
export var BatchReadRequest;
|
|
277
|
+
(function (BatchReadRequest) {
|
|
278
|
+
BatchReadRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
})(BatchReadRequest || (BatchReadRequest = {}));
|
|
280
|
+
export var BatchReadExceptionType;
|
|
281
|
+
(function (BatchReadExceptionType) {
|
|
282
|
+
BatchReadExceptionType["AccessDeniedException"] = "AccessDeniedException";
|
|
283
|
+
BatchReadExceptionType["CannotListParentOfRootException"] = "CannotListParentOfRootException";
|
|
284
|
+
BatchReadExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
|
|
285
|
+
BatchReadExceptionType["FacetValidationException"] = "FacetValidationException";
|
|
286
|
+
BatchReadExceptionType["InternalServiceException"] = "InternalServiceException";
|
|
287
|
+
BatchReadExceptionType["InvalidArnException"] = "InvalidArnException";
|
|
288
|
+
BatchReadExceptionType["InvalidNextTokenException"] = "InvalidNextTokenException";
|
|
289
|
+
BatchReadExceptionType["LimitExceededException"] = "LimitExceededException";
|
|
290
|
+
BatchReadExceptionType["NotIndexException"] = "NotIndexException";
|
|
291
|
+
BatchReadExceptionType["NotNodeException"] = "NotNodeException";
|
|
292
|
+
BatchReadExceptionType["NotPolicyException"] = "NotPolicyException";
|
|
293
|
+
BatchReadExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
|
|
294
|
+
BatchReadExceptionType["ValidationException"] = "ValidationException";
|
|
295
|
+
})(BatchReadExceptionType || (BatchReadExceptionType = {}));
|
|
296
|
+
export var BatchReadException;
|
|
297
|
+
(function (BatchReadException) {
|
|
298
|
+
BatchReadException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
})(BatchReadException || (BatchReadException = {}));
|
|
300
|
+
export var BatchGetLinkAttributesResponse;
|
|
301
|
+
(function (BatchGetLinkAttributesResponse) {
|
|
302
|
+
BatchGetLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
|
|
303
|
+
})(BatchGetLinkAttributesResponse || (BatchGetLinkAttributesResponse = {}));
|
|
304
|
+
export var BatchGetObjectAttributesResponse;
|
|
305
|
+
(function (BatchGetObjectAttributesResponse) {
|
|
306
|
+
BatchGetObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
|
|
307
|
+
})(BatchGetObjectAttributesResponse || (BatchGetObjectAttributesResponse = {}));
|
|
308
|
+
export var BatchGetObjectInformationResponse;
|
|
309
|
+
(function (BatchGetObjectInformationResponse) {
|
|
310
|
+
BatchGetObjectInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
})(BatchGetObjectInformationResponse || (BatchGetObjectInformationResponse = {}));
|
|
312
|
+
export var IndexAttachment;
|
|
313
|
+
(function (IndexAttachment) {
|
|
314
|
+
IndexAttachment.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.IndexedAttributes && {
|
|
315
|
+
IndexedAttributes: obj.IndexedAttributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
|
|
316
|
+
}))); };
|
|
317
|
+
})(IndexAttachment || (IndexAttachment = {}));
|
|
318
|
+
export var BatchListAttachedIndicesResponse;
|
|
319
|
+
(function (BatchListAttachedIndicesResponse) {
|
|
320
|
+
BatchListAttachedIndicesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
})(BatchListAttachedIndicesResponse || (BatchListAttachedIndicesResponse = {}));
|
|
322
|
+
export var BatchListIncomingTypedLinksResponse;
|
|
323
|
+
(function (BatchListIncomingTypedLinksResponse) {
|
|
324
|
+
BatchListIncomingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
})(BatchListIncomingTypedLinksResponse || (BatchListIncomingTypedLinksResponse = {}));
|
|
326
|
+
export var BatchListIndexResponse;
|
|
327
|
+
(function (BatchListIndexResponse) {
|
|
328
|
+
BatchListIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
})(BatchListIndexResponse || (BatchListIndexResponse = {}));
|
|
330
|
+
export var BatchListObjectAttributesResponse;
|
|
331
|
+
(function (BatchListObjectAttributesResponse) {
|
|
332
|
+
BatchListObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
|
|
333
|
+
})(BatchListObjectAttributesResponse || (BatchListObjectAttributesResponse = {}));
|
|
334
|
+
export var BatchListObjectChildrenResponse;
|
|
335
|
+
(function (BatchListObjectChildrenResponse) {
|
|
336
|
+
BatchListObjectChildrenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
})(BatchListObjectChildrenResponse || (BatchListObjectChildrenResponse = {}));
|
|
338
|
+
export var PathToObjectIdentifiers;
|
|
339
|
+
(function (PathToObjectIdentifiers) {
|
|
340
|
+
PathToObjectIdentifiers.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
})(PathToObjectIdentifiers || (PathToObjectIdentifiers = {}));
|
|
342
|
+
export var BatchListObjectParentPathsResponse;
|
|
343
|
+
(function (BatchListObjectParentPathsResponse) {
|
|
344
|
+
BatchListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
})(BatchListObjectParentPathsResponse || (BatchListObjectParentPathsResponse = {}));
|
|
346
|
+
export var ObjectIdentifierAndLinkNameTuple;
|
|
347
|
+
(function (ObjectIdentifierAndLinkNameTuple) {
|
|
348
|
+
ObjectIdentifierAndLinkNameTuple.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
})(ObjectIdentifierAndLinkNameTuple || (ObjectIdentifierAndLinkNameTuple = {}));
|
|
350
|
+
export var BatchListObjectParentsResponse;
|
|
351
|
+
(function (BatchListObjectParentsResponse) {
|
|
352
|
+
BatchListObjectParentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
})(BatchListObjectParentsResponse || (BatchListObjectParentsResponse = {}));
|
|
354
|
+
export var BatchListObjectPoliciesResponse;
|
|
355
|
+
(function (BatchListObjectPoliciesResponse) {
|
|
356
|
+
BatchListObjectPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
})(BatchListObjectPoliciesResponse || (BatchListObjectPoliciesResponse = {}));
|
|
358
|
+
export var BatchListOutgoingTypedLinksResponse;
|
|
359
|
+
(function (BatchListOutgoingTypedLinksResponse) {
|
|
360
|
+
BatchListOutgoingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
})(BatchListOutgoingTypedLinksResponse || (BatchListOutgoingTypedLinksResponse = {}));
|
|
362
|
+
export var BatchListPolicyAttachmentsResponse;
|
|
363
|
+
(function (BatchListPolicyAttachmentsResponse) {
|
|
364
|
+
BatchListPolicyAttachmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
})(BatchListPolicyAttachmentsResponse || (BatchListPolicyAttachmentsResponse = {}));
|
|
366
|
+
export var PolicyAttachment;
|
|
367
|
+
(function (PolicyAttachment) {
|
|
368
|
+
PolicyAttachment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
})(PolicyAttachment || (PolicyAttachment = {}));
|
|
370
|
+
export var PolicyToPath;
|
|
371
|
+
(function (PolicyToPath) {
|
|
372
|
+
PolicyToPath.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
})(PolicyToPath || (PolicyToPath = {}));
|
|
374
|
+
export var BatchLookupPolicyResponse;
|
|
375
|
+
(function (BatchLookupPolicyResponse) {
|
|
376
|
+
BatchLookupPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
+
})(BatchLookupPolicyResponse || (BatchLookupPolicyResponse = {}));
|
|
378
|
+
export var BatchReadSuccessfulResponse;
|
|
379
|
+
(function (BatchReadSuccessfulResponse) {
|
|
380
|
+
BatchReadSuccessfulResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.ListObjectAttributes && {
|
|
381
|
+
ListObjectAttributes: BatchListObjectAttributesResponse.filterSensitiveLog(obj.ListObjectAttributes),
|
|
382
|
+
})), (obj.GetObjectAttributes && {
|
|
383
|
+
GetObjectAttributes: BatchGetObjectAttributesResponse.filterSensitiveLog(obj.GetObjectAttributes),
|
|
384
|
+
})), (obj.GetLinkAttributes && {
|
|
385
|
+
GetLinkAttributes: BatchGetLinkAttributesResponse.filterSensitiveLog(obj.GetLinkAttributes),
|
|
386
|
+
}))); };
|
|
387
|
+
})(BatchReadSuccessfulResponse || (BatchReadSuccessfulResponse = {}));
|
|
388
|
+
export var BatchReadOperationResponse;
|
|
389
|
+
(function (BatchReadOperationResponse) {
|
|
390
|
+
BatchReadOperationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.SuccessfulResponse && {
|
|
391
|
+
SuccessfulResponse: BatchReadSuccessfulResponse.filterSensitiveLog(obj.SuccessfulResponse),
|
|
392
|
+
}))); };
|
|
393
|
+
})(BatchReadOperationResponse || (BatchReadOperationResponse = {}));
|
|
394
|
+
export var BatchReadResponse;
|
|
395
|
+
(function (BatchReadResponse) {
|
|
396
|
+
BatchReadResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
|
+
})(BatchReadResponse || (BatchReadResponse = {}));
|
|
398
|
+
export var BatchWriteExceptionType;
|
|
399
|
+
(function (BatchWriteExceptionType) {
|
|
400
|
+
BatchWriteExceptionType["AccessDeniedException"] = "AccessDeniedException";
|
|
401
|
+
BatchWriteExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
|
|
402
|
+
BatchWriteExceptionType["FacetValidationException"] = "FacetValidationException";
|
|
403
|
+
BatchWriteExceptionType["IndexedAttributeMissingException"] = "IndexedAttributeMissingException";
|
|
404
|
+
BatchWriteExceptionType["InternalServiceException"] = "InternalServiceException";
|
|
405
|
+
BatchWriteExceptionType["InvalidArnException"] = "InvalidArnException";
|
|
406
|
+
BatchWriteExceptionType["InvalidAttachmentException"] = "InvalidAttachmentException";
|
|
407
|
+
BatchWriteExceptionType["LimitExceededException"] = "LimitExceededException";
|
|
408
|
+
BatchWriteExceptionType["LinkNameAlreadyInUseException"] = "LinkNameAlreadyInUseException";
|
|
409
|
+
BatchWriteExceptionType["NotIndexException"] = "NotIndexException";
|
|
410
|
+
BatchWriteExceptionType["NotNodeException"] = "NotNodeException";
|
|
411
|
+
BatchWriteExceptionType["NotPolicyException"] = "NotPolicyException";
|
|
412
|
+
BatchWriteExceptionType["ObjectAlreadyDetachedException"] = "ObjectAlreadyDetachedException";
|
|
413
|
+
BatchWriteExceptionType["ObjectNotDetachedException"] = "ObjectNotDetachedException";
|
|
414
|
+
BatchWriteExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
|
|
415
|
+
BatchWriteExceptionType["StillContainsLinksException"] = "StillContainsLinksException";
|
|
416
|
+
BatchWriteExceptionType["UnsupportedIndexTypeException"] = "UnsupportedIndexTypeException";
|
|
417
|
+
BatchWriteExceptionType["ValidationException"] = "ValidationException";
|
|
418
|
+
})(BatchWriteExceptionType || (BatchWriteExceptionType = {}));
|
|
419
|
+
export var BatchWriteException;
|
|
420
|
+
(function (BatchWriteException) {
|
|
421
|
+
BatchWriteException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
422
|
+
})(BatchWriteException || (BatchWriteException = {}));
|
|
423
|
+
export var BatchAddFacetToObject;
|
|
424
|
+
(function (BatchAddFacetToObject) {
|
|
425
|
+
BatchAddFacetToObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
|
|
426
|
+
ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
|
|
427
|
+
}))); };
|
|
428
|
+
})(BatchAddFacetToObject || (BatchAddFacetToObject = {}));
|
|
429
|
+
export var BatchAttachObject;
|
|
430
|
+
(function (BatchAttachObject) {
|
|
431
|
+
BatchAttachObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
432
|
+
})(BatchAttachObject || (BatchAttachObject = {}));
|
|
433
|
+
export var BatchAttachPolicy;
|
|
434
|
+
(function (BatchAttachPolicy) {
|
|
435
|
+
BatchAttachPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
436
|
+
})(BatchAttachPolicy || (BatchAttachPolicy = {}));
|
|
437
|
+
export var BatchAttachToIndex;
|
|
438
|
+
(function (BatchAttachToIndex) {
|
|
439
|
+
BatchAttachToIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
440
|
+
})(BatchAttachToIndex || (BatchAttachToIndex = {}));
|
|
441
|
+
export var BatchAttachTypedLink;
|
|
442
|
+
(function (BatchAttachTypedLink) {
|
|
443
|
+
BatchAttachTypedLink.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeNameAndValue.filterSensitiveLog(item); }) }))); };
|
|
444
|
+
})(BatchAttachTypedLink || (BatchAttachTypedLink = {}));
|
|
445
|
+
export var BatchCreateIndex;
|
|
446
|
+
(function (BatchCreateIndex) {
|
|
447
|
+
BatchCreateIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
448
|
+
})(BatchCreateIndex || (BatchCreateIndex = {}));
|
|
449
|
+
export var BatchCreateObject;
|
|
450
|
+
(function (BatchCreateObject) {
|
|
451
|
+
BatchCreateObject.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
|
|
452
|
+
ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
|
|
453
|
+
}))); };
|
|
454
|
+
})(BatchCreateObject || (BatchCreateObject = {}));
|
|
455
|
+
export var BatchDeleteObject;
|
|
456
|
+
(function (BatchDeleteObject) {
|
|
457
|
+
BatchDeleteObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
458
|
+
})(BatchDeleteObject || (BatchDeleteObject = {}));
|
|
459
|
+
export var BatchDetachFromIndex;
|
|
460
|
+
(function (BatchDetachFromIndex) {
|
|
461
|
+
BatchDetachFromIndex.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
462
|
+
})(BatchDetachFromIndex || (BatchDetachFromIndex = {}));
|
|
463
|
+
export var BatchDetachObject;
|
|
464
|
+
(function (BatchDetachObject) {
|
|
465
|
+
BatchDetachObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
466
|
+
})(BatchDetachObject || (BatchDetachObject = {}));
|
|
467
|
+
export var BatchDetachPolicy;
|
|
468
|
+
(function (BatchDetachPolicy) {
|
|
469
|
+
BatchDetachPolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
470
|
+
})(BatchDetachPolicy || (BatchDetachPolicy = {}));
|
|
471
|
+
export var BatchDetachTypedLink;
|
|
472
|
+
(function (BatchDetachTypedLink) {
|
|
473
|
+
BatchDetachTypedLink.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
474
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
475
|
+
}))); };
|
|
476
|
+
})(BatchDetachTypedLink || (BatchDetachTypedLink = {}));
|
|
477
|
+
export var BatchRemoveFacetFromObject;
|
|
478
|
+
(function (BatchRemoveFacetFromObject) {
|
|
479
|
+
BatchRemoveFacetFromObject.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
480
|
+
})(BatchRemoveFacetFromObject || (BatchRemoveFacetFromObject = {}));
|
|
481
|
+
export var UpdateActionType;
|
|
482
|
+
(function (UpdateActionType) {
|
|
483
|
+
UpdateActionType["CREATE_OR_UPDATE"] = "CREATE_OR_UPDATE";
|
|
484
|
+
UpdateActionType["DELETE"] = "DELETE";
|
|
485
|
+
})(UpdateActionType || (UpdateActionType = {}));
|
|
486
|
+
export var LinkAttributeAction;
|
|
487
|
+
(function (LinkAttributeAction) {
|
|
488
|
+
LinkAttributeAction.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdateValue && {
|
|
489
|
+
AttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.AttributeUpdateValue),
|
|
490
|
+
}))); };
|
|
491
|
+
})(LinkAttributeAction || (LinkAttributeAction = {}));
|
|
492
|
+
export var LinkAttributeUpdate;
|
|
493
|
+
(function (LinkAttributeUpdate) {
|
|
494
|
+
LinkAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeAction && { AttributeAction: LinkAttributeAction.filterSensitiveLog(obj.AttributeAction) }))); };
|
|
495
|
+
})(LinkAttributeUpdate || (LinkAttributeUpdate = {}));
|
|
496
|
+
export var BatchUpdateLinkAttributes;
|
|
497
|
+
(function (BatchUpdateLinkAttributes) {
|
|
498
|
+
BatchUpdateLinkAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
499
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
500
|
+
})), (obj.AttributeUpdates && {
|
|
501
|
+
AttributeUpdates: obj.AttributeUpdates.map(function (item) { return LinkAttributeUpdate.filterSensitiveLog(item); }),
|
|
502
|
+
}))); };
|
|
503
|
+
})(BatchUpdateLinkAttributes || (BatchUpdateLinkAttributes = {}));
|
|
504
|
+
export var ObjectAttributeAction;
|
|
505
|
+
(function (ObjectAttributeAction) {
|
|
506
|
+
ObjectAttributeAction.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeUpdateValue && {
|
|
507
|
+
ObjectAttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.ObjectAttributeUpdateValue),
|
|
508
|
+
}))); };
|
|
509
|
+
})(ObjectAttributeAction || (ObjectAttributeAction = {}));
|
|
510
|
+
export var ObjectAttributeUpdate;
|
|
511
|
+
(function (ObjectAttributeUpdate) {
|
|
512
|
+
ObjectAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeAction && {
|
|
513
|
+
ObjectAttributeAction: ObjectAttributeAction.filterSensitiveLog(obj.ObjectAttributeAction),
|
|
514
|
+
}))); };
|
|
515
|
+
})(ObjectAttributeUpdate || (ObjectAttributeUpdate = {}));
|
|
516
|
+
export var BatchUpdateObjectAttributes;
|
|
517
|
+
(function (BatchUpdateObjectAttributes) {
|
|
518
|
+
BatchUpdateObjectAttributes.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
|
|
519
|
+
AttributeUpdates: obj.AttributeUpdates.map(function (item) { return ObjectAttributeUpdate.filterSensitiveLog(item); }),
|
|
520
|
+
}))); };
|
|
521
|
+
})(BatchUpdateObjectAttributes || (BatchUpdateObjectAttributes = {}));
|
|
522
|
+
export var BatchWriteOperation;
|
|
523
|
+
(function (BatchWriteOperation) {
|
|
524
|
+
BatchWriteOperation.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.UpdateObjectAttributes && {
|
|
525
|
+
UpdateObjectAttributes: BatchUpdateObjectAttributes.filterSensitiveLog(obj.UpdateObjectAttributes),
|
|
526
|
+
})), (obj.AddFacetToObject && { AddFacetToObject: BatchAddFacetToObject.filterSensitiveLog(obj.AddFacetToObject) })), (obj.AttachTypedLink && { AttachTypedLink: BatchAttachTypedLink.filterSensitiveLog(obj.AttachTypedLink) })), (obj.DetachTypedLink && { DetachTypedLink: BatchDetachTypedLink.filterSensitiveLog(obj.DetachTypedLink) })), (obj.UpdateLinkAttributes && {
|
|
527
|
+
UpdateLinkAttributes: BatchUpdateLinkAttributes.filterSensitiveLog(obj.UpdateLinkAttributes),
|
|
528
|
+
}))); };
|
|
529
|
+
})(BatchWriteOperation || (BatchWriteOperation = {}));
|
|
530
|
+
export var BatchWriteRequest;
|
|
531
|
+
(function (BatchWriteRequest) {
|
|
532
|
+
BatchWriteRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
533
|
+
})(BatchWriteRequest || (BatchWriteRequest = {}));
|
|
534
|
+
export var BatchAddFacetToObjectResponse;
|
|
535
|
+
(function (BatchAddFacetToObjectResponse) {
|
|
536
|
+
BatchAddFacetToObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
537
|
+
})(BatchAddFacetToObjectResponse || (BatchAddFacetToObjectResponse = {}));
|
|
538
|
+
export var BatchAttachObjectResponse;
|
|
539
|
+
(function (BatchAttachObjectResponse) {
|
|
540
|
+
BatchAttachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
541
|
+
})(BatchAttachObjectResponse || (BatchAttachObjectResponse = {}));
|
|
542
|
+
export var BatchAttachPolicyResponse;
|
|
543
|
+
(function (BatchAttachPolicyResponse) {
|
|
544
|
+
BatchAttachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
545
|
+
})(BatchAttachPolicyResponse || (BatchAttachPolicyResponse = {}));
|
|
546
|
+
export var BatchAttachToIndexResponse;
|
|
547
|
+
(function (BatchAttachToIndexResponse) {
|
|
548
|
+
BatchAttachToIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
549
|
+
})(BatchAttachToIndexResponse || (BatchAttachToIndexResponse = {}));
|
|
550
|
+
export var BatchAttachTypedLinkResponse;
|
|
551
|
+
(function (BatchAttachTypedLinkResponse) {
|
|
552
|
+
BatchAttachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
553
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
554
|
+
}))); };
|
|
555
|
+
})(BatchAttachTypedLinkResponse || (BatchAttachTypedLinkResponse = {}));
|
|
556
|
+
export var BatchCreateIndexResponse;
|
|
557
|
+
(function (BatchCreateIndexResponse) {
|
|
558
|
+
BatchCreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
559
|
+
})(BatchCreateIndexResponse || (BatchCreateIndexResponse = {}));
|
|
560
|
+
export var BatchCreateObjectResponse;
|
|
561
|
+
(function (BatchCreateObjectResponse) {
|
|
562
|
+
BatchCreateObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
563
|
+
})(BatchCreateObjectResponse || (BatchCreateObjectResponse = {}));
|
|
564
|
+
export var BatchDeleteObjectResponse;
|
|
565
|
+
(function (BatchDeleteObjectResponse) {
|
|
566
|
+
BatchDeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
|
+
})(BatchDeleteObjectResponse || (BatchDeleteObjectResponse = {}));
|
|
568
|
+
export var BatchDetachFromIndexResponse;
|
|
569
|
+
(function (BatchDetachFromIndexResponse) {
|
|
570
|
+
BatchDetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
571
|
+
})(BatchDetachFromIndexResponse || (BatchDetachFromIndexResponse = {}));
|
|
572
|
+
export var BatchDetachObjectResponse;
|
|
573
|
+
(function (BatchDetachObjectResponse) {
|
|
574
|
+
BatchDetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
575
|
+
})(BatchDetachObjectResponse || (BatchDetachObjectResponse = {}));
|
|
576
|
+
export var BatchDetachPolicyResponse;
|
|
577
|
+
(function (BatchDetachPolicyResponse) {
|
|
578
|
+
BatchDetachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
579
|
+
})(BatchDetachPolicyResponse || (BatchDetachPolicyResponse = {}));
|
|
580
|
+
export var BatchDetachTypedLinkResponse;
|
|
581
|
+
(function (BatchDetachTypedLinkResponse) {
|
|
582
|
+
BatchDetachTypedLinkResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
583
|
+
})(BatchDetachTypedLinkResponse || (BatchDetachTypedLinkResponse = {}));
|
|
584
|
+
export var BatchRemoveFacetFromObjectResponse;
|
|
585
|
+
(function (BatchRemoveFacetFromObjectResponse) {
|
|
586
|
+
BatchRemoveFacetFromObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
587
|
+
})(BatchRemoveFacetFromObjectResponse || (BatchRemoveFacetFromObjectResponse = {}));
|
|
588
|
+
export var BatchUpdateLinkAttributesResponse;
|
|
589
|
+
(function (BatchUpdateLinkAttributesResponse) {
|
|
590
|
+
BatchUpdateLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
591
|
+
})(BatchUpdateLinkAttributesResponse || (BatchUpdateLinkAttributesResponse = {}));
|
|
592
|
+
export var BatchUpdateObjectAttributesResponse;
|
|
593
|
+
(function (BatchUpdateObjectAttributesResponse) {
|
|
594
|
+
BatchUpdateObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
595
|
+
})(BatchUpdateObjectAttributesResponse || (BatchUpdateObjectAttributesResponse = {}));
|
|
596
|
+
export var BatchWriteOperationResponse;
|
|
597
|
+
(function (BatchWriteOperationResponse) {
|
|
598
|
+
BatchWriteOperationResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttachTypedLink && {
|
|
599
|
+
AttachTypedLink: BatchAttachTypedLinkResponse.filterSensitiveLog(obj.AttachTypedLink),
|
|
600
|
+
}))); };
|
|
601
|
+
})(BatchWriteOperationResponse || (BatchWriteOperationResponse = {}));
|
|
602
|
+
export var BatchWriteResponse;
|
|
603
|
+
(function (BatchWriteResponse) {
|
|
604
|
+
BatchWriteResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
605
|
+
})(BatchWriteResponse || (BatchWriteResponse = {}));
|
|
606
|
+
export var CreateDirectoryRequest;
|
|
607
|
+
(function (CreateDirectoryRequest) {
|
|
608
|
+
CreateDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
609
|
+
})(CreateDirectoryRequest || (CreateDirectoryRequest = {}));
|
|
610
|
+
export var CreateDirectoryResponse;
|
|
611
|
+
(function (CreateDirectoryResponse) {
|
|
612
|
+
CreateDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
613
|
+
})(CreateDirectoryResponse || (CreateDirectoryResponse = {}));
|
|
614
|
+
export var DirectoryAlreadyExistsException;
|
|
615
|
+
(function (DirectoryAlreadyExistsException) {
|
|
616
|
+
DirectoryAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
617
|
+
})(DirectoryAlreadyExistsException || (DirectoryAlreadyExistsException = {}));
|
|
618
|
+
export var RuleType;
|
|
619
|
+
(function (RuleType) {
|
|
620
|
+
RuleType["BINARY_LENGTH"] = "BINARY_LENGTH";
|
|
621
|
+
RuleType["NUMBER_COMPARISON"] = "NUMBER_COMPARISON";
|
|
622
|
+
RuleType["STRING_FROM_SET"] = "STRING_FROM_SET";
|
|
623
|
+
RuleType["STRING_LENGTH"] = "STRING_LENGTH";
|
|
624
|
+
})(RuleType || (RuleType = {}));
|
|
625
|
+
export var Rule;
|
|
626
|
+
(function (Rule) {
|
|
627
|
+
Rule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
628
|
+
})(Rule || (Rule = {}));
|
|
629
|
+
export var FacetAttributeType;
|
|
630
|
+
(function (FacetAttributeType) {
|
|
631
|
+
FacetAttributeType["BINARY"] = "BINARY";
|
|
632
|
+
FacetAttributeType["BOOLEAN"] = "BOOLEAN";
|
|
633
|
+
FacetAttributeType["DATETIME"] = "DATETIME";
|
|
634
|
+
FacetAttributeType["NUMBER"] = "NUMBER";
|
|
635
|
+
FacetAttributeType["STRING"] = "STRING";
|
|
636
|
+
FacetAttributeType["VARIANT"] = "VARIANT";
|
|
637
|
+
})(FacetAttributeType || (FacetAttributeType = {}));
|
|
638
|
+
export var FacetAttributeDefinition;
|
|
639
|
+
(function (FacetAttributeDefinition) {
|
|
640
|
+
FacetAttributeDefinition.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }))); };
|
|
641
|
+
})(FacetAttributeDefinition || (FacetAttributeDefinition = {}));
|
|
642
|
+
export var FacetAttributeReference;
|
|
643
|
+
(function (FacetAttributeReference) {
|
|
644
|
+
FacetAttributeReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
645
|
+
})(FacetAttributeReference || (FacetAttributeReference = {}));
|
|
646
|
+
export var RequiredAttributeBehavior;
|
|
647
|
+
(function (RequiredAttributeBehavior) {
|
|
648
|
+
RequiredAttributeBehavior["NOT_REQUIRED"] = "NOT_REQUIRED";
|
|
649
|
+
RequiredAttributeBehavior["REQUIRED_ALWAYS"] = "REQUIRED_ALWAYS";
|
|
650
|
+
})(RequiredAttributeBehavior || (RequiredAttributeBehavior = {}));
|
|
651
|
+
export var FacetAttribute;
|
|
652
|
+
(function (FacetAttribute) {
|
|
653
|
+
FacetAttribute.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeDefinition && {
|
|
654
|
+
AttributeDefinition: FacetAttributeDefinition.filterSensitiveLog(obj.AttributeDefinition),
|
|
655
|
+
}))); };
|
|
656
|
+
})(FacetAttribute || (FacetAttribute = {}));
|
|
657
|
+
export var FacetStyle;
|
|
658
|
+
(function (FacetStyle) {
|
|
659
|
+
FacetStyle["DYNAMIC"] = "DYNAMIC";
|
|
660
|
+
FacetStyle["STATIC"] = "STATIC";
|
|
661
|
+
})(FacetStyle || (FacetStyle = {}));
|
|
662
|
+
export var ObjectType;
|
|
663
|
+
(function (ObjectType) {
|
|
664
|
+
ObjectType["INDEX"] = "INDEX";
|
|
665
|
+
ObjectType["LEAF_NODE"] = "LEAF_NODE";
|
|
666
|
+
ObjectType["NODE"] = "NODE";
|
|
667
|
+
ObjectType["POLICY"] = "POLICY";
|
|
668
|
+
})(ObjectType || (ObjectType = {}));
|
|
669
|
+
export var CreateFacetRequest;
|
|
670
|
+
(function (CreateFacetRequest) {
|
|
671
|
+
CreateFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return FacetAttribute.filterSensitiveLog(item); }) }))); };
|
|
672
|
+
})(CreateFacetRequest || (CreateFacetRequest = {}));
|
|
673
|
+
export var CreateFacetResponse;
|
|
674
|
+
(function (CreateFacetResponse) {
|
|
675
|
+
CreateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
676
|
+
})(CreateFacetResponse || (CreateFacetResponse = {}));
|
|
677
|
+
export var FacetAlreadyExistsException;
|
|
678
|
+
(function (FacetAlreadyExistsException) {
|
|
679
|
+
FacetAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
680
|
+
})(FacetAlreadyExistsException || (FacetAlreadyExistsException = {}));
|
|
681
|
+
export var InvalidRuleException;
|
|
682
|
+
(function (InvalidRuleException) {
|
|
683
|
+
InvalidRuleException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
684
|
+
})(InvalidRuleException || (InvalidRuleException = {}));
|
|
685
|
+
export var CreateIndexRequest;
|
|
686
|
+
(function (CreateIndexRequest) {
|
|
687
|
+
CreateIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
688
|
+
})(CreateIndexRequest || (CreateIndexRequest = {}));
|
|
689
|
+
export var CreateIndexResponse;
|
|
690
|
+
(function (CreateIndexResponse) {
|
|
691
|
+
CreateIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
692
|
+
})(CreateIndexResponse || (CreateIndexResponse = {}));
|
|
693
|
+
export var UnsupportedIndexTypeException;
|
|
694
|
+
(function (UnsupportedIndexTypeException) {
|
|
695
|
+
UnsupportedIndexTypeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
696
|
+
})(UnsupportedIndexTypeException || (UnsupportedIndexTypeException = {}));
|
|
697
|
+
export var CreateObjectRequest;
|
|
698
|
+
(function (CreateObjectRequest) {
|
|
699
|
+
CreateObjectRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ObjectAttributeList && {
|
|
700
|
+
ObjectAttributeList: obj.ObjectAttributeList.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }),
|
|
701
|
+
}))); };
|
|
702
|
+
})(CreateObjectRequest || (CreateObjectRequest = {}));
|
|
703
|
+
export var CreateObjectResponse;
|
|
704
|
+
(function (CreateObjectResponse) {
|
|
705
|
+
CreateObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
706
|
+
})(CreateObjectResponse || (CreateObjectResponse = {}));
|
|
707
|
+
export var CreateSchemaRequest;
|
|
708
|
+
(function (CreateSchemaRequest) {
|
|
709
|
+
CreateSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
710
|
+
})(CreateSchemaRequest || (CreateSchemaRequest = {}));
|
|
711
|
+
export var CreateSchemaResponse;
|
|
712
|
+
(function (CreateSchemaResponse) {
|
|
713
|
+
CreateSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
714
|
+
})(CreateSchemaResponse || (CreateSchemaResponse = {}));
|
|
715
|
+
export var TypedLinkAttributeDefinition;
|
|
716
|
+
(function (TypedLinkAttributeDefinition) {
|
|
717
|
+
TypedLinkAttributeDefinition.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }))); };
|
|
718
|
+
})(TypedLinkAttributeDefinition || (TypedLinkAttributeDefinition = {}));
|
|
719
|
+
export var TypedLinkFacet;
|
|
720
|
+
(function (TypedLinkFacet) {
|
|
721
|
+
TypedLinkFacet.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && {
|
|
722
|
+
Attributes: obj.Attributes.map(function (item) { return TypedLinkAttributeDefinition.filterSensitiveLog(item); }),
|
|
723
|
+
}))); };
|
|
724
|
+
})(TypedLinkFacet || (TypedLinkFacet = {}));
|
|
725
|
+
export var CreateTypedLinkFacetRequest;
|
|
726
|
+
(function (CreateTypedLinkFacetRequest) {
|
|
727
|
+
CreateTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Facet && { Facet: TypedLinkFacet.filterSensitiveLog(obj.Facet) }))); };
|
|
728
|
+
})(CreateTypedLinkFacetRequest || (CreateTypedLinkFacetRequest = {}));
|
|
729
|
+
export var CreateTypedLinkFacetResponse;
|
|
730
|
+
(function (CreateTypedLinkFacetResponse) {
|
|
731
|
+
CreateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
732
|
+
})(CreateTypedLinkFacetResponse || (CreateTypedLinkFacetResponse = {}));
|
|
733
|
+
export var DeleteDirectoryRequest;
|
|
734
|
+
(function (DeleteDirectoryRequest) {
|
|
735
|
+
DeleteDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
736
|
+
})(DeleteDirectoryRequest || (DeleteDirectoryRequest = {}));
|
|
737
|
+
export var DeleteDirectoryResponse;
|
|
738
|
+
(function (DeleteDirectoryResponse) {
|
|
739
|
+
DeleteDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
740
|
+
})(DeleteDirectoryResponse || (DeleteDirectoryResponse = {}));
|
|
741
|
+
export var DirectoryDeletedException;
|
|
742
|
+
(function (DirectoryDeletedException) {
|
|
743
|
+
DirectoryDeletedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
744
|
+
})(DirectoryDeletedException || (DirectoryDeletedException = {}));
|
|
745
|
+
export var DirectoryNotDisabledException;
|
|
746
|
+
(function (DirectoryNotDisabledException) {
|
|
747
|
+
DirectoryNotDisabledException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
748
|
+
})(DirectoryNotDisabledException || (DirectoryNotDisabledException = {}));
|
|
749
|
+
export var DeleteFacetRequest;
|
|
750
|
+
(function (DeleteFacetRequest) {
|
|
751
|
+
DeleteFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
752
|
+
})(DeleteFacetRequest || (DeleteFacetRequest = {}));
|
|
753
|
+
export var DeleteFacetResponse;
|
|
754
|
+
(function (DeleteFacetResponse) {
|
|
755
|
+
DeleteFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
756
|
+
})(DeleteFacetResponse || (DeleteFacetResponse = {}));
|
|
757
|
+
export var FacetInUseException;
|
|
758
|
+
(function (FacetInUseException) {
|
|
759
|
+
FacetInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
760
|
+
})(FacetInUseException || (FacetInUseException = {}));
|
|
761
|
+
export var FacetNotFoundException;
|
|
762
|
+
(function (FacetNotFoundException) {
|
|
763
|
+
FacetNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
764
|
+
})(FacetNotFoundException || (FacetNotFoundException = {}));
|
|
765
|
+
export var DeleteObjectRequest;
|
|
766
|
+
(function (DeleteObjectRequest) {
|
|
767
|
+
DeleteObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
768
|
+
})(DeleteObjectRequest || (DeleteObjectRequest = {}));
|
|
769
|
+
export var DeleteObjectResponse;
|
|
770
|
+
(function (DeleteObjectResponse) {
|
|
771
|
+
DeleteObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
772
|
+
})(DeleteObjectResponse || (DeleteObjectResponse = {}));
|
|
773
|
+
export var ObjectNotDetachedException;
|
|
774
|
+
(function (ObjectNotDetachedException) {
|
|
775
|
+
ObjectNotDetachedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
776
|
+
})(ObjectNotDetachedException || (ObjectNotDetachedException = {}));
|
|
777
|
+
export var DeleteSchemaRequest;
|
|
778
|
+
(function (DeleteSchemaRequest) {
|
|
779
|
+
DeleteSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
780
|
+
})(DeleteSchemaRequest || (DeleteSchemaRequest = {}));
|
|
781
|
+
export var DeleteSchemaResponse;
|
|
782
|
+
(function (DeleteSchemaResponse) {
|
|
783
|
+
DeleteSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
784
|
+
})(DeleteSchemaResponse || (DeleteSchemaResponse = {}));
|
|
785
|
+
export var StillContainsLinksException;
|
|
786
|
+
(function (StillContainsLinksException) {
|
|
787
|
+
StillContainsLinksException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
788
|
+
})(StillContainsLinksException || (StillContainsLinksException = {}));
|
|
789
|
+
export var DeleteTypedLinkFacetRequest;
|
|
790
|
+
(function (DeleteTypedLinkFacetRequest) {
|
|
791
|
+
DeleteTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
792
|
+
})(DeleteTypedLinkFacetRequest || (DeleteTypedLinkFacetRequest = {}));
|
|
793
|
+
export var DeleteTypedLinkFacetResponse;
|
|
794
|
+
(function (DeleteTypedLinkFacetResponse) {
|
|
795
|
+
DeleteTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
796
|
+
})(DeleteTypedLinkFacetResponse || (DeleteTypedLinkFacetResponse = {}));
|
|
797
|
+
export var DetachFromIndexRequest;
|
|
798
|
+
(function (DetachFromIndexRequest) {
|
|
799
|
+
DetachFromIndexRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
800
|
+
})(DetachFromIndexRequest || (DetachFromIndexRequest = {}));
|
|
801
|
+
export var DetachFromIndexResponse;
|
|
802
|
+
(function (DetachFromIndexResponse) {
|
|
803
|
+
DetachFromIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
804
|
+
})(DetachFromIndexResponse || (DetachFromIndexResponse = {}));
|
|
805
|
+
export var ObjectAlreadyDetachedException;
|
|
806
|
+
(function (ObjectAlreadyDetachedException) {
|
|
807
|
+
ObjectAlreadyDetachedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
808
|
+
})(ObjectAlreadyDetachedException || (ObjectAlreadyDetachedException = {}));
|
|
809
|
+
export var DetachObjectRequest;
|
|
810
|
+
(function (DetachObjectRequest) {
|
|
811
|
+
DetachObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
812
|
+
})(DetachObjectRequest || (DetachObjectRequest = {}));
|
|
813
|
+
export var DetachObjectResponse;
|
|
814
|
+
(function (DetachObjectResponse) {
|
|
815
|
+
DetachObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
816
|
+
})(DetachObjectResponse || (DetachObjectResponse = {}));
|
|
817
|
+
export var NotNodeException;
|
|
818
|
+
(function (NotNodeException) {
|
|
819
|
+
NotNodeException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
820
|
+
})(NotNodeException || (NotNodeException = {}));
|
|
821
|
+
export var DetachPolicyRequest;
|
|
822
|
+
(function (DetachPolicyRequest) {
|
|
823
|
+
DetachPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
824
|
+
})(DetachPolicyRequest || (DetachPolicyRequest = {}));
|
|
825
|
+
export var DetachPolicyResponse;
|
|
826
|
+
(function (DetachPolicyResponse) {
|
|
827
|
+
DetachPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
828
|
+
})(DetachPolicyResponse || (DetachPolicyResponse = {}));
|
|
829
|
+
export var DetachTypedLinkRequest;
|
|
830
|
+
(function (DetachTypedLinkRequest) {
|
|
831
|
+
DetachTypedLinkRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
832
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
833
|
+
}))); };
|
|
834
|
+
})(DetachTypedLinkRequest || (DetachTypedLinkRequest = {}));
|
|
835
|
+
export var DisableDirectoryRequest;
|
|
836
|
+
(function (DisableDirectoryRequest) {
|
|
837
|
+
DisableDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
838
|
+
})(DisableDirectoryRequest || (DisableDirectoryRequest = {}));
|
|
839
|
+
export var DisableDirectoryResponse;
|
|
840
|
+
(function (DisableDirectoryResponse) {
|
|
841
|
+
DisableDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
842
|
+
})(DisableDirectoryResponse || (DisableDirectoryResponse = {}));
|
|
843
|
+
export var EnableDirectoryRequest;
|
|
844
|
+
(function (EnableDirectoryRequest) {
|
|
845
|
+
EnableDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
846
|
+
})(EnableDirectoryRequest || (EnableDirectoryRequest = {}));
|
|
847
|
+
export var EnableDirectoryResponse;
|
|
848
|
+
(function (EnableDirectoryResponse) {
|
|
849
|
+
EnableDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
850
|
+
})(EnableDirectoryResponse || (EnableDirectoryResponse = {}));
|
|
851
|
+
export var GetAppliedSchemaVersionRequest;
|
|
852
|
+
(function (GetAppliedSchemaVersionRequest) {
|
|
853
|
+
GetAppliedSchemaVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
854
|
+
})(GetAppliedSchemaVersionRequest || (GetAppliedSchemaVersionRequest = {}));
|
|
855
|
+
export var GetAppliedSchemaVersionResponse;
|
|
856
|
+
(function (GetAppliedSchemaVersionResponse) {
|
|
857
|
+
GetAppliedSchemaVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
858
|
+
})(GetAppliedSchemaVersionResponse || (GetAppliedSchemaVersionResponse = {}));
|
|
859
|
+
export var GetDirectoryRequest;
|
|
860
|
+
(function (GetDirectoryRequest) {
|
|
861
|
+
GetDirectoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
862
|
+
})(GetDirectoryRequest || (GetDirectoryRequest = {}));
|
|
863
|
+
export var DirectoryState;
|
|
864
|
+
(function (DirectoryState) {
|
|
865
|
+
DirectoryState["DELETED"] = "DELETED";
|
|
866
|
+
DirectoryState["DISABLED"] = "DISABLED";
|
|
867
|
+
DirectoryState["ENABLED"] = "ENABLED";
|
|
868
|
+
})(DirectoryState || (DirectoryState = {}));
|
|
869
|
+
export var Directory;
|
|
870
|
+
(function (Directory) {
|
|
871
|
+
Directory.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
872
|
+
})(Directory || (Directory = {}));
|
|
873
|
+
export var GetDirectoryResponse;
|
|
874
|
+
(function (GetDirectoryResponse) {
|
|
875
|
+
GetDirectoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
876
|
+
})(GetDirectoryResponse || (GetDirectoryResponse = {}));
|
|
877
|
+
export var GetFacetRequest;
|
|
878
|
+
(function (GetFacetRequest) {
|
|
879
|
+
GetFacetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
880
|
+
})(GetFacetRequest || (GetFacetRequest = {}));
|
|
881
|
+
export var Facet;
|
|
882
|
+
(function (Facet) {
|
|
883
|
+
Facet.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
884
|
+
})(Facet || (Facet = {}));
|
|
885
|
+
export var GetFacetResponse;
|
|
886
|
+
(function (GetFacetResponse) {
|
|
887
|
+
GetFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
888
|
+
})(GetFacetResponse || (GetFacetResponse = {}));
|
|
889
|
+
export var GetLinkAttributesRequest;
|
|
890
|
+
(function (GetLinkAttributesRequest) {
|
|
891
|
+
GetLinkAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
892
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
893
|
+
}))); };
|
|
894
|
+
})(GetLinkAttributesRequest || (GetLinkAttributesRequest = {}));
|
|
895
|
+
export var GetLinkAttributesResponse;
|
|
896
|
+
(function (GetLinkAttributesResponse) {
|
|
897
|
+
GetLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
|
|
898
|
+
})(GetLinkAttributesResponse || (GetLinkAttributesResponse = {}));
|
|
899
|
+
export var GetObjectAttributesRequest;
|
|
900
|
+
(function (GetObjectAttributesRequest) {
|
|
901
|
+
GetObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
902
|
+
})(GetObjectAttributesRequest || (GetObjectAttributesRequest = {}));
|
|
903
|
+
export var GetObjectAttributesResponse;
|
|
904
|
+
(function (GetObjectAttributesResponse) {
|
|
905
|
+
GetObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
|
|
906
|
+
})(GetObjectAttributesResponse || (GetObjectAttributesResponse = {}));
|
|
907
|
+
export var GetObjectInformationRequest;
|
|
908
|
+
(function (GetObjectInformationRequest) {
|
|
909
|
+
GetObjectInformationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
910
|
+
})(GetObjectInformationRequest || (GetObjectInformationRequest = {}));
|
|
911
|
+
export var GetObjectInformationResponse;
|
|
912
|
+
(function (GetObjectInformationResponse) {
|
|
913
|
+
GetObjectInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
914
|
+
})(GetObjectInformationResponse || (GetObjectInformationResponse = {}));
|
|
915
|
+
export var GetSchemaAsJsonRequest;
|
|
916
|
+
(function (GetSchemaAsJsonRequest) {
|
|
917
|
+
GetSchemaAsJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
918
|
+
})(GetSchemaAsJsonRequest || (GetSchemaAsJsonRequest = {}));
|
|
919
|
+
export var GetSchemaAsJsonResponse;
|
|
920
|
+
(function (GetSchemaAsJsonResponse) {
|
|
921
|
+
GetSchemaAsJsonResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
922
|
+
})(GetSchemaAsJsonResponse || (GetSchemaAsJsonResponse = {}));
|
|
923
|
+
export var GetTypedLinkFacetInformationRequest;
|
|
924
|
+
(function (GetTypedLinkFacetInformationRequest) {
|
|
925
|
+
GetTypedLinkFacetInformationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
926
|
+
})(GetTypedLinkFacetInformationRequest || (GetTypedLinkFacetInformationRequest = {}));
|
|
927
|
+
export var GetTypedLinkFacetInformationResponse;
|
|
928
|
+
(function (GetTypedLinkFacetInformationResponse) {
|
|
929
|
+
GetTypedLinkFacetInformationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
930
|
+
})(GetTypedLinkFacetInformationResponse || (GetTypedLinkFacetInformationResponse = {}));
|
|
931
|
+
export var InvalidNextTokenException;
|
|
932
|
+
(function (InvalidNextTokenException) {
|
|
933
|
+
InvalidNextTokenException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
934
|
+
})(InvalidNextTokenException || (InvalidNextTokenException = {}));
|
|
935
|
+
export var ListAppliedSchemaArnsRequest;
|
|
936
|
+
(function (ListAppliedSchemaArnsRequest) {
|
|
937
|
+
ListAppliedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
938
|
+
})(ListAppliedSchemaArnsRequest || (ListAppliedSchemaArnsRequest = {}));
|
|
939
|
+
export var ListAppliedSchemaArnsResponse;
|
|
940
|
+
(function (ListAppliedSchemaArnsResponse) {
|
|
941
|
+
ListAppliedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
942
|
+
})(ListAppliedSchemaArnsResponse || (ListAppliedSchemaArnsResponse = {}));
|
|
943
|
+
export var ListAttachedIndicesRequest;
|
|
944
|
+
(function (ListAttachedIndicesRequest) {
|
|
945
|
+
ListAttachedIndicesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
946
|
+
})(ListAttachedIndicesRequest || (ListAttachedIndicesRequest = {}));
|
|
947
|
+
export var ListAttachedIndicesResponse;
|
|
948
|
+
(function (ListAttachedIndicesResponse) {
|
|
949
|
+
ListAttachedIndicesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
950
|
+
})(ListAttachedIndicesResponse || (ListAttachedIndicesResponse = {}));
|
|
951
|
+
export var ListDevelopmentSchemaArnsRequest;
|
|
952
|
+
(function (ListDevelopmentSchemaArnsRequest) {
|
|
953
|
+
ListDevelopmentSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
954
|
+
})(ListDevelopmentSchemaArnsRequest || (ListDevelopmentSchemaArnsRequest = {}));
|
|
955
|
+
export var ListDevelopmentSchemaArnsResponse;
|
|
956
|
+
(function (ListDevelopmentSchemaArnsResponse) {
|
|
957
|
+
ListDevelopmentSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
958
|
+
})(ListDevelopmentSchemaArnsResponse || (ListDevelopmentSchemaArnsResponse = {}));
|
|
959
|
+
export var ListDirectoriesRequest;
|
|
960
|
+
(function (ListDirectoriesRequest) {
|
|
961
|
+
ListDirectoriesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
962
|
+
})(ListDirectoriesRequest || (ListDirectoriesRequest = {}));
|
|
963
|
+
export var ListDirectoriesResponse;
|
|
964
|
+
(function (ListDirectoriesResponse) {
|
|
965
|
+
ListDirectoriesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
966
|
+
})(ListDirectoriesResponse || (ListDirectoriesResponse = {}));
|
|
967
|
+
export var ListFacetAttributesRequest;
|
|
968
|
+
(function (ListFacetAttributesRequest) {
|
|
969
|
+
ListFacetAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
970
|
+
})(ListFacetAttributesRequest || (ListFacetAttributesRequest = {}));
|
|
971
|
+
export var ListFacetAttributesResponse;
|
|
972
|
+
(function (ListFacetAttributesResponse) {
|
|
973
|
+
ListFacetAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return FacetAttribute.filterSensitiveLog(item); }) }))); };
|
|
974
|
+
})(ListFacetAttributesResponse || (ListFacetAttributesResponse = {}));
|
|
975
|
+
export var ListFacetNamesRequest;
|
|
976
|
+
(function (ListFacetNamesRequest) {
|
|
977
|
+
ListFacetNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
978
|
+
})(ListFacetNamesRequest || (ListFacetNamesRequest = {}));
|
|
979
|
+
export var ListFacetNamesResponse;
|
|
980
|
+
(function (ListFacetNamesResponse) {
|
|
981
|
+
ListFacetNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
982
|
+
})(ListFacetNamesResponse || (ListFacetNamesResponse = {}));
|
|
983
|
+
export var ListIncomingTypedLinksRequest;
|
|
984
|
+
(function (ListIncomingTypedLinksRequest) {
|
|
985
|
+
ListIncomingTypedLinksRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
|
|
986
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
|
|
987
|
+
}))); };
|
|
988
|
+
})(ListIncomingTypedLinksRequest || (ListIncomingTypedLinksRequest = {}));
|
|
989
|
+
export var ListIncomingTypedLinksResponse;
|
|
990
|
+
(function (ListIncomingTypedLinksResponse) {
|
|
991
|
+
ListIncomingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
992
|
+
})(ListIncomingTypedLinksResponse || (ListIncomingTypedLinksResponse = {}));
|
|
993
|
+
export var ListIndexRequest;
|
|
994
|
+
(function (ListIndexRequest) {
|
|
995
|
+
ListIndexRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.RangesOnIndexedValues && {
|
|
996
|
+
RangesOnIndexedValues: obj.RangesOnIndexedValues.map(function (item) { return ObjectAttributeRange.filterSensitiveLog(item); }),
|
|
997
|
+
}))); };
|
|
998
|
+
})(ListIndexRequest || (ListIndexRequest = {}));
|
|
999
|
+
export var ListIndexResponse;
|
|
1000
|
+
(function (ListIndexResponse) {
|
|
1001
|
+
ListIndexResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1002
|
+
})(ListIndexResponse || (ListIndexResponse = {}));
|
|
1003
|
+
export var ListManagedSchemaArnsRequest;
|
|
1004
|
+
(function (ListManagedSchemaArnsRequest) {
|
|
1005
|
+
ListManagedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1006
|
+
})(ListManagedSchemaArnsRequest || (ListManagedSchemaArnsRequest = {}));
|
|
1007
|
+
export var ListManagedSchemaArnsResponse;
|
|
1008
|
+
(function (ListManagedSchemaArnsResponse) {
|
|
1009
|
+
ListManagedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1010
|
+
})(ListManagedSchemaArnsResponse || (ListManagedSchemaArnsResponse = {}));
|
|
1011
|
+
export var ListObjectAttributesRequest;
|
|
1012
|
+
(function (ListObjectAttributesRequest) {
|
|
1013
|
+
ListObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1014
|
+
})(ListObjectAttributesRequest || (ListObjectAttributesRequest = {}));
|
|
1015
|
+
export var ListObjectAttributesResponse;
|
|
1016
|
+
(function (ListObjectAttributesResponse) {
|
|
1017
|
+
ListObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && { Attributes: obj.Attributes.map(function (item) { return AttributeKeyAndValue.filterSensitiveLog(item); }) }))); };
|
|
1018
|
+
})(ListObjectAttributesResponse || (ListObjectAttributesResponse = {}));
|
|
1019
|
+
export var ListObjectChildrenRequest;
|
|
1020
|
+
(function (ListObjectChildrenRequest) {
|
|
1021
|
+
ListObjectChildrenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1022
|
+
})(ListObjectChildrenRequest || (ListObjectChildrenRequest = {}));
|
|
1023
|
+
export var ListObjectChildrenResponse;
|
|
1024
|
+
(function (ListObjectChildrenResponse) {
|
|
1025
|
+
ListObjectChildrenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1026
|
+
})(ListObjectChildrenResponse || (ListObjectChildrenResponse = {}));
|
|
1027
|
+
export var ListObjectParentPathsRequest;
|
|
1028
|
+
(function (ListObjectParentPathsRequest) {
|
|
1029
|
+
ListObjectParentPathsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1030
|
+
})(ListObjectParentPathsRequest || (ListObjectParentPathsRequest = {}));
|
|
1031
|
+
export var ListObjectParentPathsResponse;
|
|
1032
|
+
(function (ListObjectParentPathsResponse) {
|
|
1033
|
+
ListObjectParentPathsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1034
|
+
})(ListObjectParentPathsResponse || (ListObjectParentPathsResponse = {}));
|
|
1035
|
+
export var CannotListParentOfRootException;
|
|
1036
|
+
(function (CannotListParentOfRootException) {
|
|
1037
|
+
CannotListParentOfRootException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1038
|
+
})(CannotListParentOfRootException || (CannotListParentOfRootException = {}));
|
|
1039
|
+
export var ListObjectParentsRequest;
|
|
1040
|
+
(function (ListObjectParentsRequest) {
|
|
1041
|
+
ListObjectParentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1042
|
+
})(ListObjectParentsRequest || (ListObjectParentsRequest = {}));
|
|
1043
|
+
export var ListObjectParentsResponse;
|
|
1044
|
+
(function (ListObjectParentsResponse) {
|
|
1045
|
+
ListObjectParentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1046
|
+
})(ListObjectParentsResponse || (ListObjectParentsResponse = {}));
|
|
1047
|
+
export var ListObjectPoliciesRequest;
|
|
1048
|
+
(function (ListObjectPoliciesRequest) {
|
|
1049
|
+
ListObjectPoliciesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1050
|
+
})(ListObjectPoliciesRequest || (ListObjectPoliciesRequest = {}));
|
|
1051
|
+
export var ListObjectPoliciesResponse;
|
|
1052
|
+
(function (ListObjectPoliciesResponse) {
|
|
1053
|
+
ListObjectPoliciesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1054
|
+
})(ListObjectPoliciesResponse || (ListObjectPoliciesResponse = {}));
|
|
1055
|
+
export var ListOutgoingTypedLinksRequest;
|
|
1056
|
+
(function (ListOutgoingTypedLinksRequest) {
|
|
1057
|
+
ListOutgoingTypedLinksRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FilterAttributeRanges && {
|
|
1058
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map(function (item) { return TypedLinkAttributeRange.filterSensitiveLog(item); }),
|
|
1059
|
+
}))); };
|
|
1060
|
+
})(ListOutgoingTypedLinksRequest || (ListOutgoingTypedLinksRequest = {}));
|
|
1061
|
+
export var ListOutgoingTypedLinksResponse;
|
|
1062
|
+
(function (ListOutgoingTypedLinksResponse) {
|
|
1063
|
+
ListOutgoingTypedLinksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1064
|
+
})(ListOutgoingTypedLinksResponse || (ListOutgoingTypedLinksResponse = {}));
|
|
1065
|
+
export var ListPolicyAttachmentsRequest;
|
|
1066
|
+
(function (ListPolicyAttachmentsRequest) {
|
|
1067
|
+
ListPolicyAttachmentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1068
|
+
})(ListPolicyAttachmentsRequest || (ListPolicyAttachmentsRequest = {}));
|
|
1069
|
+
export var ListPolicyAttachmentsResponse;
|
|
1070
|
+
(function (ListPolicyAttachmentsResponse) {
|
|
1071
|
+
ListPolicyAttachmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1072
|
+
})(ListPolicyAttachmentsResponse || (ListPolicyAttachmentsResponse = {}));
|
|
1073
|
+
export var ListPublishedSchemaArnsRequest;
|
|
1074
|
+
(function (ListPublishedSchemaArnsRequest) {
|
|
1075
|
+
ListPublishedSchemaArnsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1076
|
+
})(ListPublishedSchemaArnsRequest || (ListPublishedSchemaArnsRequest = {}));
|
|
1077
|
+
export var ListPublishedSchemaArnsResponse;
|
|
1078
|
+
(function (ListPublishedSchemaArnsResponse) {
|
|
1079
|
+
ListPublishedSchemaArnsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1080
|
+
})(ListPublishedSchemaArnsResponse || (ListPublishedSchemaArnsResponse = {}));
|
|
1081
|
+
export var InvalidTaggingRequestException;
|
|
1082
|
+
(function (InvalidTaggingRequestException) {
|
|
1083
|
+
InvalidTaggingRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1084
|
+
})(InvalidTaggingRequestException || (InvalidTaggingRequestException = {}));
|
|
1085
|
+
export var ListTagsForResourceRequest;
|
|
1086
|
+
(function (ListTagsForResourceRequest) {
|
|
1087
|
+
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1088
|
+
})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
|
|
1089
|
+
export var Tag;
|
|
1090
|
+
(function (Tag) {
|
|
1091
|
+
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1092
|
+
})(Tag || (Tag = {}));
|
|
1093
|
+
export var ListTagsForResourceResponse;
|
|
1094
|
+
(function (ListTagsForResourceResponse) {
|
|
1095
|
+
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1096
|
+
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
1097
|
+
export var ListTypedLinkFacetAttributesRequest;
|
|
1098
|
+
(function (ListTypedLinkFacetAttributesRequest) {
|
|
1099
|
+
ListTypedLinkFacetAttributesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1100
|
+
})(ListTypedLinkFacetAttributesRequest || (ListTypedLinkFacetAttributesRequest = {}));
|
|
1101
|
+
export var ListTypedLinkFacetAttributesResponse;
|
|
1102
|
+
(function (ListTypedLinkFacetAttributesResponse) {
|
|
1103
|
+
ListTypedLinkFacetAttributesResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attributes && {
|
|
1104
|
+
Attributes: obj.Attributes.map(function (item) { return TypedLinkAttributeDefinition.filterSensitiveLog(item); }),
|
|
1105
|
+
}))); };
|
|
1106
|
+
})(ListTypedLinkFacetAttributesResponse || (ListTypedLinkFacetAttributesResponse = {}));
|
|
1107
|
+
export var ListTypedLinkFacetNamesRequest;
|
|
1108
|
+
(function (ListTypedLinkFacetNamesRequest) {
|
|
1109
|
+
ListTypedLinkFacetNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1110
|
+
})(ListTypedLinkFacetNamesRequest || (ListTypedLinkFacetNamesRequest = {}));
|
|
1111
|
+
export var ListTypedLinkFacetNamesResponse;
|
|
1112
|
+
(function (ListTypedLinkFacetNamesResponse) {
|
|
1113
|
+
ListTypedLinkFacetNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1114
|
+
})(ListTypedLinkFacetNamesResponse || (ListTypedLinkFacetNamesResponse = {}));
|
|
1115
|
+
export var LookupPolicyRequest;
|
|
1116
|
+
(function (LookupPolicyRequest) {
|
|
1117
|
+
LookupPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1118
|
+
})(LookupPolicyRequest || (LookupPolicyRequest = {}));
|
|
1119
|
+
export var LookupPolicyResponse;
|
|
1120
|
+
(function (LookupPolicyResponse) {
|
|
1121
|
+
LookupPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1122
|
+
})(LookupPolicyResponse || (LookupPolicyResponse = {}));
|
|
1123
|
+
export var PublishSchemaRequest;
|
|
1124
|
+
(function (PublishSchemaRequest) {
|
|
1125
|
+
PublishSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1126
|
+
})(PublishSchemaRequest || (PublishSchemaRequest = {}));
|
|
1127
|
+
export var PublishSchemaResponse;
|
|
1128
|
+
(function (PublishSchemaResponse) {
|
|
1129
|
+
PublishSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1130
|
+
})(PublishSchemaResponse || (PublishSchemaResponse = {}));
|
|
1131
|
+
export var SchemaAlreadyPublishedException;
|
|
1132
|
+
(function (SchemaAlreadyPublishedException) {
|
|
1133
|
+
SchemaAlreadyPublishedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1134
|
+
})(SchemaAlreadyPublishedException || (SchemaAlreadyPublishedException = {}));
|
|
1135
|
+
export var InvalidSchemaDocException;
|
|
1136
|
+
(function (InvalidSchemaDocException) {
|
|
1137
|
+
InvalidSchemaDocException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1138
|
+
})(InvalidSchemaDocException || (InvalidSchemaDocException = {}));
|
|
1139
|
+
export var PutSchemaFromJsonRequest;
|
|
1140
|
+
(function (PutSchemaFromJsonRequest) {
|
|
1141
|
+
PutSchemaFromJsonRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1142
|
+
})(PutSchemaFromJsonRequest || (PutSchemaFromJsonRequest = {}));
|
|
1143
|
+
export var PutSchemaFromJsonResponse;
|
|
1144
|
+
(function (PutSchemaFromJsonResponse) {
|
|
1145
|
+
PutSchemaFromJsonResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1146
|
+
})(PutSchemaFromJsonResponse || (PutSchemaFromJsonResponse = {}));
|
|
1147
|
+
export var RemoveFacetFromObjectRequest;
|
|
1148
|
+
(function (RemoveFacetFromObjectRequest) {
|
|
1149
|
+
RemoveFacetFromObjectRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1150
|
+
})(RemoveFacetFromObjectRequest || (RemoveFacetFromObjectRequest = {}));
|
|
1151
|
+
export var RemoveFacetFromObjectResponse;
|
|
1152
|
+
(function (RemoveFacetFromObjectResponse) {
|
|
1153
|
+
RemoveFacetFromObjectResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1154
|
+
})(RemoveFacetFromObjectResponse || (RemoveFacetFromObjectResponse = {}));
|
|
1155
|
+
export var TagResourceRequest;
|
|
1156
|
+
(function (TagResourceRequest) {
|
|
1157
|
+
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1158
|
+
})(TagResourceRequest || (TagResourceRequest = {}));
|
|
1159
|
+
export var TagResourceResponse;
|
|
1160
|
+
(function (TagResourceResponse) {
|
|
1161
|
+
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1162
|
+
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
1163
|
+
export var UntagResourceRequest;
|
|
1164
|
+
(function (UntagResourceRequest) {
|
|
1165
|
+
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1166
|
+
})(UntagResourceRequest || (UntagResourceRequest = {}));
|
|
1167
|
+
export var UntagResourceResponse;
|
|
1168
|
+
(function (UntagResourceResponse) {
|
|
1169
|
+
UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1170
|
+
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
1171
|
+
export var InvalidFacetUpdateException;
|
|
1172
|
+
(function (InvalidFacetUpdateException) {
|
|
1173
|
+
InvalidFacetUpdateException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1174
|
+
})(InvalidFacetUpdateException || (InvalidFacetUpdateException = {}));
|
|
1175
|
+
export var FacetAttributeUpdate;
|
|
1176
|
+
(function (FacetAttributeUpdate) {
|
|
1177
|
+
FacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: FacetAttribute.filterSensitiveLog(obj.Attribute) }))); };
|
|
1178
|
+
})(FacetAttributeUpdate || (FacetAttributeUpdate = {}));
|
|
1179
|
+
export var UpdateFacetRequest;
|
|
1180
|
+
(function (UpdateFacetRequest) {
|
|
1181
|
+
UpdateFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
|
|
1182
|
+
AttributeUpdates: obj.AttributeUpdates.map(function (item) { return FacetAttributeUpdate.filterSensitiveLog(item); }),
|
|
1183
|
+
}))); };
|
|
1184
|
+
})(UpdateFacetRequest || (UpdateFacetRequest = {}));
|
|
1185
|
+
export var UpdateFacetResponse;
|
|
1186
|
+
(function (UpdateFacetResponse) {
|
|
1187
|
+
UpdateFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1188
|
+
})(UpdateFacetResponse || (UpdateFacetResponse = {}));
|
|
1189
|
+
export var UpdateLinkAttributesRequest;
|
|
1190
|
+
(function (UpdateLinkAttributesRequest) {
|
|
1191
|
+
UpdateLinkAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.TypedLinkSpecifier && {
|
|
1192
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
1193
|
+
})), (obj.AttributeUpdates && {
|
|
1194
|
+
AttributeUpdates: obj.AttributeUpdates.map(function (item) { return LinkAttributeUpdate.filterSensitiveLog(item); }),
|
|
1195
|
+
}))); };
|
|
1196
|
+
})(UpdateLinkAttributesRequest || (UpdateLinkAttributesRequest = {}));
|
|
1197
|
+
export var UpdateLinkAttributesResponse;
|
|
1198
|
+
(function (UpdateLinkAttributesResponse) {
|
|
1199
|
+
UpdateLinkAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1200
|
+
})(UpdateLinkAttributesResponse || (UpdateLinkAttributesResponse = {}));
|
|
1201
|
+
export var UpdateObjectAttributesRequest;
|
|
1202
|
+
(function (UpdateObjectAttributesRequest) {
|
|
1203
|
+
UpdateObjectAttributesRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
|
|
1204
|
+
AttributeUpdates: obj.AttributeUpdates.map(function (item) { return ObjectAttributeUpdate.filterSensitiveLog(item); }),
|
|
1205
|
+
}))); };
|
|
1206
|
+
})(UpdateObjectAttributesRequest || (UpdateObjectAttributesRequest = {}));
|
|
1207
|
+
export var UpdateObjectAttributesResponse;
|
|
1208
|
+
(function (UpdateObjectAttributesResponse) {
|
|
1209
|
+
UpdateObjectAttributesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1210
|
+
})(UpdateObjectAttributesResponse || (UpdateObjectAttributesResponse = {}));
|
|
1211
|
+
export var UpdateSchemaRequest;
|
|
1212
|
+
(function (UpdateSchemaRequest) {
|
|
1213
|
+
UpdateSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1214
|
+
})(UpdateSchemaRequest || (UpdateSchemaRequest = {}));
|
|
1215
|
+
export var UpdateSchemaResponse;
|
|
1216
|
+
(function (UpdateSchemaResponse) {
|
|
1217
|
+
UpdateSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1218
|
+
})(UpdateSchemaResponse || (UpdateSchemaResponse = {}));
|
|
1219
|
+
export var TypedLinkFacetAttributeUpdate;
|
|
1220
|
+
(function (TypedLinkFacetAttributeUpdate) {
|
|
1221
|
+
TypedLinkFacetAttributeUpdate.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attribute && { Attribute: TypedLinkAttributeDefinition.filterSensitiveLog(obj.Attribute) }))); };
|
|
1222
|
+
})(TypedLinkFacetAttributeUpdate || (TypedLinkFacetAttributeUpdate = {}));
|
|
1223
|
+
export var UpdateTypedLinkFacetRequest;
|
|
1224
|
+
(function (UpdateTypedLinkFacetRequest) {
|
|
1225
|
+
UpdateTypedLinkFacetRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AttributeUpdates && {
|
|
1226
|
+
AttributeUpdates: obj.AttributeUpdates.map(function (item) { return TypedLinkFacetAttributeUpdate.filterSensitiveLog(item); }),
|
|
1227
|
+
}))); };
|
|
1228
|
+
})(UpdateTypedLinkFacetRequest || (UpdateTypedLinkFacetRequest = {}));
|
|
1229
|
+
export var UpdateTypedLinkFacetResponse;
|
|
1230
|
+
(function (UpdateTypedLinkFacetResponse) {
|
|
1231
|
+
UpdateTypedLinkFacetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1232
|
+
})(UpdateTypedLinkFacetResponse || (UpdateTypedLinkFacetResponse = {}));
|
|
1233
|
+
export var IncompatibleSchemaException;
|
|
1234
|
+
(function (IncompatibleSchemaException) {
|
|
1235
|
+
IncompatibleSchemaException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1236
|
+
})(IncompatibleSchemaException || (IncompatibleSchemaException = {}));
|
|
1237
|
+
export var UpgradeAppliedSchemaRequest;
|
|
1238
|
+
(function (UpgradeAppliedSchemaRequest) {
|
|
1239
|
+
UpgradeAppliedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1240
|
+
})(UpgradeAppliedSchemaRequest || (UpgradeAppliedSchemaRequest = {}));
|
|
1241
|
+
export var UpgradeAppliedSchemaResponse;
|
|
1242
|
+
(function (UpgradeAppliedSchemaResponse) {
|
|
1243
|
+
UpgradeAppliedSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1244
|
+
})(UpgradeAppliedSchemaResponse || (UpgradeAppliedSchemaResponse = {}));
|
|
1245
|
+
export var UpgradePublishedSchemaRequest;
|
|
1246
|
+
(function (UpgradePublishedSchemaRequest) {
|
|
1247
|
+
UpgradePublishedSchemaRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1248
|
+
})(UpgradePublishedSchemaRequest || (UpgradePublishedSchemaRequest = {}));
|
|
1249
|
+
export var UpgradePublishedSchemaResponse;
|
|
1250
|
+
(function (UpgradePublishedSchemaResponse) {
|
|
1251
|
+
UpgradePublishedSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1252
|
+
})(UpgradePublishedSchemaResponse || (UpgradePublishedSchemaResponse = {}));
|