@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,2627 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BatchListObjectParents = exports.BatchListObjectParentPaths = exports.BatchListObjectChildren = exports.BatchListObjectAttributes = exports.BatchListIndex = exports.ObjectAttributeRange = exports.BatchListIncomingTypedLinks = exports.TypedLinkAttributeRange = exports.TypedAttributeValueRange = exports.RangeMode = exports.BatchListAttachedIndices = exports.BatchGetObjectInformation = exports.BatchGetObjectAttributes = exports.BatchGetLinkAttributes = exports.ConsistencyLevel = exports.AttachTypedLinkResponse = exports.TypedLinkSpecifier = exports.AttachTypedLinkRequest = exports.TypedLinkSchemaAndFacetName = exports.AttributeNameAndValue = exports.NotIndexException = exports.IndexedAttributeMissingException = exports.AttachToIndexResponse = exports.AttachToIndexRequest = exports.NotPolicyException = exports.AttachPolicyResponse = exports.AttachPolicyRequest = exports.LinkNameAlreadyInUseException = exports.AttachObjectResponse = exports.AttachObjectRequest = exports.SchemaAlreadyExistsException = exports.InvalidAttachmentException = exports.ApplySchemaResponse = exports.ApplySchemaRequest = exports.ValidationException = exports.RetryableConflictException = exports.ResourceNotFoundException = exports.LimitExceededException = exports.InvalidArnException = exports.InternalServiceException = exports.FacetValidationException = exports.DirectoryNotEnabledException = exports.AddFacetToObjectResponse = exports.AddFacetToObjectRequest = exports.SchemaFacet = exports.ObjectReference = exports.AttributeKeyAndValue = exports.TypedAttributeValue = exports.AttributeKey = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.ObjectAttributeAction = exports.BatchUpdateLinkAttributes = exports.LinkAttributeUpdate = exports.LinkAttributeAction = exports.UpdateActionType = exports.BatchRemoveFacetFromObject = exports.BatchDetachTypedLink = exports.BatchDetachPolicy = exports.BatchDetachObject = exports.BatchDetachFromIndex = exports.BatchDeleteObject = exports.BatchCreateObject = exports.BatchCreateIndex = exports.BatchAttachTypedLink = exports.BatchAttachToIndex = exports.BatchAttachPolicy = exports.BatchAttachObject = exports.BatchAddFacetToObject = exports.BatchWriteException = exports.BatchWriteExceptionType = exports.BatchReadResponse = exports.BatchReadOperationResponse = exports.BatchReadSuccessfulResponse = exports.BatchLookupPolicyResponse = exports.PolicyToPath = exports.PolicyAttachment = exports.BatchListPolicyAttachmentsResponse = exports.BatchListOutgoingTypedLinksResponse = exports.BatchListObjectPoliciesResponse = exports.BatchListObjectParentsResponse = exports.ObjectIdentifierAndLinkNameTuple = exports.BatchListObjectParentPathsResponse = exports.PathToObjectIdentifiers = exports.BatchListObjectChildrenResponse = exports.BatchListObjectAttributesResponse = exports.BatchListIndexResponse = exports.BatchListIncomingTypedLinksResponse = exports.BatchListAttachedIndicesResponse = exports.IndexAttachment = exports.BatchGetObjectInformationResponse = exports.BatchGetObjectAttributesResponse = exports.BatchGetLinkAttributesResponse = exports.BatchReadException = exports.BatchReadExceptionType = exports.BatchReadRequest = exports.BatchReadOperation = exports.BatchLookupPolicy = exports.BatchListPolicyAttachments = exports.BatchListOutgoingTypedLinks = exports.BatchListObjectPolicies = void 0;
|
|
5
|
+
exports.DeleteDirectoryResponse = exports.DeleteDirectoryRequest = exports.CreateTypedLinkFacetResponse = exports.CreateTypedLinkFacetRequest = exports.TypedLinkFacet = exports.TypedLinkAttributeDefinition = exports.CreateSchemaResponse = exports.CreateSchemaRequest = exports.CreateObjectResponse = exports.CreateObjectRequest = exports.UnsupportedIndexTypeException = exports.CreateIndexResponse = exports.CreateIndexRequest = exports.InvalidRuleException = exports.FacetAlreadyExistsException = exports.CreateFacetResponse = exports.CreateFacetRequest = exports.ObjectType = exports.FacetStyle = exports.FacetAttribute = exports.RequiredAttributeBehavior = exports.FacetAttributeReference = exports.FacetAttributeDefinition = exports.FacetAttributeType = exports.Rule = exports.RuleType = exports.DirectoryAlreadyExistsException = exports.CreateDirectoryResponse = exports.CreateDirectoryRequest = exports.BatchWriteResponse = exports.BatchWriteOperationResponse = exports.BatchUpdateObjectAttributesResponse = exports.BatchUpdateLinkAttributesResponse = exports.BatchRemoveFacetFromObjectResponse = exports.BatchDetachTypedLinkResponse = exports.BatchDetachPolicyResponse = exports.BatchDetachObjectResponse = exports.BatchDetachFromIndexResponse = exports.BatchDeleteObjectResponse = exports.BatchCreateObjectResponse = exports.BatchCreateIndexResponse = exports.BatchAttachTypedLinkResponse = exports.BatchAttachToIndexResponse = exports.BatchAttachPolicyResponse = exports.BatchAttachObjectResponse = exports.BatchAddFacetToObjectResponse = exports.BatchWriteRequest = exports.BatchWriteOperation = exports.BatchUpdateObjectAttributes = exports.ObjectAttributeUpdate = void 0;
|
|
6
|
+
exports.ListAttachedIndicesRequest = exports.ListAppliedSchemaArnsResponse = exports.ListAppliedSchemaArnsRequest = exports.InvalidNextTokenException = exports.GetTypedLinkFacetInformationResponse = exports.GetTypedLinkFacetInformationRequest = exports.GetSchemaAsJsonResponse = exports.GetSchemaAsJsonRequest = exports.GetObjectInformationResponse = exports.GetObjectInformationRequest = exports.GetObjectAttributesResponse = exports.GetObjectAttributesRequest = exports.GetLinkAttributesResponse = exports.GetLinkAttributesRequest = exports.GetFacetResponse = exports.Facet = exports.GetFacetRequest = exports.GetDirectoryResponse = exports.Directory = exports.DirectoryState = exports.GetDirectoryRequest = exports.GetAppliedSchemaVersionResponse = exports.GetAppliedSchemaVersionRequest = exports.EnableDirectoryResponse = exports.EnableDirectoryRequest = exports.DisableDirectoryResponse = exports.DisableDirectoryRequest = exports.DetachTypedLinkRequest = exports.DetachPolicyResponse = exports.DetachPolicyRequest = exports.NotNodeException = exports.DetachObjectResponse = exports.DetachObjectRequest = exports.ObjectAlreadyDetachedException = exports.DetachFromIndexResponse = exports.DetachFromIndexRequest = exports.DeleteTypedLinkFacetResponse = exports.DeleteTypedLinkFacetRequest = exports.StillContainsLinksException = exports.DeleteSchemaResponse = exports.DeleteSchemaRequest = exports.ObjectNotDetachedException = exports.DeleteObjectResponse = exports.DeleteObjectRequest = exports.FacetNotFoundException = exports.FacetInUseException = exports.DeleteFacetResponse = exports.DeleteFacetRequest = exports.DirectoryNotDisabledException = exports.DirectoryDeletedException = void 0;
|
|
7
|
+
exports.RemoveFacetFromObjectResponse = exports.RemoveFacetFromObjectRequest = exports.PutSchemaFromJsonResponse = exports.PutSchemaFromJsonRequest = exports.InvalidSchemaDocException = exports.SchemaAlreadyPublishedException = exports.PublishSchemaResponse = exports.PublishSchemaRequest = exports.LookupPolicyResponse = exports.LookupPolicyRequest = exports.ListTypedLinkFacetNamesResponse = exports.ListTypedLinkFacetNamesRequest = exports.ListTypedLinkFacetAttributesResponse = exports.ListTypedLinkFacetAttributesRequest = exports.ListTagsForResourceResponse = exports.Tag = exports.ListTagsForResourceRequest = exports.InvalidTaggingRequestException = exports.ListPublishedSchemaArnsResponse = exports.ListPublishedSchemaArnsRequest = exports.ListPolicyAttachmentsResponse = exports.ListPolicyAttachmentsRequest = exports.ListOutgoingTypedLinksResponse = exports.ListOutgoingTypedLinksRequest = exports.ListObjectPoliciesResponse = exports.ListObjectPoliciesRequest = exports.ListObjectParentsResponse = exports.ListObjectParentsRequest = exports.CannotListParentOfRootException = exports.ListObjectParentPathsResponse = exports.ListObjectParentPathsRequest = exports.ListObjectChildrenResponse = exports.ListObjectChildrenRequest = exports.ListObjectAttributesResponse = exports.ListObjectAttributesRequest = exports.ListManagedSchemaArnsResponse = exports.ListManagedSchemaArnsRequest = exports.ListIndexResponse = exports.ListIndexRequest = exports.ListIncomingTypedLinksResponse = exports.ListIncomingTypedLinksRequest = exports.ListFacetNamesResponse = exports.ListFacetNamesRequest = exports.ListFacetAttributesResponse = exports.ListFacetAttributesRequest = exports.ListDirectoriesResponse = exports.ListDirectoriesRequest = exports.ListDevelopmentSchemaArnsResponse = exports.ListDevelopmentSchemaArnsRequest = exports.ListAttachedIndicesResponse = void 0;
|
|
8
|
+
exports.UpgradePublishedSchemaResponse = exports.UpgradePublishedSchemaRequest = exports.UpgradeAppliedSchemaResponse = exports.UpgradeAppliedSchemaRequest = exports.IncompatibleSchemaException = exports.UpdateTypedLinkFacetResponse = exports.UpdateTypedLinkFacetRequest = exports.TypedLinkFacetAttributeUpdate = exports.UpdateSchemaResponse = exports.UpdateSchemaRequest = exports.UpdateObjectAttributesResponse = exports.UpdateObjectAttributesRequest = exports.UpdateLinkAttributesResponse = exports.UpdateLinkAttributesRequest = exports.UpdateFacetResponse = exports.UpdateFacetRequest = exports.FacetAttributeUpdate = exports.InvalidFacetUpdateException = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = void 0;
|
|
9
|
+
var AccessDeniedException;
|
|
10
|
+
(function (AccessDeniedException) {
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
AccessDeniedException.filterSensitiveLog = (obj) => ({
|
|
15
|
+
...obj,
|
|
16
|
+
});
|
|
17
|
+
})(AccessDeniedException = exports.AccessDeniedException || (exports.AccessDeniedException = {}));
|
|
18
|
+
var AttributeKey;
|
|
19
|
+
(function (AttributeKey) {
|
|
20
|
+
/**
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
AttributeKey.filterSensitiveLog = (obj) => ({
|
|
24
|
+
...obj,
|
|
25
|
+
});
|
|
26
|
+
})(AttributeKey = exports.AttributeKey || (exports.AttributeKey = {}));
|
|
27
|
+
var TypedAttributeValue;
|
|
28
|
+
(function (TypedAttributeValue) {
|
|
29
|
+
TypedAttributeValue.visit = (value, visitor) => {
|
|
30
|
+
if (value.StringValue !== undefined)
|
|
31
|
+
return visitor.StringValue(value.StringValue);
|
|
32
|
+
if (value.BinaryValue !== undefined)
|
|
33
|
+
return visitor.BinaryValue(value.BinaryValue);
|
|
34
|
+
if (value.BooleanValue !== undefined)
|
|
35
|
+
return visitor.BooleanValue(value.BooleanValue);
|
|
36
|
+
if (value.NumberValue !== undefined)
|
|
37
|
+
return visitor.NumberValue(value.NumberValue);
|
|
38
|
+
if (value.DatetimeValue !== undefined)
|
|
39
|
+
return visitor.DatetimeValue(value.DatetimeValue);
|
|
40
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @internal
|
|
44
|
+
*/
|
|
45
|
+
TypedAttributeValue.filterSensitiveLog = (obj) => {
|
|
46
|
+
if (obj.StringValue !== undefined)
|
|
47
|
+
return { StringValue: obj.StringValue };
|
|
48
|
+
if (obj.BinaryValue !== undefined)
|
|
49
|
+
return { BinaryValue: obj.BinaryValue };
|
|
50
|
+
if (obj.BooleanValue !== undefined)
|
|
51
|
+
return { BooleanValue: obj.BooleanValue };
|
|
52
|
+
if (obj.NumberValue !== undefined)
|
|
53
|
+
return { NumberValue: obj.NumberValue };
|
|
54
|
+
if (obj.DatetimeValue !== undefined)
|
|
55
|
+
return { DatetimeValue: obj.DatetimeValue };
|
|
56
|
+
if (obj.$unknown !== undefined)
|
|
57
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
58
|
+
};
|
|
59
|
+
})(TypedAttributeValue = exports.TypedAttributeValue || (exports.TypedAttributeValue = {}));
|
|
60
|
+
var AttributeKeyAndValue;
|
|
61
|
+
(function (AttributeKeyAndValue) {
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
AttributeKeyAndValue.filterSensitiveLog = (obj) => ({
|
|
66
|
+
...obj,
|
|
67
|
+
...(obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }),
|
|
68
|
+
});
|
|
69
|
+
})(AttributeKeyAndValue = exports.AttributeKeyAndValue || (exports.AttributeKeyAndValue = {}));
|
|
70
|
+
var ObjectReference;
|
|
71
|
+
(function (ObjectReference) {
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
ObjectReference.filterSensitiveLog = (obj) => ({
|
|
76
|
+
...obj,
|
|
77
|
+
});
|
|
78
|
+
})(ObjectReference = exports.ObjectReference || (exports.ObjectReference = {}));
|
|
79
|
+
var SchemaFacet;
|
|
80
|
+
(function (SchemaFacet) {
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
84
|
+
SchemaFacet.filterSensitiveLog = (obj) => ({
|
|
85
|
+
...obj,
|
|
86
|
+
});
|
|
87
|
+
})(SchemaFacet = exports.SchemaFacet || (exports.SchemaFacet = {}));
|
|
88
|
+
var AddFacetToObjectRequest;
|
|
89
|
+
(function (AddFacetToObjectRequest) {
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
AddFacetToObjectRequest.filterSensitiveLog = (obj) => ({
|
|
94
|
+
...obj,
|
|
95
|
+
...(obj.ObjectAttributeList && {
|
|
96
|
+
ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
|
|
97
|
+
}),
|
|
98
|
+
});
|
|
99
|
+
})(AddFacetToObjectRequest = exports.AddFacetToObjectRequest || (exports.AddFacetToObjectRequest = {}));
|
|
100
|
+
var AddFacetToObjectResponse;
|
|
101
|
+
(function (AddFacetToObjectResponse) {
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
AddFacetToObjectResponse.filterSensitiveLog = (obj) => ({
|
|
106
|
+
...obj,
|
|
107
|
+
});
|
|
108
|
+
})(AddFacetToObjectResponse = exports.AddFacetToObjectResponse || (exports.AddFacetToObjectResponse = {}));
|
|
109
|
+
var DirectoryNotEnabledException;
|
|
110
|
+
(function (DirectoryNotEnabledException) {
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
DirectoryNotEnabledException.filterSensitiveLog = (obj) => ({
|
|
115
|
+
...obj,
|
|
116
|
+
});
|
|
117
|
+
})(DirectoryNotEnabledException = exports.DirectoryNotEnabledException || (exports.DirectoryNotEnabledException = {}));
|
|
118
|
+
var FacetValidationException;
|
|
119
|
+
(function (FacetValidationException) {
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
123
|
+
FacetValidationException.filterSensitiveLog = (obj) => ({
|
|
124
|
+
...obj,
|
|
125
|
+
});
|
|
126
|
+
})(FacetValidationException = exports.FacetValidationException || (exports.FacetValidationException = {}));
|
|
127
|
+
var InternalServiceException;
|
|
128
|
+
(function (InternalServiceException) {
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
132
|
+
InternalServiceException.filterSensitiveLog = (obj) => ({
|
|
133
|
+
...obj,
|
|
134
|
+
});
|
|
135
|
+
})(InternalServiceException = exports.InternalServiceException || (exports.InternalServiceException = {}));
|
|
136
|
+
var InvalidArnException;
|
|
137
|
+
(function (InvalidArnException) {
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
*/
|
|
141
|
+
InvalidArnException.filterSensitiveLog = (obj) => ({
|
|
142
|
+
...obj,
|
|
143
|
+
});
|
|
144
|
+
})(InvalidArnException = exports.InvalidArnException || (exports.InvalidArnException = {}));
|
|
145
|
+
var LimitExceededException;
|
|
146
|
+
(function (LimitExceededException) {
|
|
147
|
+
/**
|
|
148
|
+
* @internal
|
|
149
|
+
*/
|
|
150
|
+
LimitExceededException.filterSensitiveLog = (obj) => ({
|
|
151
|
+
...obj,
|
|
152
|
+
});
|
|
153
|
+
})(LimitExceededException = exports.LimitExceededException || (exports.LimitExceededException = {}));
|
|
154
|
+
var ResourceNotFoundException;
|
|
155
|
+
(function (ResourceNotFoundException) {
|
|
156
|
+
/**
|
|
157
|
+
* @internal
|
|
158
|
+
*/
|
|
159
|
+
ResourceNotFoundException.filterSensitiveLog = (obj) => ({
|
|
160
|
+
...obj,
|
|
161
|
+
});
|
|
162
|
+
})(ResourceNotFoundException = exports.ResourceNotFoundException || (exports.ResourceNotFoundException = {}));
|
|
163
|
+
var RetryableConflictException;
|
|
164
|
+
(function (RetryableConflictException) {
|
|
165
|
+
/**
|
|
166
|
+
* @internal
|
|
167
|
+
*/
|
|
168
|
+
RetryableConflictException.filterSensitiveLog = (obj) => ({
|
|
169
|
+
...obj,
|
|
170
|
+
});
|
|
171
|
+
})(RetryableConflictException = exports.RetryableConflictException || (exports.RetryableConflictException = {}));
|
|
172
|
+
var ValidationException;
|
|
173
|
+
(function (ValidationException) {
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
*/
|
|
177
|
+
ValidationException.filterSensitiveLog = (obj) => ({
|
|
178
|
+
...obj,
|
|
179
|
+
});
|
|
180
|
+
})(ValidationException = exports.ValidationException || (exports.ValidationException = {}));
|
|
181
|
+
var ApplySchemaRequest;
|
|
182
|
+
(function (ApplySchemaRequest) {
|
|
183
|
+
/**
|
|
184
|
+
* @internal
|
|
185
|
+
*/
|
|
186
|
+
ApplySchemaRequest.filterSensitiveLog = (obj) => ({
|
|
187
|
+
...obj,
|
|
188
|
+
});
|
|
189
|
+
})(ApplySchemaRequest = exports.ApplySchemaRequest || (exports.ApplySchemaRequest = {}));
|
|
190
|
+
var ApplySchemaResponse;
|
|
191
|
+
(function (ApplySchemaResponse) {
|
|
192
|
+
/**
|
|
193
|
+
* @internal
|
|
194
|
+
*/
|
|
195
|
+
ApplySchemaResponse.filterSensitiveLog = (obj) => ({
|
|
196
|
+
...obj,
|
|
197
|
+
});
|
|
198
|
+
})(ApplySchemaResponse = exports.ApplySchemaResponse || (exports.ApplySchemaResponse = {}));
|
|
199
|
+
var InvalidAttachmentException;
|
|
200
|
+
(function (InvalidAttachmentException) {
|
|
201
|
+
/**
|
|
202
|
+
* @internal
|
|
203
|
+
*/
|
|
204
|
+
InvalidAttachmentException.filterSensitiveLog = (obj) => ({
|
|
205
|
+
...obj,
|
|
206
|
+
});
|
|
207
|
+
})(InvalidAttachmentException = exports.InvalidAttachmentException || (exports.InvalidAttachmentException = {}));
|
|
208
|
+
var SchemaAlreadyExistsException;
|
|
209
|
+
(function (SchemaAlreadyExistsException) {
|
|
210
|
+
/**
|
|
211
|
+
* @internal
|
|
212
|
+
*/
|
|
213
|
+
SchemaAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
214
|
+
...obj,
|
|
215
|
+
});
|
|
216
|
+
})(SchemaAlreadyExistsException = exports.SchemaAlreadyExistsException || (exports.SchemaAlreadyExistsException = {}));
|
|
217
|
+
var AttachObjectRequest;
|
|
218
|
+
(function (AttachObjectRequest) {
|
|
219
|
+
/**
|
|
220
|
+
* @internal
|
|
221
|
+
*/
|
|
222
|
+
AttachObjectRequest.filterSensitiveLog = (obj) => ({
|
|
223
|
+
...obj,
|
|
224
|
+
});
|
|
225
|
+
})(AttachObjectRequest = exports.AttachObjectRequest || (exports.AttachObjectRequest = {}));
|
|
226
|
+
var AttachObjectResponse;
|
|
227
|
+
(function (AttachObjectResponse) {
|
|
228
|
+
/**
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
AttachObjectResponse.filterSensitiveLog = (obj) => ({
|
|
232
|
+
...obj,
|
|
233
|
+
});
|
|
234
|
+
})(AttachObjectResponse = exports.AttachObjectResponse || (exports.AttachObjectResponse = {}));
|
|
235
|
+
var LinkNameAlreadyInUseException;
|
|
236
|
+
(function (LinkNameAlreadyInUseException) {
|
|
237
|
+
/**
|
|
238
|
+
* @internal
|
|
239
|
+
*/
|
|
240
|
+
LinkNameAlreadyInUseException.filterSensitiveLog = (obj) => ({
|
|
241
|
+
...obj,
|
|
242
|
+
});
|
|
243
|
+
})(LinkNameAlreadyInUseException = exports.LinkNameAlreadyInUseException || (exports.LinkNameAlreadyInUseException = {}));
|
|
244
|
+
var AttachPolicyRequest;
|
|
245
|
+
(function (AttachPolicyRequest) {
|
|
246
|
+
/**
|
|
247
|
+
* @internal
|
|
248
|
+
*/
|
|
249
|
+
AttachPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
250
|
+
...obj,
|
|
251
|
+
});
|
|
252
|
+
})(AttachPolicyRequest = exports.AttachPolicyRequest || (exports.AttachPolicyRequest = {}));
|
|
253
|
+
var AttachPolicyResponse;
|
|
254
|
+
(function (AttachPolicyResponse) {
|
|
255
|
+
/**
|
|
256
|
+
* @internal
|
|
257
|
+
*/
|
|
258
|
+
AttachPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
259
|
+
...obj,
|
|
260
|
+
});
|
|
261
|
+
})(AttachPolicyResponse = exports.AttachPolicyResponse || (exports.AttachPolicyResponse = {}));
|
|
262
|
+
var NotPolicyException;
|
|
263
|
+
(function (NotPolicyException) {
|
|
264
|
+
/**
|
|
265
|
+
* @internal
|
|
266
|
+
*/
|
|
267
|
+
NotPolicyException.filterSensitiveLog = (obj) => ({
|
|
268
|
+
...obj,
|
|
269
|
+
});
|
|
270
|
+
})(NotPolicyException = exports.NotPolicyException || (exports.NotPolicyException = {}));
|
|
271
|
+
var AttachToIndexRequest;
|
|
272
|
+
(function (AttachToIndexRequest) {
|
|
273
|
+
/**
|
|
274
|
+
* @internal
|
|
275
|
+
*/
|
|
276
|
+
AttachToIndexRequest.filterSensitiveLog = (obj) => ({
|
|
277
|
+
...obj,
|
|
278
|
+
});
|
|
279
|
+
})(AttachToIndexRequest = exports.AttachToIndexRequest || (exports.AttachToIndexRequest = {}));
|
|
280
|
+
var AttachToIndexResponse;
|
|
281
|
+
(function (AttachToIndexResponse) {
|
|
282
|
+
/**
|
|
283
|
+
* @internal
|
|
284
|
+
*/
|
|
285
|
+
AttachToIndexResponse.filterSensitiveLog = (obj) => ({
|
|
286
|
+
...obj,
|
|
287
|
+
});
|
|
288
|
+
})(AttachToIndexResponse = exports.AttachToIndexResponse || (exports.AttachToIndexResponse = {}));
|
|
289
|
+
var IndexedAttributeMissingException;
|
|
290
|
+
(function (IndexedAttributeMissingException) {
|
|
291
|
+
/**
|
|
292
|
+
* @internal
|
|
293
|
+
*/
|
|
294
|
+
IndexedAttributeMissingException.filterSensitiveLog = (obj) => ({
|
|
295
|
+
...obj,
|
|
296
|
+
});
|
|
297
|
+
})(IndexedAttributeMissingException = exports.IndexedAttributeMissingException || (exports.IndexedAttributeMissingException = {}));
|
|
298
|
+
var NotIndexException;
|
|
299
|
+
(function (NotIndexException) {
|
|
300
|
+
/**
|
|
301
|
+
* @internal
|
|
302
|
+
*/
|
|
303
|
+
NotIndexException.filterSensitiveLog = (obj) => ({
|
|
304
|
+
...obj,
|
|
305
|
+
});
|
|
306
|
+
})(NotIndexException = exports.NotIndexException || (exports.NotIndexException = {}));
|
|
307
|
+
var AttributeNameAndValue;
|
|
308
|
+
(function (AttributeNameAndValue) {
|
|
309
|
+
/**
|
|
310
|
+
* @internal
|
|
311
|
+
*/
|
|
312
|
+
AttributeNameAndValue.filterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
...(obj.Value && { Value: TypedAttributeValue.filterSensitiveLog(obj.Value) }),
|
|
315
|
+
});
|
|
316
|
+
})(AttributeNameAndValue = exports.AttributeNameAndValue || (exports.AttributeNameAndValue = {}));
|
|
317
|
+
var TypedLinkSchemaAndFacetName;
|
|
318
|
+
(function (TypedLinkSchemaAndFacetName) {
|
|
319
|
+
/**
|
|
320
|
+
* @internal
|
|
321
|
+
*/
|
|
322
|
+
TypedLinkSchemaAndFacetName.filterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
})(TypedLinkSchemaAndFacetName = exports.TypedLinkSchemaAndFacetName || (exports.TypedLinkSchemaAndFacetName = {}));
|
|
326
|
+
var AttachTypedLinkRequest;
|
|
327
|
+
(function (AttachTypedLinkRequest) {
|
|
328
|
+
/**
|
|
329
|
+
* @internal
|
|
330
|
+
*/
|
|
331
|
+
AttachTypedLinkRequest.filterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeNameAndValue.filterSensitiveLog(item)) }),
|
|
334
|
+
});
|
|
335
|
+
})(AttachTypedLinkRequest = exports.AttachTypedLinkRequest || (exports.AttachTypedLinkRequest = {}));
|
|
336
|
+
var TypedLinkSpecifier;
|
|
337
|
+
(function (TypedLinkSpecifier) {
|
|
338
|
+
/**
|
|
339
|
+
* @internal
|
|
340
|
+
*/
|
|
341
|
+
TypedLinkSpecifier.filterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
...(obj.IdentityAttributeValues && {
|
|
344
|
+
IdentityAttributeValues: obj.IdentityAttributeValues.map((item) => AttributeNameAndValue.filterSensitiveLog(item)),
|
|
345
|
+
}),
|
|
346
|
+
});
|
|
347
|
+
})(TypedLinkSpecifier = exports.TypedLinkSpecifier || (exports.TypedLinkSpecifier = {}));
|
|
348
|
+
var AttachTypedLinkResponse;
|
|
349
|
+
(function (AttachTypedLinkResponse) {
|
|
350
|
+
/**
|
|
351
|
+
* @internal
|
|
352
|
+
*/
|
|
353
|
+
AttachTypedLinkResponse.filterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
...(obj.TypedLinkSpecifier && {
|
|
356
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
357
|
+
}),
|
|
358
|
+
});
|
|
359
|
+
})(AttachTypedLinkResponse = exports.AttachTypedLinkResponse || (exports.AttachTypedLinkResponse = {}));
|
|
360
|
+
var ConsistencyLevel;
|
|
361
|
+
(function (ConsistencyLevel) {
|
|
362
|
+
ConsistencyLevel["EVENTUAL"] = "EVENTUAL";
|
|
363
|
+
ConsistencyLevel["SERIALIZABLE"] = "SERIALIZABLE";
|
|
364
|
+
})(ConsistencyLevel = exports.ConsistencyLevel || (exports.ConsistencyLevel = {}));
|
|
365
|
+
var BatchGetLinkAttributes;
|
|
366
|
+
(function (BatchGetLinkAttributes) {
|
|
367
|
+
/**
|
|
368
|
+
* @internal
|
|
369
|
+
*/
|
|
370
|
+
BatchGetLinkAttributes.filterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
...(obj.TypedLinkSpecifier && {
|
|
373
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
374
|
+
}),
|
|
375
|
+
});
|
|
376
|
+
})(BatchGetLinkAttributes = exports.BatchGetLinkAttributes || (exports.BatchGetLinkAttributes = {}));
|
|
377
|
+
var BatchGetObjectAttributes;
|
|
378
|
+
(function (BatchGetObjectAttributes) {
|
|
379
|
+
/**
|
|
380
|
+
* @internal
|
|
381
|
+
*/
|
|
382
|
+
BatchGetObjectAttributes.filterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
})(BatchGetObjectAttributes = exports.BatchGetObjectAttributes || (exports.BatchGetObjectAttributes = {}));
|
|
386
|
+
var BatchGetObjectInformation;
|
|
387
|
+
(function (BatchGetObjectInformation) {
|
|
388
|
+
/**
|
|
389
|
+
* @internal
|
|
390
|
+
*/
|
|
391
|
+
BatchGetObjectInformation.filterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
});
|
|
394
|
+
})(BatchGetObjectInformation = exports.BatchGetObjectInformation || (exports.BatchGetObjectInformation = {}));
|
|
395
|
+
var BatchListAttachedIndices;
|
|
396
|
+
(function (BatchListAttachedIndices) {
|
|
397
|
+
/**
|
|
398
|
+
* @internal
|
|
399
|
+
*/
|
|
400
|
+
BatchListAttachedIndices.filterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
});
|
|
403
|
+
})(BatchListAttachedIndices = exports.BatchListAttachedIndices || (exports.BatchListAttachedIndices = {}));
|
|
404
|
+
var RangeMode;
|
|
405
|
+
(function (RangeMode) {
|
|
406
|
+
RangeMode["EXCLUSIVE"] = "EXCLUSIVE";
|
|
407
|
+
RangeMode["FIRST"] = "FIRST";
|
|
408
|
+
RangeMode["INCLUSIVE"] = "INCLUSIVE";
|
|
409
|
+
RangeMode["LAST"] = "LAST";
|
|
410
|
+
RangeMode["LAST_BEFORE_MISSING_VALUES"] = "LAST_BEFORE_MISSING_VALUES";
|
|
411
|
+
})(RangeMode = exports.RangeMode || (exports.RangeMode = {}));
|
|
412
|
+
var TypedAttributeValueRange;
|
|
413
|
+
(function (TypedAttributeValueRange) {
|
|
414
|
+
/**
|
|
415
|
+
* @internal
|
|
416
|
+
*/
|
|
417
|
+
TypedAttributeValueRange.filterSensitiveLog = (obj) => ({
|
|
418
|
+
...obj,
|
|
419
|
+
...(obj.StartValue && { StartValue: TypedAttributeValue.filterSensitiveLog(obj.StartValue) }),
|
|
420
|
+
...(obj.EndValue && { EndValue: TypedAttributeValue.filterSensitiveLog(obj.EndValue) }),
|
|
421
|
+
});
|
|
422
|
+
})(TypedAttributeValueRange = exports.TypedAttributeValueRange || (exports.TypedAttributeValueRange = {}));
|
|
423
|
+
var TypedLinkAttributeRange;
|
|
424
|
+
(function (TypedLinkAttributeRange) {
|
|
425
|
+
/**
|
|
426
|
+
* @internal
|
|
427
|
+
*/
|
|
428
|
+
TypedLinkAttributeRange.filterSensitiveLog = (obj) => ({
|
|
429
|
+
...obj,
|
|
430
|
+
...(obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }),
|
|
431
|
+
});
|
|
432
|
+
})(TypedLinkAttributeRange = exports.TypedLinkAttributeRange || (exports.TypedLinkAttributeRange = {}));
|
|
433
|
+
var BatchListIncomingTypedLinks;
|
|
434
|
+
(function (BatchListIncomingTypedLinks) {
|
|
435
|
+
/**
|
|
436
|
+
* @internal
|
|
437
|
+
*/
|
|
438
|
+
BatchListIncomingTypedLinks.filterSensitiveLog = (obj) => ({
|
|
439
|
+
...obj,
|
|
440
|
+
...(obj.FilterAttributeRanges && {
|
|
441
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
|
|
442
|
+
}),
|
|
443
|
+
});
|
|
444
|
+
})(BatchListIncomingTypedLinks = exports.BatchListIncomingTypedLinks || (exports.BatchListIncomingTypedLinks = {}));
|
|
445
|
+
var ObjectAttributeRange;
|
|
446
|
+
(function (ObjectAttributeRange) {
|
|
447
|
+
/**
|
|
448
|
+
* @internal
|
|
449
|
+
*/
|
|
450
|
+
ObjectAttributeRange.filterSensitiveLog = (obj) => ({
|
|
451
|
+
...obj,
|
|
452
|
+
...(obj.Range && { Range: TypedAttributeValueRange.filterSensitiveLog(obj.Range) }),
|
|
453
|
+
});
|
|
454
|
+
})(ObjectAttributeRange = exports.ObjectAttributeRange || (exports.ObjectAttributeRange = {}));
|
|
455
|
+
var BatchListIndex;
|
|
456
|
+
(function (BatchListIndex) {
|
|
457
|
+
/**
|
|
458
|
+
* @internal
|
|
459
|
+
*/
|
|
460
|
+
BatchListIndex.filterSensitiveLog = (obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
...(obj.RangesOnIndexedValues && {
|
|
463
|
+
RangesOnIndexedValues: obj.RangesOnIndexedValues.map((item) => ObjectAttributeRange.filterSensitiveLog(item)),
|
|
464
|
+
}),
|
|
465
|
+
});
|
|
466
|
+
})(BatchListIndex = exports.BatchListIndex || (exports.BatchListIndex = {}));
|
|
467
|
+
var BatchListObjectAttributes;
|
|
468
|
+
(function (BatchListObjectAttributes) {
|
|
469
|
+
/**
|
|
470
|
+
* @internal
|
|
471
|
+
*/
|
|
472
|
+
BatchListObjectAttributes.filterSensitiveLog = (obj) => ({
|
|
473
|
+
...obj,
|
|
474
|
+
});
|
|
475
|
+
})(BatchListObjectAttributes = exports.BatchListObjectAttributes || (exports.BatchListObjectAttributes = {}));
|
|
476
|
+
var BatchListObjectChildren;
|
|
477
|
+
(function (BatchListObjectChildren) {
|
|
478
|
+
/**
|
|
479
|
+
* @internal
|
|
480
|
+
*/
|
|
481
|
+
BatchListObjectChildren.filterSensitiveLog = (obj) => ({
|
|
482
|
+
...obj,
|
|
483
|
+
});
|
|
484
|
+
})(BatchListObjectChildren = exports.BatchListObjectChildren || (exports.BatchListObjectChildren = {}));
|
|
485
|
+
var BatchListObjectParentPaths;
|
|
486
|
+
(function (BatchListObjectParentPaths) {
|
|
487
|
+
/**
|
|
488
|
+
* @internal
|
|
489
|
+
*/
|
|
490
|
+
BatchListObjectParentPaths.filterSensitiveLog = (obj) => ({
|
|
491
|
+
...obj,
|
|
492
|
+
});
|
|
493
|
+
})(BatchListObjectParentPaths = exports.BatchListObjectParentPaths || (exports.BatchListObjectParentPaths = {}));
|
|
494
|
+
var BatchListObjectParents;
|
|
495
|
+
(function (BatchListObjectParents) {
|
|
496
|
+
/**
|
|
497
|
+
* @internal
|
|
498
|
+
*/
|
|
499
|
+
BatchListObjectParents.filterSensitiveLog = (obj) => ({
|
|
500
|
+
...obj,
|
|
501
|
+
});
|
|
502
|
+
})(BatchListObjectParents = exports.BatchListObjectParents || (exports.BatchListObjectParents = {}));
|
|
503
|
+
var BatchListObjectPolicies;
|
|
504
|
+
(function (BatchListObjectPolicies) {
|
|
505
|
+
/**
|
|
506
|
+
* @internal
|
|
507
|
+
*/
|
|
508
|
+
BatchListObjectPolicies.filterSensitiveLog = (obj) => ({
|
|
509
|
+
...obj,
|
|
510
|
+
});
|
|
511
|
+
})(BatchListObjectPolicies = exports.BatchListObjectPolicies || (exports.BatchListObjectPolicies = {}));
|
|
512
|
+
var BatchListOutgoingTypedLinks;
|
|
513
|
+
(function (BatchListOutgoingTypedLinks) {
|
|
514
|
+
/**
|
|
515
|
+
* @internal
|
|
516
|
+
*/
|
|
517
|
+
BatchListOutgoingTypedLinks.filterSensitiveLog = (obj) => ({
|
|
518
|
+
...obj,
|
|
519
|
+
...(obj.FilterAttributeRanges && {
|
|
520
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
|
|
521
|
+
}),
|
|
522
|
+
});
|
|
523
|
+
})(BatchListOutgoingTypedLinks = exports.BatchListOutgoingTypedLinks || (exports.BatchListOutgoingTypedLinks = {}));
|
|
524
|
+
var BatchListPolicyAttachments;
|
|
525
|
+
(function (BatchListPolicyAttachments) {
|
|
526
|
+
/**
|
|
527
|
+
* @internal
|
|
528
|
+
*/
|
|
529
|
+
BatchListPolicyAttachments.filterSensitiveLog = (obj) => ({
|
|
530
|
+
...obj,
|
|
531
|
+
});
|
|
532
|
+
})(BatchListPolicyAttachments = exports.BatchListPolicyAttachments || (exports.BatchListPolicyAttachments = {}));
|
|
533
|
+
var BatchLookupPolicy;
|
|
534
|
+
(function (BatchLookupPolicy) {
|
|
535
|
+
/**
|
|
536
|
+
* @internal
|
|
537
|
+
*/
|
|
538
|
+
BatchLookupPolicy.filterSensitiveLog = (obj) => ({
|
|
539
|
+
...obj,
|
|
540
|
+
});
|
|
541
|
+
})(BatchLookupPolicy = exports.BatchLookupPolicy || (exports.BatchLookupPolicy = {}));
|
|
542
|
+
var BatchReadOperation;
|
|
543
|
+
(function (BatchReadOperation) {
|
|
544
|
+
/**
|
|
545
|
+
* @internal
|
|
546
|
+
*/
|
|
547
|
+
BatchReadOperation.filterSensitiveLog = (obj) => ({
|
|
548
|
+
...obj,
|
|
549
|
+
...(obj.ListIndex && { ListIndex: BatchListIndex.filterSensitiveLog(obj.ListIndex) }),
|
|
550
|
+
...(obj.ListOutgoingTypedLinks && {
|
|
551
|
+
ListOutgoingTypedLinks: BatchListOutgoingTypedLinks.filterSensitiveLog(obj.ListOutgoingTypedLinks),
|
|
552
|
+
}),
|
|
553
|
+
...(obj.ListIncomingTypedLinks && {
|
|
554
|
+
ListIncomingTypedLinks: BatchListIncomingTypedLinks.filterSensitiveLog(obj.ListIncomingTypedLinks),
|
|
555
|
+
}),
|
|
556
|
+
...(obj.GetLinkAttributes && {
|
|
557
|
+
GetLinkAttributes: BatchGetLinkAttributes.filterSensitiveLog(obj.GetLinkAttributes),
|
|
558
|
+
}),
|
|
559
|
+
});
|
|
560
|
+
})(BatchReadOperation = exports.BatchReadOperation || (exports.BatchReadOperation = {}));
|
|
561
|
+
var BatchReadRequest;
|
|
562
|
+
(function (BatchReadRequest) {
|
|
563
|
+
/**
|
|
564
|
+
* @internal
|
|
565
|
+
*/
|
|
566
|
+
BatchReadRequest.filterSensitiveLog = (obj) => ({
|
|
567
|
+
...obj,
|
|
568
|
+
});
|
|
569
|
+
})(BatchReadRequest = exports.BatchReadRequest || (exports.BatchReadRequest = {}));
|
|
570
|
+
var BatchReadExceptionType;
|
|
571
|
+
(function (BatchReadExceptionType) {
|
|
572
|
+
BatchReadExceptionType["AccessDeniedException"] = "AccessDeniedException";
|
|
573
|
+
BatchReadExceptionType["CannotListParentOfRootException"] = "CannotListParentOfRootException";
|
|
574
|
+
BatchReadExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
|
|
575
|
+
BatchReadExceptionType["FacetValidationException"] = "FacetValidationException";
|
|
576
|
+
BatchReadExceptionType["InternalServiceException"] = "InternalServiceException";
|
|
577
|
+
BatchReadExceptionType["InvalidArnException"] = "InvalidArnException";
|
|
578
|
+
BatchReadExceptionType["InvalidNextTokenException"] = "InvalidNextTokenException";
|
|
579
|
+
BatchReadExceptionType["LimitExceededException"] = "LimitExceededException";
|
|
580
|
+
BatchReadExceptionType["NotIndexException"] = "NotIndexException";
|
|
581
|
+
BatchReadExceptionType["NotNodeException"] = "NotNodeException";
|
|
582
|
+
BatchReadExceptionType["NotPolicyException"] = "NotPolicyException";
|
|
583
|
+
BatchReadExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
|
|
584
|
+
BatchReadExceptionType["ValidationException"] = "ValidationException";
|
|
585
|
+
})(BatchReadExceptionType = exports.BatchReadExceptionType || (exports.BatchReadExceptionType = {}));
|
|
586
|
+
var BatchReadException;
|
|
587
|
+
(function (BatchReadException) {
|
|
588
|
+
/**
|
|
589
|
+
* @internal
|
|
590
|
+
*/
|
|
591
|
+
BatchReadException.filterSensitiveLog = (obj) => ({
|
|
592
|
+
...obj,
|
|
593
|
+
});
|
|
594
|
+
})(BatchReadException = exports.BatchReadException || (exports.BatchReadException = {}));
|
|
595
|
+
var BatchGetLinkAttributesResponse;
|
|
596
|
+
(function (BatchGetLinkAttributesResponse) {
|
|
597
|
+
/**
|
|
598
|
+
* @internal
|
|
599
|
+
*/
|
|
600
|
+
BatchGetLinkAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
601
|
+
...obj,
|
|
602
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
|
|
603
|
+
});
|
|
604
|
+
})(BatchGetLinkAttributesResponse = exports.BatchGetLinkAttributesResponse || (exports.BatchGetLinkAttributesResponse = {}));
|
|
605
|
+
var BatchGetObjectAttributesResponse;
|
|
606
|
+
(function (BatchGetObjectAttributesResponse) {
|
|
607
|
+
/**
|
|
608
|
+
* @internal
|
|
609
|
+
*/
|
|
610
|
+
BatchGetObjectAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
611
|
+
...obj,
|
|
612
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
|
|
613
|
+
});
|
|
614
|
+
})(BatchGetObjectAttributesResponse = exports.BatchGetObjectAttributesResponse || (exports.BatchGetObjectAttributesResponse = {}));
|
|
615
|
+
var BatchGetObjectInformationResponse;
|
|
616
|
+
(function (BatchGetObjectInformationResponse) {
|
|
617
|
+
/**
|
|
618
|
+
* @internal
|
|
619
|
+
*/
|
|
620
|
+
BatchGetObjectInformationResponse.filterSensitiveLog = (obj) => ({
|
|
621
|
+
...obj,
|
|
622
|
+
});
|
|
623
|
+
})(BatchGetObjectInformationResponse = exports.BatchGetObjectInformationResponse || (exports.BatchGetObjectInformationResponse = {}));
|
|
624
|
+
var IndexAttachment;
|
|
625
|
+
(function (IndexAttachment) {
|
|
626
|
+
/**
|
|
627
|
+
* @internal
|
|
628
|
+
*/
|
|
629
|
+
IndexAttachment.filterSensitiveLog = (obj) => ({
|
|
630
|
+
...obj,
|
|
631
|
+
...(obj.IndexedAttributes && {
|
|
632
|
+
IndexedAttributes: obj.IndexedAttributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
|
|
633
|
+
}),
|
|
634
|
+
});
|
|
635
|
+
})(IndexAttachment = exports.IndexAttachment || (exports.IndexAttachment = {}));
|
|
636
|
+
var BatchListAttachedIndicesResponse;
|
|
637
|
+
(function (BatchListAttachedIndicesResponse) {
|
|
638
|
+
/**
|
|
639
|
+
* @internal
|
|
640
|
+
*/
|
|
641
|
+
BatchListAttachedIndicesResponse.filterSensitiveLog = (obj) => ({
|
|
642
|
+
...obj,
|
|
643
|
+
});
|
|
644
|
+
})(BatchListAttachedIndicesResponse = exports.BatchListAttachedIndicesResponse || (exports.BatchListAttachedIndicesResponse = {}));
|
|
645
|
+
var BatchListIncomingTypedLinksResponse;
|
|
646
|
+
(function (BatchListIncomingTypedLinksResponse) {
|
|
647
|
+
/**
|
|
648
|
+
* @internal
|
|
649
|
+
*/
|
|
650
|
+
BatchListIncomingTypedLinksResponse.filterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
});
|
|
653
|
+
})(BatchListIncomingTypedLinksResponse = exports.BatchListIncomingTypedLinksResponse || (exports.BatchListIncomingTypedLinksResponse = {}));
|
|
654
|
+
var BatchListIndexResponse;
|
|
655
|
+
(function (BatchListIndexResponse) {
|
|
656
|
+
/**
|
|
657
|
+
* @internal
|
|
658
|
+
*/
|
|
659
|
+
BatchListIndexResponse.filterSensitiveLog = (obj) => ({
|
|
660
|
+
...obj,
|
|
661
|
+
});
|
|
662
|
+
})(BatchListIndexResponse = exports.BatchListIndexResponse || (exports.BatchListIndexResponse = {}));
|
|
663
|
+
var BatchListObjectAttributesResponse;
|
|
664
|
+
(function (BatchListObjectAttributesResponse) {
|
|
665
|
+
/**
|
|
666
|
+
* @internal
|
|
667
|
+
*/
|
|
668
|
+
BatchListObjectAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
669
|
+
...obj,
|
|
670
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
|
|
671
|
+
});
|
|
672
|
+
})(BatchListObjectAttributesResponse = exports.BatchListObjectAttributesResponse || (exports.BatchListObjectAttributesResponse = {}));
|
|
673
|
+
var BatchListObjectChildrenResponse;
|
|
674
|
+
(function (BatchListObjectChildrenResponse) {
|
|
675
|
+
/**
|
|
676
|
+
* @internal
|
|
677
|
+
*/
|
|
678
|
+
BatchListObjectChildrenResponse.filterSensitiveLog = (obj) => ({
|
|
679
|
+
...obj,
|
|
680
|
+
});
|
|
681
|
+
})(BatchListObjectChildrenResponse = exports.BatchListObjectChildrenResponse || (exports.BatchListObjectChildrenResponse = {}));
|
|
682
|
+
var PathToObjectIdentifiers;
|
|
683
|
+
(function (PathToObjectIdentifiers) {
|
|
684
|
+
/**
|
|
685
|
+
* @internal
|
|
686
|
+
*/
|
|
687
|
+
PathToObjectIdentifiers.filterSensitiveLog = (obj) => ({
|
|
688
|
+
...obj,
|
|
689
|
+
});
|
|
690
|
+
})(PathToObjectIdentifiers = exports.PathToObjectIdentifiers || (exports.PathToObjectIdentifiers = {}));
|
|
691
|
+
var BatchListObjectParentPathsResponse;
|
|
692
|
+
(function (BatchListObjectParentPathsResponse) {
|
|
693
|
+
/**
|
|
694
|
+
* @internal
|
|
695
|
+
*/
|
|
696
|
+
BatchListObjectParentPathsResponse.filterSensitiveLog = (obj) => ({
|
|
697
|
+
...obj,
|
|
698
|
+
});
|
|
699
|
+
})(BatchListObjectParentPathsResponse = exports.BatchListObjectParentPathsResponse || (exports.BatchListObjectParentPathsResponse = {}));
|
|
700
|
+
var ObjectIdentifierAndLinkNameTuple;
|
|
701
|
+
(function (ObjectIdentifierAndLinkNameTuple) {
|
|
702
|
+
/**
|
|
703
|
+
* @internal
|
|
704
|
+
*/
|
|
705
|
+
ObjectIdentifierAndLinkNameTuple.filterSensitiveLog = (obj) => ({
|
|
706
|
+
...obj,
|
|
707
|
+
});
|
|
708
|
+
})(ObjectIdentifierAndLinkNameTuple = exports.ObjectIdentifierAndLinkNameTuple || (exports.ObjectIdentifierAndLinkNameTuple = {}));
|
|
709
|
+
var BatchListObjectParentsResponse;
|
|
710
|
+
(function (BatchListObjectParentsResponse) {
|
|
711
|
+
/**
|
|
712
|
+
* @internal
|
|
713
|
+
*/
|
|
714
|
+
BatchListObjectParentsResponse.filterSensitiveLog = (obj) => ({
|
|
715
|
+
...obj,
|
|
716
|
+
});
|
|
717
|
+
})(BatchListObjectParentsResponse = exports.BatchListObjectParentsResponse || (exports.BatchListObjectParentsResponse = {}));
|
|
718
|
+
var BatchListObjectPoliciesResponse;
|
|
719
|
+
(function (BatchListObjectPoliciesResponse) {
|
|
720
|
+
/**
|
|
721
|
+
* @internal
|
|
722
|
+
*/
|
|
723
|
+
BatchListObjectPoliciesResponse.filterSensitiveLog = (obj) => ({
|
|
724
|
+
...obj,
|
|
725
|
+
});
|
|
726
|
+
})(BatchListObjectPoliciesResponse = exports.BatchListObjectPoliciesResponse || (exports.BatchListObjectPoliciesResponse = {}));
|
|
727
|
+
var BatchListOutgoingTypedLinksResponse;
|
|
728
|
+
(function (BatchListOutgoingTypedLinksResponse) {
|
|
729
|
+
/**
|
|
730
|
+
* @internal
|
|
731
|
+
*/
|
|
732
|
+
BatchListOutgoingTypedLinksResponse.filterSensitiveLog = (obj) => ({
|
|
733
|
+
...obj,
|
|
734
|
+
});
|
|
735
|
+
})(BatchListOutgoingTypedLinksResponse = exports.BatchListOutgoingTypedLinksResponse || (exports.BatchListOutgoingTypedLinksResponse = {}));
|
|
736
|
+
var BatchListPolicyAttachmentsResponse;
|
|
737
|
+
(function (BatchListPolicyAttachmentsResponse) {
|
|
738
|
+
/**
|
|
739
|
+
* @internal
|
|
740
|
+
*/
|
|
741
|
+
BatchListPolicyAttachmentsResponse.filterSensitiveLog = (obj) => ({
|
|
742
|
+
...obj,
|
|
743
|
+
});
|
|
744
|
+
})(BatchListPolicyAttachmentsResponse = exports.BatchListPolicyAttachmentsResponse || (exports.BatchListPolicyAttachmentsResponse = {}));
|
|
745
|
+
var PolicyAttachment;
|
|
746
|
+
(function (PolicyAttachment) {
|
|
747
|
+
/**
|
|
748
|
+
* @internal
|
|
749
|
+
*/
|
|
750
|
+
PolicyAttachment.filterSensitiveLog = (obj) => ({
|
|
751
|
+
...obj,
|
|
752
|
+
});
|
|
753
|
+
})(PolicyAttachment = exports.PolicyAttachment || (exports.PolicyAttachment = {}));
|
|
754
|
+
var PolicyToPath;
|
|
755
|
+
(function (PolicyToPath) {
|
|
756
|
+
/**
|
|
757
|
+
* @internal
|
|
758
|
+
*/
|
|
759
|
+
PolicyToPath.filterSensitiveLog = (obj) => ({
|
|
760
|
+
...obj,
|
|
761
|
+
});
|
|
762
|
+
})(PolicyToPath = exports.PolicyToPath || (exports.PolicyToPath = {}));
|
|
763
|
+
var BatchLookupPolicyResponse;
|
|
764
|
+
(function (BatchLookupPolicyResponse) {
|
|
765
|
+
/**
|
|
766
|
+
* @internal
|
|
767
|
+
*/
|
|
768
|
+
BatchLookupPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
769
|
+
...obj,
|
|
770
|
+
});
|
|
771
|
+
})(BatchLookupPolicyResponse = exports.BatchLookupPolicyResponse || (exports.BatchLookupPolicyResponse = {}));
|
|
772
|
+
var BatchReadSuccessfulResponse;
|
|
773
|
+
(function (BatchReadSuccessfulResponse) {
|
|
774
|
+
/**
|
|
775
|
+
* @internal
|
|
776
|
+
*/
|
|
777
|
+
BatchReadSuccessfulResponse.filterSensitiveLog = (obj) => ({
|
|
778
|
+
...obj,
|
|
779
|
+
...(obj.ListObjectAttributes && {
|
|
780
|
+
ListObjectAttributes: BatchListObjectAttributesResponse.filterSensitiveLog(obj.ListObjectAttributes),
|
|
781
|
+
}),
|
|
782
|
+
...(obj.GetObjectAttributes && {
|
|
783
|
+
GetObjectAttributes: BatchGetObjectAttributesResponse.filterSensitiveLog(obj.GetObjectAttributes),
|
|
784
|
+
}),
|
|
785
|
+
...(obj.GetLinkAttributes && {
|
|
786
|
+
GetLinkAttributes: BatchGetLinkAttributesResponse.filterSensitiveLog(obj.GetLinkAttributes),
|
|
787
|
+
}),
|
|
788
|
+
});
|
|
789
|
+
})(BatchReadSuccessfulResponse = exports.BatchReadSuccessfulResponse || (exports.BatchReadSuccessfulResponse = {}));
|
|
790
|
+
var BatchReadOperationResponse;
|
|
791
|
+
(function (BatchReadOperationResponse) {
|
|
792
|
+
/**
|
|
793
|
+
* @internal
|
|
794
|
+
*/
|
|
795
|
+
BatchReadOperationResponse.filterSensitiveLog = (obj) => ({
|
|
796
|
+
...obj,
|
|
797
|
+
...(obj.SuccessfulResponse && {
|
|
798
|
+
SuccessfulResponse: BatchReadSuccessfulResponse.filterSensitiveLog(obj.SuccessfulResponse),
|
|
799
|
+
}),
|
|
800
|
+
});
|
|
801
|
+
})(BatchReadOperationResponse = exports.BatchReadOperationResponse || (exports.BatchReadOperationResponse = {}));
|
|
802
|
+
var BatchReadResponse;
|
|
803
|
+
(function (BatchReadResponse) {
|
|
804
|
+
/**
|
|
805
|
+
* @internal
|
|
806
|
+
*/
|
|
807
|
+
BatchReadResponse.filterSensitiveLog = (obj) => ({
|
|
808
|
+
...obj,
|
|
809
|
+
});
|
|
810
|
+
})(BatchReadResponse = exports.BatchReadResponse || (exports.BatchReadResponse = {}));
|
|
811
|
+
var BatchWriteExceptionType;
|
|
812
|
+
(function (BatchWriteExceptionType) {
|
|
813
|
+
BatchWriteExceptionType["AccessDeniedException"] = "AccessDeniedException";
|
|
814
|
+
BatchWriteExceptionType["DirectoryNotEnabledException"] = "DirectoryNotEnabledException";
|
|
815
|
+
BatchWriteExceptionType["FacetValidationException"] = "FacetValidationException";
|
|
816
|
+
BatchWriteExceptionType["IndexedAttributeMissingException"] = "IndexedAttributeMissingException";
|
|
817
|
+
BatchWriteExceptionType["InternalServiceException"] = "InternalServiceException";
|
|
818
|
+
BatchWriteExceptionType["InvalidArnException"] = "InvalidArnException";
|
|
819
|
+
BatchWriteExceptionType["InvalidAttachmentException"] = "InvalidAttachmentException";
|
|
820
|
+
BatchWriteExceptionType["LimitExceededException"] = "LimitExceededException";
|
|
821
|
+
BatchWriteExceptionType["LinkNameAlreadyInUseException"] = "LinkNameAlreadyInUseException";
|
|
822
|
+
BatchWriteExceptionType["NotIndexException"] = "NotIndexException";
|
|
823
|
+
BatchWriteExceptionType["NotNodeException"] = "NotNodeException";
|
|
824
|
+
BatchWriteExceptionType["NotPolicyException"] = "NotPolicyException";
|
|
825
|
+
BatchWriteExceptionType["ObjectAlreadyDetachedException"] = "ObjectAlreadyDetachedException";
|
|
826
|
+
BatchWriteExceptionType["ObjectNotDetachedException"] = "ObjectNotDetachedException";
|
|
827
|
+
BatchWriteExceptionType["ResourceNotFoundException"] = "ResourceNotFoundException";
|
|
828
|
+
BatchWriteExceptionType["StillContainsLinksException"] = "StillContainsLinksException";
|
|
829
|
+
BatchWriteExceptionType["UnsupportedIndexTypeException"] = "UnsupportedIndexTypeException";
|
|
830
|
+
BatchWriteExceptionType["ValidationException"] = "ValidationException";
|
|
831
|
+
})(BatchWriteExceptionType = exports.BatchWriteExceptionType || (exports.BatchWriteExceptionType = {}));
|
|
832
|
+
var BatchWriteException;
|
|
833
|
+
(function (BatchWriteException) {
|
|
834
|
+
/**
|
|
835
|
+
* @internal
|
|
836
|
+
*/
|
|
837
|
+
BatchWriteException.filterSensitiveLog = (obj) => ({
|
|
838
|
+
...obj,
|
|
839
|
+
});
|
|
840
|
+
})(BatchWriteException = exports.BatchWriteException || (exports.BatchWriteException = {}));
|
|
841
|
+
var BatchAddFacetToObject;
|
|
842
|
+
(function (BatchAddFacetToObject) {
|
|
843
|
+
/**
|
|
844
|
+
* @internal
|
|
845
|
+
*/
|
|
846
|
+
BatchAddFacetToObject.filterSensitiveLog = (obj) => ({
|
|
847
|
+
...obj,
|
|
848
|
+
...(obj.ObjectAttributeList && {
|
|
849
|
+
ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
|
|
850
|
+
}),
|
|
851
|
+
});
|
|
852
|
+
})(BatchAddFacetToObject = exports.BatchAddFacetToObject || (exports.BatchAddFacetToObject = {}));
|
|
853
|
+
var BatchAttachObject;
|
|
854
|
+
(function (BatchAttachObject) {
|
|
855
|
+
/**
|
|
856
|
+
* @internal
|
|
857
|
+
*/
|
|
858
|
+
BatchAttachObject.filterSensitiveLog = (obj) => ({
|
|
859
|
+
...obj,
|
|
860
|
+
});
|
|
861
|
+
})(BatchAttachObject = exports.BatchAttachObject || (exports.BatchAttachObject = {}));
|
|
862
|
+
var BatchAttachPolicy;
|
|
863
|
+
(function (BatchAttachPolicy) {
|
|
864
|
+
/**
|
|
865
|
+
* @internal
|
|
866
|
+
*/
|
|
867
|
+
BatchAttachPolicy.filterSensitiveLog = (obj) => ({
|
|
868
|
+
...obj,
|
|
869
|
+
});
|
|
870
|
+
})(BatchAttachPolicy = exports.BatchAttachPolicy || (exports.BatchAttachPolicy = {}));
|
|
871
|
+
var BatchAttachToIndex;
|
|
872
|
+
(function (BatchAttachToIndex) {
|
|
873
|
+
/**
|
|
874
|
+
* @internal
|
|
875
|
+
*/
|
|
876
|
+
BatchAttachToIndex.filterSensitiveLog = (obj) => ({
|
|
877
|
+
...obj,
|
|
878
|
+
});
|
|
879
|
+
})(BatchAttachToIndex = exports.BatchAttachToIndex || (exports.BatchAttachToIndex = {}));
|
|
880
|
+
var BatchAttachTypedLink;
|
|
881
|
+
(function (BatchAttachTypedLink) {
|
|
882
|
+
/**
|
|
883
|
+
* @internal
|
|
884
|
+
*/
|
|
885
|
+
BatchAttachTypedLink.filterSensitiveLog = (obj) => ({
|
|
886
|
+
...obj,
|
|
887
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeNameAndValue.filterSensitiveLog(item)) }),
|
|
888
|
+
});
|
|
889
|
+
})(BatchAttachTypedLink = exports.BatchAttachTypedLink || (exports.BatchAttachTypedLink = {}));
|
|
890
|
+
var BatchCreateIndex;
|
|
891
|
+
(function (BatchCreateIndex) {
|
|
892
|
+
/**
|
|
893
|
+
* @internal
|
|
894
|
+
*/
|
|
895
|
+
BatchCreateIndex.filterSensitiveLog = (obj) => ({
|
|
896
|
+
...obj,
|
|
897
|
+
});
|
|
898
|
+
})(BatchCreateIndex = exports.BatchCreateIndex || (exports.BatchCreateIndex = {}));
|
|
899
|
+
var BatchCreateObject;
|
|
900
|
+
(function (BatchCreateObject) {
|
|
901
|
+
/**
|
|
902
|
+
* @internal
|
|
903
|
+
*/
|
|
904
|
+
BatchCreateObject.filterSensitiveLog = (obj) => ({
|
|
905
|
+
...obj,
|
|
906
|
+
...(obj.ObjectAttributeList && {
|
|
907
|
+
ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
|
|
908
|
+
}),
|
|
909
|
+
});
|
|
910
|
+
})(BatchCreateObject = exports.BatchCreateObject || (exports.BatchCreateObject = {}));
|
|
911
|
+
var BatchDeleteObject;
|
|
912
|
+
(function (BatchDeleteObject) {
|
|
913
|
+
/**
|
|
914
|
+
* @internal
|
|
915
|
+
*/
|
|
916
|
+
BatchDeleteObject.filterSensitiveLog = (obj) => ({
|
|
917
|
+
...obj,
|
|
918
|
+
});
|
|
919
|
+
})(BatchDeleteObject = exports.BatchDeleteObject || (exports.BatchDeleteObject = {}));
|
|
920
|
+
var BatchDetachFromIndex;
|
|
921
|
+
(function (BatchDetachFromIndex) {
|
|
922
|
+
/**
|
|
923
|
+
* @internal
|
|
924
|
+
*/
|
|
925
|
+
BatchDetachFromIndex.filterSensitiveLog = (obj) => ({
|
|
926
|
+
...obj,
|
|
927
|
+
});
|
|
928
|
+
})(BatchDetachFromIndex = exports.BatchDetachFromIndex || (exports.BatchDetachFromIndex = {}));
|
|
929
|
+
var BatchDetachObject;
|
|
930
|
+
(function (BatchDetachObject) {
|
|
931
|
+
/**
|
|
932
|
+
* @internal
|
|
933
|
+
*/
|
|
934
|
+
BatchDetachObject.filterSensitiveLog = (obj) => ({
|
|
935
|
+
...obj,
|
|
936
|
+
});
|
|
937
|
+
})(BatchDetachObject = exports.BatchDetachObject || (exports.BatchDetachObject = {}));
|
|
938
|
+
var BatchDetachPolicy;
|
|
939
|
+
(function (BatchDetachPolicy) {
|
|
940
|
+
/**
|
|
941
|
+
* @internal
|
|
942
|
+
*/
|
|
943
|
+
BatchDetachPolicy.filterSensitiveLog = (obj) => ({
|
|
944
|
+
...obj,
|
|
945
|
+
});
|
|
946
|
+
})(BatchDetachPolicy = exports.BatchDetachPolicy || (exports.BatchDetachPolicy = {}));
|
|
947
|
+
var BatchDetachTypedLink;
|
|
948
|
+
(function (BatchDetachTypedLink) {
|
|
949
|
+
/**
|
|
950
|
+
* @internal
|
|
951
|
+
*/
|
|
952
|
+
BatchDetachTypedLink.filterSensitiveLog = (obj) => ({
|
|
953
|
+
...obj,
|
|
954
|
+
...(obj.TypedLinkSpecifier && {
|
|
955
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
956
|
+
}),
|
|
957
|
+
});
|
|
958
|
+
})(BatchDetachTypedLink = exports.BatchDetachTypedLink || (exports.BatchDetachTypedLink = {}));
|
|
959
|
+
var BatchRemoveFacetFromObject;
|
|
960
|
+
(function (BatchRemoveFacetFromObject) {
|
|
961
|
+
/**
|
|
962
|
+
* @internal
|
|
963
|
+
*/
|
|
964
|
+
BatchRemoveFacetFromObject.filterSensitiveLog = (obj) => ({
|
|
965
|
+
...obj,
|
|
966
|
+
});
|
|
967
|
+
})(BatchRemoveFacetFromObject = exports.BatchRemoveFacetFromObject || (exports.BatchRemoveFacetFromObject = {}));
|
|
968
|
+
var UpdateActionType;
|
|
969
|
+
(function (UpdateActionType) {
|
|
970
|
+
UpdateActionType["CREATE_OR_UPDATE"] = "CREATE_OR_UPDATE";
|
|
971
|
+
UpdateActionType["DELETE"] = "DELETE";
|
|
972
|
+
})(UpdateActionType = exports.UpdateActionType || (exports.UpdateActionType = {}));
|
|
973
|
+
var LinkAttributeAction;
|
|
974
|
+
(function (LinkAttributeAction) {
|
|
975
|
+
/**
|
|
976
|
+
* @internal
|
|
977
|
+
*/
|
|
978
|
+
LinkAttributeAction.filterSensitiveLog = (obj) => ({
|
|
979
|
+
...obj,
|
|
980
|
+
...(obj.AttributeUpdateValue && {
|
|
981
|
+
AttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.AttributeUpdateValue),
|
|
982
|
+
}),
|
|
983
|
+
});
|
|
984
|
+
})(LinkAttributeAction = exports.LinkAttributeAction || (exports.LinkAttributeAction = {}));
|
|
985
|
+
var LinkAttributeUpdate;
|
|
986
|
+
(function (LinkAttributeUpdate) {
|
|
987
|
+
/**
|
|
988
|
+
* @internal
|
|
989
|
+
*/
|
|
990
|
+
LinkAttributeUpdate.filterSensitiveLog = (obj) => ({
|
|
991
|
+
...obj,
|
|
992
|
+
...(obj.AttributeAction && { AttributeAction: LinkAttributeAction.filterSensitiveLog(obj.AttributeAction) }),
|
|
993
|
+
});
|
|
994
|
+
})(LinkAttributeUpdate = exports.LinkAttributeUpdate || (exports.LinkAttributeUpdate = {}));
|
|
995
|
+
var BatchUpdateLinkAttributes;
|
|
996
|
+
(function (BatchUpdateLinkAttributes) {
|
|
997
|
+
/**
|
|
998
|
+
* @internal
|
|
999
|
+
*/
|
|
1000
|
+
BatchUpdateLinkAttributes.filterSensitiveLog = (obj) => ({
|
|
1001
|
+
...obj,
|
|
1002
|
+
...(obj.TypedLinkSpecifier && {
|
|
1003
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
1004
|
+
}),
|
|
1005
|
+
...(obj.AttributeUpdates && {
|
|
1006
|
+
AttributeUpdates: obj.AttributeUpdates.map((item) => LinkAttributeUpdate.filterSensitiveLog(item)),
|
|
1007
|
+
}),
|
|
1008
|
+
});
|
|
1009
|
+
})(BatchUpdateLinkAttributes = exports.BatchUpdateLinkAttributes || (exports.BatchUpdateLinkAttributes = {}));
|
|
1010
|
+
var ObjectAttributeAction;
|
|
1011
|
+
(function (ObjectAttributeAction) {
|
|
1012
|
+
/**
|
|
1013
|
+
* @internal
|
|
1014
|
+
*/
|
|
1015
|
+
ObjectAttributeAction.filterSensitiveLog = (obj) => ({
|
|
1016
|
+
...obj,
|
|
1017
|
+
...(obj.ObjectAttributeUpdateValue && {
|
|
1018
|
+
ObjectAttributeUpdateValue: TypedAttributeValue.filterSensitiveLog(obj.ObjectAttributeUpdateValue),
|
|
1019
|
+
}),
|
|
1020
|
+
});
|
|
1021
|
+
})(ObjectAttributeAction = exports.ObjectAttributeAction || (exports.ObjectAttributeAction = {}));
|
|
1022
|
+
var ObjectAttributeUpdate;
|
|
1023
|
+
(function (ObjectAttributeUpdate) {
|
|
1024
|
+
/**
|
|
1025
|
+
* @internal
|
|
1026
|
+
*/
|
|
1027
|
+
ObjectAttributeUpdate.filterSensitiveLog = (obj) => ({
|
|
1028
|
+
...obj,
|
|
1029
|
+
...(obj.ObjectAttributeAction && {
|
|
1030
|
+
ObjectAttributeAction: ObjectAttributeAction.filterSensitiveLog(obj.ObjectAttributeAction),
|
|
1031
|
+
}),
|
|
1032
|
+
});
|
|
1033
|
+
})(ObjectAttributeUpdate = exports.ObjectAttributeUpdate || (exports.ObjectAttributeUpdate = {}));
|
|
1034
|
+
var BatchUpdateObjectAttributes;
|
|
1035
|
+
(function (BatchUpdateObjectAttributes) {
|
|
1036
|
+
/**
|
|
1037
|
+
* @internal
|
|
1038
|
+
*/
|
|
1039
|
+
BatchUpdateObjectAttributes.filterSensitiveLog = (obj) => ({
|
|
1040
|
+
...obj,
|
|
1041
|
+
...(obj.AttributeUpdates && {
|
|
1042
|
+
AttributeUpdates: obj.AttributeUpdates.map((item) => ObjectAttributeUpdate.filterSensitiveLog(item)),
|
|
1043
|
+
}),
|
|
1044
|
+
});
|
|
1045
|
+
})(BatchUpdateObjectAttributes = exports.BatchUpdateObjectAttributes || (exports.BatchUpdateObjectAttributes = {}));
|
|
1046
|
+
var BatchWriteOperation;
|
|
1047
|
+
(function (BatchWriteOperation) {
|
|
1048
|
+
/**
|
|
1049
|
+
* @internal
|
|
1050
|
+
*/
|
|
1051
|
+
BatchWriteOperation.filterSensitiveLog = (obj) => ({
|
|
1052
|
+
...obj,
|
|
1053
|
+
...(obj.UpdateObjectAttributes && {
|
|
1054
|
+
UpdateObjectAttributes: BatchUpdateObjectAttributes.filterSensitiveLog(obj.UpdateObjectAttributes),
|
|
1055
|
+
}),
|
|
1056
|
+
...(obj.AddFacetToObject && { AddFacetToObject: BatchAddFacetToObject.filterSensitiveLog(obj.AddFacetToObject) }),
|
|
1057
|
+
...(obj.AttachTypedLink && { AttachTypedLink: BatchAttachTypedLink.filterSensitiveLog(obj.AttachTypedLink) }),
|
|
1058
|
+
...(obj.DetachTypedLink && { DetachTypedLink: BatchDetachTypedLink.filterSensitiveLog(obj.DetachTypedLink) }),
|
|
1059
|
+
...(obj.UpdateLinkAttributes && {
|
|
1060
|
+
UpdateLinkAttributes: BatchUpdateLinkAttributes.filterSensitiveLog(obj.UpdateLinkAttributes),
|
|
1061
|
+
}),
|
|
1062
|
+
});
|
|
1063
|
+
})(BatchWriteOperation = exports.BatchWriteOperation || (exports.BatchWriteOperation = {}));
|
|
1064
|
+
var BatchWriteRequest;
|
|
1065
|
+
(function (BatchWriteRequest) {
|
|
1066
|
+
/**
|
|
1067
|
+
* @internal
|
|
1068
|
+
*/
|
|
1069
|
+
BatchWriteRequest.filterSensitiveLog = (obj) => ({
|
|
1070
|
+
...obj,
|
|
1071
|
+
});
|
|
1072
|
+
})(BatchWriteRequest = exports.BatchWriteRequest || (exports.BatchWriteRequest = {}));
|
|
1073
|
+
var BatchAddFacetToObjectResponse;
|
|
1074
|
+
(function (BatchAddFacetToObjectResponse) {
|
|
1075
|
+
/**
|
|
1076
|
+
* @internal
|
|
1077
|
+
*/
|
|
1078
|
+
BatchAddFacetToObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1079
|
+
...obj,
|
|
1080
|
+
});
|
|
1081
|
+
})(BatchAddFacetToObjectResponse = exports.BatchAddFacetToObjectResponse || (exports.BatchAddFacetToObjectResponse = {}));
|
|
1082
|
+
var BatchAttachObjectResponse;
|
|
1083
|
+
(function (BatchAttachObjectResponse) {
|
|
1084
|
+
/**
|
|
1085
|
+
* @internal
|
|
1086
|
+
*/
|
|
1087
|
+
BatchAttachObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1088
|
+
...obj,
|
|
1089
|
+
});
|
|
1090
|
+
})(BatchAttachObjectResponse = exports.BatchAttachObjectResponse || (exports.BatchAttachObjectResponse = {}));
|
|
1091
|
+
var BatchAttachPolicyResponse;
|
|
1092
|
+
(function (BatchAttachPolicyResponse) {
|
|
1093
|
+
/**
|
|
1094
|
+
* @internal
|
|
1095
|
+
*/
|
|
1096
|
+
BatchAttachPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
1097
|
+
...obj,
|
|
1098
|
+
});
|
|
1099
|
+
})(BatchAttachPolicyResponse = exports.BatchAttachPolicyResponse || (exports.BatchAttachPolicyResponse = {}));
|
|
1100
|
+
var BatchAttachToIndexResponse;
|
|
1101
|
+
(function (BatchAttachToIndexResponse) {
|
|
1102
|
+
/**
|
|
1103
|
+
* @internal
|
|
1104
|
+
*/
|
|
1105
|
+
BatchAttachToIndexResponse.filterSensitiveLog = (obj) => ({
|
|
1106
|
+
...obj,
|
|
1107
|
+
});
|
|
1108
|
+
})(BatchAttachToIndexResponse = exports.BatchAttachToIndexResponse || (exports.BatchAttachToIndexResponse = {}));
|
|
1109
|
+
var BatchAttachTypedLinkResponse;
|
|
1110
|
+
(function (BatchAttachTypedLinkResponse) {
|
|
1111
|
+
/**
|
|
1112
|
+
* @internal
|
|
1113
|
+
*/
|
|
1114
|
+
BatchAttachTypedLinkResponse.filterSensitiveLog = (obj) => ({
|
|
1115
|
+
...obj,
|
|
1116
|
+
...(obj.TypedLinkSpecifier && {
|
|
1117
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
1118
|
+
}),
|
|
1119
|
+
});
|
|
1120
|
+
})(BatchAttachTypedLinkResponse = exports.BatchAttachTypedLinkResponse || (exports.BatchAttachTypedLinkResponse = {}));
|
|
1121
|
+
var BatchCreateIndexResponse;
|
|
1122
|
+
(function (BatchCreateIndexResponse) {
|
|
1123
|
+
/**
|
|
1124
|
+
* @internal
|
|
1125
|
+
*/
|
|
1126
|
+
BatchCreateIndexResponse.filterSensitiveLog = (obj) => ({
|
|
1127
|
+
...obj,
|
|
1128
|
+
});
|
|
1129
|
+
})(BatchCreateIndexResponse = exports.BatchCreateIndexResponse || (exports.BatchCreateIndexResponse = {}));
|
|
1130
|
+
var BatchCreateObjectResponse;
|
|
1131
|
+
(function (BatchCreateObjectResponse) {
|
|
1132
|
+
/**
|
|
1133
|
+
* @internal
|
|
1134
|
+
*/
|
|
1135
|
+
BatchCreateObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1136
|
+
...obj,
|
|
1137
|
+
});
|
|
1138
|
+
})(BatchCreateObjectResponse = exports.BatchCreateObjectResponse || (exports.BatchCreateObjectResponse = {}));
|
|
1139
|
+
var BatchDeleteObjectResponse;
|
|
1140
|
+
(function (BatchDeleteObjectResponse) {
|
|
1141
|
+
/**
|
|
1142
|
+
* @internal
|
|
1143
|
+
*/
|
|
1144
|
+
BatchDeleteObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1145
|
+
...obj,
|
|
1146
|
+
});
|
|
1147
|
+
})(BatchDeleteObjectResponse = exports.BatchDeleteObjectResponse || (exports.BatchDeleteObjectResponse = {}));
|
|
1148
|
+
var BatchDetachFromIndexResponse;
|
|
1149
|
+
(function (BatchDetachFromIndexResponse) {
|
|
1150
|
+
/**
|
|
1151
|
+
* @internal
|
|
1152
|
+
*/
|
|
1153
|
+
BatchDetachFromIndexResponse.filterSensitiveLog = (obj) => ({
|
|
1154
|
+
...obj,
|
|
1155
|
+
});
|
|
1156
|
+
})(BatchDetachFromIndexResponse = exports.BatchDetachFromIndexResponse || (exports.BatchDetachFromIndexResponse = {}));
|
|
1157
|
+
var BatchDetachObjectResponse;
|
|
1158
|
+
(function (BatchDetachObjectResponse) {
|
|
1159
|
+
/**
|
|
1160
|
+
* @internal
|
|
1161
|
+
*/
|
|
1162
|
+
BatchDetachObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1163
|
+
...obj,
|
|
1164
|
+
});
|
|
1165
|
+
})(BatchDetachObjectResponse = exports.BatchDetachObjectResponse || (exports.BatchDetachObjectResponse = {}));
|
|
1166
|
+
var BatchDetachPolicyResponse;
|
|
1167
|
+
(function (BatchDetachPolicyResponse) {
|
|
1168
|
+
/**
|
|
1169
|
+
* @internal
|
|
1170
|
+
*/
|
|
1171
|
+
BatchDetachPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
1172
|
+
...obj,
|
|
1173
|
+
});
|
|
1174
|
+
})(BatchDetachPolicyResponse = exports.BatchDetachPolicyResponse || (exports.BatchDetachPolicyResponse = {}));
|
|
1175
|
+
var BatchDetachTypedLinkResponse;
|
|
1176
|
+
(function (BatchDetachTypedLinkResponse) {
|
|
1177
|
+
/**
|
|
1178
|
+
* @internal
|
|
1179
|
+
*/
|
|
1180
|
+
BatchDetachTypedLinkResponse.filterSensitiveLog = (obj) => ({
|
|
1181
|
+
...obj,
|
|
1182
|
+
});
|
|
1183
|
+
})(BatchDetachTypedLinkResponse = exports.BatchDetachTypedLinkResponse || (exports.BatchDetachTypedLinkResponse = {}));
|
|
1184
|
+
var BatchRemoveFacetFromObjectResponse;
|
|
1185
|
+
(function (BatchRemoveFacetFromObjectResponse) {
|
|
1186
|
+
/**
|
|
1187
|
+
* @internal
|
|
1188
|
+
*/
|
|
1189
|
+
BatchRemoveFacetFromObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1190
|
+
...obj,
|
|
1191
|
+
});
|
|
1192
|
+
})(BatchRemoveFacetFromObjectResponse = exports.BatchRemoveFacetFromObjectResponse || (exports.BatchRemoveFacetFromObjectResponse = {}));
|
|
1193
|
+
var BatchUpdateLinkAttributesResponse;
|
|
1194
|
+
(function (BatchUpdateLinkAttributesResponse) {
|
|
1195
|
+
/**
|
|
1196
|
+
* @internal
|
|
1197
|
+
*/
|
|
1198
|
+
BatchUpdateLinkAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1199
|
+
...obj,
|
|
1200
|
+
});
|
|
1201
|
+
})(BatchUpdateLinkAttributesResponse = exports.BatchUpdateLinkAttributesResponse || (exports.BatchUpdateLinkAttributesResponse = {}));
|
|
1202
|
+
var BatchUpdateObjectAttributesResponse;
|
|
1203
|
+
(function (BatchUpdateObjectAttributesResponse) {
|
|
1204
|
+
/**
|
|
1205
|
+
* @internal
|
|
1206
|
+
*/
|
|
1207
|
+
BatchUpdateObjectAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1208
|
+
...obj,
|
|
1209
|
+
});
|
|
1210
|
+
})(BatchUpdateObjectAttributesResponse = exports.BatchUpdateObjectAttributesResponse || (exports.BatchUpdateObjectAttributesResponse = {}));
|
|
1211
|
+
var BatchWriteOperationResponse;
|
|
1212
|
+
(function (BatchWriteOperationResponse) {
|
|
1213
|
+
/**
|
|
1214
|
+
* @internal
|
|
1215
|
+
*/
|
|
1216
|
+
BatchWriteOperationResponse.filterSensitiveLog = (obj) => ({
|
|
1217
|
+
...obj,
|
|
1218
|
+
...(obj.AttachTypedLink && {
|
|
1219
|
+
AttachTypedLink: BatchAttachTypedLinkResponse.filterSensitiveLog(obj.AttachTypedLink),
|
|
1220
|
+
}),
|
|
1221
|
+
});
|
|
1222
|
+
})(BatchWriteOperationResponse = exports.BatchWriteOperationResponse || (exports.BatchWriteOperationResponse = {}));
|
|
1223
|
+
var BatchWriteResponse;
|
|
1224
|
+
(function (BatchWriteResponse) {
|
|
1225
|
+
/**
|
|
1226
|
+
* @internal
|
|
1227
|
+
*/
|
|
1228
|
+
BatchWriteResponse.filterSensitiveLog = (obj) => ({
|
|
1229
|
+
...obj,
|
|
1230
|
+
});
|
|
1231
|
+
})(BatchWriteResponse = exports.BatchWriteResponse || (exports.BatchWriteResponse = {}));
|
|
1232
|
+
var CreateDirectoryRequest;
|
|
1233
|
+
(function (CreateDirectoryRequest) {
|
|
1234
|
+
/**
|
|
1235
|
+
* @internal
|
|
1236
|
+
*/
|
|
1237
|
+
CreateDirectoryRequest.filterSensitiveLog = (obj) => ({
|
|
1238
|
+
...obj,
|
|
1239
|
+
});
|
|
1240
|
+
})(CreateDirectoryRequest = exports.CreateDirectoryRequest || (exports.CreateDirectoryRequest = {}));
|
|
1241
|
+
var CreateDirectoryResponse;
|
|
1242
|
+
(function (CreateDirectoryResponse) {
|
|
1243
|
+
/**
|
|
1244
|
+
* @internal
|
|
1245
|
+
*/
|
|
1246
|
+
CreateDirectoryResponse.filterSensitiveLog = (obj) => ({
|
|
1247
|
+
...obj,
|
|
1248
|
+
});
|
|
1249
|
+
})(CreateDirectoryResponse = exports.CreateDirectoryResponse || (exports.CreateDirectoryResponse = {}));
|
|
1250
|
+
var DirectoryAlreadyExistsException;
|
|
1251
|
+
(function (DirectoryAlreadyExistsException) {
|
|
1252
|
+
/**
|
|
1253
|
+
* @internal
|
|
1254
|
+
*/
|
|
1255
|
+
DirectoryAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
1256
|
+
...obj,
|
|
1257
|
+
});
|
|
1258
|
+
})(DirectoryAlreadyExistsException = exports.DirectoryAlreadyExistsException || (exports.DirectoryAlreadyExistsException = {}));
|
|
1259
|
+
var RuleType;
|
|
1260
|
+
(function (RuleType) {
|
|
1261
|
+
RuleType["BINARY_LENGTH"] = "BINARY_LENGTH";
|
|
1262
|
+
RuleType["NUMBER_COMPARISON"] = "NUMBER_COMPARISON";
|
|
1263
|
+
RuleType["STRING_FROM_SET"] = "STRING_FROM_SET";
|
|
1264
|
+
RuleType["STRING_LENGTH"] = "STRING_LENGTH";
|
|
1265
|
+
})(RuleType = exports.RuleType || (exports.RuleType = {}));
|
|
1266
|
+
var Rule;
|
|
1267
|
+
(function (Rule) {
|
|
1268
|
+
/**
|
|
1269
|
+
* @internal
|
|
1270
|
+
*/
|
|
1271
|
+
Rule.filterSensitiveLog = (obj) => ({
|
|
1272
|
+
...obj,
|
|
1273
|
+
});
|
|
1274
|
+
})(Rule = exports.Rule || (exports.Rule = {}));
|
|
1275
|
+
var FacetAttributeType;
|
|
1276
|
+
(function (FacetAttributeType) {
|
|
1277
|
+
FacetAttributeType["BINARY"] = "BINARY";
|
|
1278
|
+
FacetAttributeType["BOOLEAN"] = "BOOLEAN";
|
|
1279
|
+
FacetAttributeType["DATETIME"] = "DATETIME";
|
|
1280
|
+
FacetAttributeType["NUMBER"] = "NUMBER";
|
|
1281
|
+
FacetAttributeType["STRING"] = "STRING";
|
|
1282
|
+
FacetAttributeType["VARIANT"] = "VARIANT";
|
|
1283
|
+
})(FacetAttributeType = exports.FacetAttributeType || (exports.FacetAttributeType = {}));
|
|
1284
|
+
var FacetAttributeDefinition;
|
|
1285
|
+
(function (FacetAttributeDefinition) {
|
|
1286
|
+
/**
|
|
1287
|
+
* @internal
|
|
1288
|
+
*/
|
|
1289
|
+
FacetAttributeDefinition.filterSensitiveLog = (obj) => ({
|
|
1290
|
+
...obj,
|
|
1291
|
+
...(obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }),
|
|
1292
|
+
});
|
|
1293
|
+
})(FacetAttributeDefinition = exports.FacetAttributeDefinition || (exports.FacetAttributeDefinition = {}));
|
|
1294
|
+
var FacetAttributeReference;
|
|
1295
|
+
(function (FacetAttributeReference) {
|
|
1296
|
+
/**
|
|
1297
|
+
* @internal
|
|
1298
|
+
*/
|
|
1299
|
+
FacetAttributeReference.filterSensitiveLog = (obj) => ({
|
|
1300
|
+
...obj,
|
|
1301
|
+
});
|
|
1302
|
+
})(FacetAttributeReference = exports.FacetAttributeReference || (exports.FacetAttributeReference = {}));
|
|
1303
|
+
var RequiredAttributeBehavior;
|
|
1304
|
+
(function (RequiredAttributeBehavior) {
|
|
1305
|
+
RequiredAttributeBehavior["NOT_REQUIRED"] = "NOT_REQUIRED";
|
|
1306
|
+
RequiredAttributeBehavior["REQUIRED_ALWAYS"] = "REQUIRED_ALWAYS";
|
|
1307
|
+
})(RequiredAttributeBehavior = exports.RequiredAttributeBehavior || (exports.RequiredAttributeBehavior = {}));
|
|
1308
|
+
var FacetAttribute;
|
|
1309
|
+
(function (FacetAttribute) {
|
|
1310
|
+
/**
|
|
1311
|
+
* @internal
|
|
1312
|
+
*/
|
|
1313
|
+
FacetAttribute.filterSensitiveLog = (obj) => ({
|
|
1314
|
+
...obj,
|
|
1315
|
+
...(obj.AttributeDefinition && {
|
|
1316
|
+
AttributeDefinition: FacetAttributeDefinition.filterSensitiveLog(obj.AttributeDefinition),
|
|
1317
|
+
}),
|
|
1318
|
+
});
|
|
1319
|
+
})(FacetAttribute = exports.FacetAttribute || (exports.FacetAttribute = {}));
|
|
1320
|
+
var FacetStyle;
|
|
1321
|
+
(function (FacetStyle) {
|
|
1322
|
+
FacetStyle["DYNAMIC"] = "DYNAMIC";
|
|
1323
|
+
FacetStyle["STATIC"] = "STATIC";
|
|
1324
|
+
})(FacetStyle = exports.FacetStyle || (exports.FacetStyle = {}));
|
|
1325
|
+
var ObjectType;
|
|
1326
|
+
(function (ObjectType) {
|
|
1327
|
+
ObjectType["INDEX"] = "INDEX";
|
|
1328
|
+
ObjectType["LEAF_NODE"] = "LEAF_NODE";
|
|
1329
|
+
ObjectType["NODE"] = "NODE";
|
|
1330
|
+
ObjectType["POLICY"] = "POLICY";
|
|
1331
|
+
})(ObjectType = exports.ObjectType || (exports.ObjectType = {}));
|
|
1332
|
+
var CreateFacetRequest;
|
|
1333
|
+
(function (CreateFacetRequest) {
|
|
1334
|
+
/**
|
|
1335
|
+
* @internal
|
|
1336
|
+
*/
|
|
1337
|
+
CreateFacetRequest.filterSensitiveLog = (obj) => ({
|
|
1338
|
+
...obj,
|
|
1339
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => FacetAttribute.filterSensitiveLog(item)) }),
|
|
1340
|
+
});
|
|
1341
|
+
})(CreateFacetRequest = exports.CreateFacetRequest || (exports.CreateFacetRequest = {}));
|
|
1342
|
+
var CreateFacetResponse;
|
|
1343
|
+
(function (CreateFacetResponse) {
|
|
1344
|
+
/**
|
|
1345
|
+
* @internal
|
|
1346
|
+
*/
|
|
1347
|
+
CreateFacetResponse.filterSensitiveLog = (obj) => ({
|
|
1348
|
+
...obj,
|
|
1349
|
+
});
|
|
1350
|
+
})(CreateFacetResponse = exports.CreateFacetResponse || (exports.CreateFacetResponse = {}));
|
|
1351
|
+
var FacetAlreadyExistsException;
|
|
1352
|
+
(function (FacetAlreadyExistsException) {
|
|
1353
|
+
/**
|
|
1354
|
+
* @internal
|
|
1355
|
+
*/
|
|
1356
|
+
FacetAlreadyExistsException.filterSensitiveLog = (obj) => ({
|
|
1357
|
+
...obj,
|
|
1358
|
+
});
|
|
1359
|
+
})(FacetAlreadyExistsException = exports.FacetAlreadyExistsException || (exports.FacetAlreadyExistsException = {}));
|
|
1360
|
+
var InvalidRuleException;
|
|
1361
|
+
(function (InvalidRuleException) {
|
|
1362
|
+
/**
|
|
1363
|
+
* @internal
|
|
1364
|
+
*/
|
|
1365
|
+
InvalidRuleException.filterSensitiveLog = (obj) => ({
|
|
1366
|
+
...obj,
|
|
1367
|
+
});
|
|
1368
|
+
})(InvalidRuleException = exports.InvalidRuleException || (exports.InvalidRuleException = {}));
|
|
1369
|
+
var CreateIndexRequest;
|
|
1370
|
+
(function (CreateIndexRequest) {
|
|
1371
|
+
/**
|
|
1372
|
+
* @internal
|
|
1373
|
+
*/
|
|
1374
|
+
CreateIndexRequest.filterSensitiveLog = (obj) => ({
|
|
1375
|
+
...obj,
|
|
1376
|
+
});
|
|
1377
|
+
})(CreateIndexRequest = exports.CreateIndexRequest || (exports.CreateIndexRequest = {}));
|
|
1378
|
+
var CreateIndexResponse;
|
|
1379
|
+
(function (CreateIndexResponse) {
|
|
1380
|
+
/**
|
|
1381
|
+
* @internal
|
|
1382
|
+
*/
|
|
1383
|
+
CreateIndexResponse.filterSensitiveLog = (obj) => ({
|
|
1384
|
+
...obj,
|
|
1385
|
+
});
|
|
1386
|
+
})(CreateIndexResponse = exports.CreateIndexResponse || (exports.CreateIndexResponse = {}));
|
|
1387
|
+
var UnsupportedIndexTypeException;
|
|
1388
|
+
(function (UnsupportedIndexTypeException) {
|
|
1389
|
+
/**
|
|
1390
|
+
* @internal
|
|
1391
|
+
*/
|
|
1392
|
+
UnsupportedIndexTypeException.filterSensitiveLog = (obj) => ({
|
|
1393
|
+
...obj,
|
|
1394
|
+
});
|
|
1395
|
+
})(UnsupportedIndexTypeException = exports.UnsupportedIndexTypeException || (exports.UnsupportedIndexTypeException = {}));
|
|
1396
|
+
var CreateObjectRequest;
|
|
1397
|
+
(function (CreateObjectRequest) {
|
|
1398
|
+
/**
|
|
1399
|
+
* @internal
|
|
1400
|
+
*/
|
|
1401
|
+
CreateObjectRequest.filterSensitiveLog = (obj) => ({
|
|
1402
|
+
...obj,
|
|
1403
|
+
...(obj.ObjectAttributeList && {
|
|
1404
|
+
ObjectAttributeList: obj.ObjectAttributeList.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)),
|
|
1405
|
+
}),
|
|
1406
|
+
});
|
|
1407
|
+
})(CreateObjectRequest = exports.CreateObjectRequest || (exports.CreateObjectRequest = {}));
|
|
1408
|
+
var CreateObjectResponse;
|
|
1409
|
+
(function (CreateObjectResponse) {
|
|
1410
|
+
/**
|
|
1411
|
+
* @internal
|
|
1412
|
+
*/
|
|
1413
|
+
CreateObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1414
|
+
...obj,
|
|
1415
|
+
});
|
|
1416
|
+
})(CreateObjectResponse = exports.CreateObjectResponse || (exports.CreateObjectResponse = {}));
|
|
1417
|
+
var CreateSchemaRequest;
|
|
1418
|
+
(function (CreateSchemaRequest) {
|
|
1419
|
+
/**
|
|
1420
|
+
* @internal
|
|
1421
|
+
*/
|
|
1422
|
+
CreateSchemaRequest.filterSensitiveLog = (obj) => ({
|
|
1423
|
+
...obj,
|
|
1424
|
+
});
|
|
1425
|
+
})(CreateSchemaRequest = exports.CreateSchemaRequest || (exports.CreateSchemaRequest = {}));
|
|
1426
|
+
var CreateSchemaResponse;
|
|
1427
|
+
(function (CreateSchemaResponse) {
|
|
1428
|
+
/**
|
|
1429
|
+
* @internal
|
|
1430
|
+
*/
|
|
1431
|
+
CreateSchemaResponse.filterSensitiveLog = (obj) => ({
|
|
1432
|
+
...obj,
|
|
1433
|
+
});
|
|
1434
|
+
})(CreateSchemaResponse = exports.CreateSchemaResponse || (exports.CreateSchemaResponse = {}));
|
|
1435
|
+
var TypedLinkAttributeDefinition;
|
|
1436
|
+
(function (TypedLinkAttributeDefinition) {
|
|
1437
|
+
/**
|
|
1438
|
+
* @internal
|
|
1439
|
+
*/
|
|
1440
|
+
TypedLinkAttributeDefinition.filterSensitiveLog = (obj) => ({
|
|
1441
|
+
...obj,
|
|
1442
|
+
...(obj.DefaultValue && { DefaultValue: TypedAttributeValue.filterSensitiveLog(obj.DefaultValue) }),
|
|
1443
|
+
});
|
|
1444
|
+
})(TypedLinkAttributeDefinition = exports.TypedLinkAttributeDefinition || (exports.TypedLinkAttributeDefinition = {}));
|
|
1445
|
+
var TypedLinkFacet;
|
|
1446
|
+
(function (TypedLinkFacet) {
|
|
1447
|
+
/**
|
|
1448
|
+
* @internal
|
|
1449
|
+
*/
|
|
1450
|
+
TypedLinkFacet.filterSensitiveLog = (obj) => ({
|
|
1451
|
+
...obj,
|
|
1452
|
+
...(obj.Attributes && {
|
|
1453
|
+
Attributes: obj.Attributes.map((item) => TypedLinkAttributeDefinition.filterSensitiveLog(item)),
|
|
1454
|
+
}),
|
|
1455
|
+
});
|
|
1456
|
+
})(TypedLinkFacet = exports.TypedLinkFacet || (exports.TypedLinkFacet = {}));
|
|
1457
|
+
var CreateTypedLinkFacetRequest;
|
|
1458
|
+
(function (CreateTypedLinkFacetRequest) {
|
|
1459
|
+
/**
|
|
1460
|
+
* @internal
|
|
1461
|
+
*/
|
|
1462
|
+
CreateTypedLinkFacetRequest.filterSensitiveLog = (obj) => ({
|
|
1463
|
+
...obj,
|
|
1464
|
+
...(obj.Facet && { Facet: TypedLinkFacet.filterSensitiveLog(obj.Facet) }),
|
|
1465
|
+
});
|
|
1466
|
+
})(CreateTypedLinkFacetRequest = exports.CreateTypedLinkFacetRequest || (exports.CreateTypedLinkFacetRequest = {}));
|
|
1467
|
+
var CreateTypedLinkFacetResponse;
|
|
1468
|
+
(function (CreateTypedLinkFacetResponse) {
|
|
1469
|
+
/**
|
|
1470
|
+
* @internal
|
|
1471
|
+
*/
|
|
1472
|
+
CreateTypedLinkFacetResponse.filterSensitiveLog = (obj) => ({
|
|
1473
|
+
...obj,
|
|
1474
|
+
});
|
|
1475
|
+
})(CreateTypedLinkFacetResponse = exports.CreateTypedLinkFacetResponse || (exports.CreateTypedLinkFacetResponse = {}));
|
|
1476
|
+
var DeleteDirectoryRequest;
|
|
1477
|
+
(function (DeleteDirectoryRequest) {
|
|
1478
|
+
/**
|
|
1479
|
+
* @internal
|
|
1480
|
+
*/
|
|
1481
|
+
DeleteDirectoryRequest.filterSensitiveLog = (obj) => ({
|
|
1482
|
+
...obj,
|
|
1483
|
+
});
|
|
1484
|
+
})(DeleteDirectoryRequest = exports.DeleteDirectoryRequest || (exports.DeleteDirectoryRequest = {}));
|
|
1485
|
+
var DeleteDirectoryResponse;
|
|
1486
|
+
(function (DeleteDirectoryResponse) {
|
|
1487
|
+
/**
|
|
1488
|
+
* @internal
|
|
1489
|
+
*/
|
|
1490
|
+
DeleteDirectoryResponse.filterSensitiveLog = (obj) => ({
|
|
1491
|
+
...obj,
|
|
1492
|
+
});
|
|
1493
|
+
})(DeleteDirectoryResponse = exports.DeleteDirectoryResponse || (exports.DeleteDirectoryResponse = {}));
|
|
1494
|
+
var DirectoryDeletedException;
|
|
1495
|
+
(function (DirectoryDeletedException) {
|
|
1496
|
+
/**
|
|
1497
|
+
* @internal
|
|
1498
|
+
*/
|
|
1499
|
+
DirectoryDeletedException.filterSensitiveLog = (obj) => ({
|
|
1500
|
+
...obj,
|
|
1501
|
+
});
|
|
1502
|
+
})(DirectoryDeletedException = exports.DirectoryDeletedException || (exports.DirectoryDeletedException = {}));
|
|
1503
|
+
var DirectoryNotDisabledException;
|
|
1504
|
+
(function (DirectoryNotDisabledException) {
|
|
1505
|
+
/**
|
|
1506
|
+
* @internal
|
|
1507
|
+
*/
|
|
1508
|
+
DirectoryNotDisabledException.filterSensitiveLog = (obj) => ({
|
|
1509
|
+
...obj,
|
|
1510
|
+
});
|
|
1511
|
+
})(DirectoryNotDisabledException = exports.DirectoryNotDisabledException || (exports.DirectoryNotDisabledException = {}));
|
|
1512
|
+
var DeleteFacetRequest;
|
|
1513
|
+
(function (DeleteFacetRequest) {
|
|
1514
|
+
/**
|
|
1515
|
+
* @internal
|
|
1516
|
+
*/
|
|
1517
|
+
DeleteFacetRequest.filterSensitiveLog = (obj) => ({
|
|
1518
|
+
...obj,
|
|
1519
|
+
});
|
|
1520
|
+
})(DeleteFacetRequest = exports.DeleteFacetRequest || (exports.DeleteFacetRequest = {}));
|
|
1521
|
+
var DeleteFacetResponse;
|
|
1522
|
+
(function (DeleteFacetResponse) {
|
|
1523
|
+
/**
|
|
1524
|
+
* @internal
|
|
1525
|
+
*/
|
|
1526
|
+
DeleteFacetResponse.filterSensitiveLog = (obj) => ({
|
|
1527
|
+
...obj,
|
|
1528
|
+
});
|
|
1529
|
+
})(DeleteFacetResponse = exports.DeleteFacetResponse || (exports.DeleteFacetResponse = {}));
|
|
1530
|
+
var FacetInUseException;
|
|
1531
|
+
(function (FacetInUseException) {
|
|
1532
|
+
/**
|
|
1533
|
+
* @internal
|
|
1534
|
+
*/
|
|
1535
|
+
FacetInUseException.filterSensitiveLog = (obj) => ({
|
|
1536
|
+
...obj,
|
|
1537
|
+
});
|
|
1538
|
+
})(FacetInUseException = exports.FacetInUseException || (exports.FacetInUseException = {}));
|
|
1539
|
+
var FacetNotFoundException;
|
|
1540
|
+
(function (FacetNotFoundException) {
|
|
1541
|
+
/**
|
|
1542
|
+
* @internal
|
|
1543
|
+
*/
|
|
1544
|
+
FacetNotFoundException.filterSensitiveLog = (obj) => ({
|
|
1545
|
+
...obj,
|
|
1546
|
+
});
|
|
1547
|
+
})(FacetNotFoundException = exports.FacetNotFoundException || (exports.FacetNotFoundException = {}));
|
|
1548
|
+
var DeleteObjectRequest;
|
|
1549
|
+
(function (DeleteObjectRequest) {
|
|
1550
|
+
/**
|
|
1551
|
+
* @internal
|
|
1552
|
+
*/
|
|
1553
|
+
DeleteObjectRequest.filterSensitiveLog = (obj) => ({
|
|
1554
|
+
...obj,
|
|
1555
|
+
});
|
|
1556
|
+
})(DeleteObjectRequest = exports.DeleteObjectRequest || (exports.DeleteObjectRequest = {}));
|
|
1557
|
+
var DeleteObjectResponse;
|
|
1558
|
+
(function (DeleteObjectResponse) {
|
|
1559
|
+
/**
|
|
1560
|
+
* @internal
|
|
1561
|
+
*/
|
|
1562
|
+
DeleteObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1563
|
+
...obj,
|
|
1564
|
+
});
|
|
1565
|
+
})(DeleteObjectResponse = exports.DeleteObjectResponse || (exports.DeleteObjectResponse = {}));
|
|
1566
|
+
var ObjectNotDetachedException;
|
|
1567
|
+
(function (ObjectNotDetachedException) {
|
|
1568
|
+
/**
|
|
1569
|
+
* @internal
|
|
1570
|
+
*/
|
|
1571
|
+
ObjectNotDetachedException.filterSensitiveLog = (obj) => ({
|
|
1572
|
+
...obj,
|
|
1573
|
+
});
|
|
1574
|
+
})(ObjectNotDetachedException = exports.ObjectNotDetachedException || (exports.ObjectNotDetachedException = {}));
|
|
1575
|
+
var DeleteSchemaRequest;
|
|
1576
|
+
(function (DeleteSchemaRequest) {
|
|
1577
|
+
/**
|
|
1578
|
+
* @internal
|
|
1579
|
+
*/
|
|
1580
|
+
DeleteSchemaRequest.filterSensitiveLog = (obj) => ({
|
|
1581
|
+
...obj,
|
|
1582
|
+
});
|
|
1583
|
+
})(DeleteSchemaRequest = exports.DeleteSchemaRequest || (exports.DeleteSchemaRequest = {}));
|
|
1584
|
+
var DeleteSchemaResponse;
|
|
1585
|
+
(function (DeleteSchemaResponse) {
|
|
1586
|
+
/**
|
|
1587
|
+
* @internal
|
|
1588
|
+
*/
|
|
1589
|
+
DeleteSchemaResponse.filterSensitiveLog = (obj) => ({
|
|
1590
|
+
...obj,
|
|
1591
|
+
});
|
|
1592
|
+
})(DeleteSchemaResponse = exports.DeleteSchemaResponse || (exports.DeleteSchemaResponse = {}));
|
|
1593
|
+
var StillContainsLinksException;
|
|
1594
|
+
(function (StillContainsLinksException) {
|
|
1595
|
+
/**
|
|
1596
|
+
* @internal
|
|
1597
|
+
*/
|
|
1598
|
+
StillContainsLinksException.filterSensitiveLog = (obj) => ({
|
|
1599
|
+
...obj,
|
|
1600
|
+
});
|
|
1601
|
+
})(StillContainsLinksException = exports.StillContainsLinksException || (exports.StillContainsLinksException = {}));
|
|
1602
|
+
var DeleteTypedLinkFacetRequest;
|
|
1603
|
+
(function (DeleteTypedLinkFacetRequest) {
|
|
1604
|
+
/**
|
|
1605
|
+
* @internal
|
|
1606
|
+
*/
|
|
1607
|
+
DeleteTypedLinkFacetRequest.filterSensitiveLog = (obj) => ({
|
|
1608
|
+
...obj,
|
|
1609
|
+
});
|
|
1610
|
+
})(DeleteTypedLinkFacetRequest = exports.DeleteTypedLinkFacetRequest || (exports.DeleteTypedLinkFacetRequest = {}));
|
|
1611
|
+
var DeleteTypedLinkFacetResponse;
|
|
1612
|
+
(function (DeleteTypedLinkFacetResponse) {
|
|
1613
|
+
/**
|
|
1614
|
+
* @internal
|
|
1615
|
+
*/
|
|
1616
|
+
DeleteTypedLinkFacetResponse.filterSensitiveLog = (obj) => ({
|
|
1617
|
+
...obj,
|
|
1618
|
+
});
|
|
1619
|
+
})(DeleteTypedLinkFacetResponse = exports.DeleteTypedLinkFacetResponse || (exports.DeleteTypedLinkFacetResponse = {}));
|
|
1620
|
+
var DetachFromIndexRequest;
|
|
1621
|
+
(function (DetachFromIndexRequest) {
|
|
1622
|
+
/**
|
|
1623
|
+
* @internal
|
|
1624
|
+
*/
|
|
1625
|
+
DetachFromIndexRequest.filterSensitiveLog = (obj) => ({
|
|
1626
|
+
...obj,
|
|
1627
|
+
});
|
|
1628
|
+
})(DetachFromIndexRequest = exports.DetachFromIndexRequest || (exports.DetachFromIndexRequest = {}));
|
|
1629
|
+
var DetachFromIndexResponse;
|
|
1630
|
+
(function (DetachFromIndexResponse) {
|
|
1631
|
+
/**
|
|
1632
|
+
* @internal
|
|
1633
|
+
*/
|
|
1634
|
+
DetachFromIndexResponse.filterSensitiveLog = (obj) => ({
|
|
1635
|
+
...obj,
|
|
1636
|
+
});
|
|
1637
|
+
})(DetachFromIndexResponse = exports.DetachFromIndexResponse || (exports.DetachFromIndexResponse = {}));
|
|
1638
|
+
var ObjectAlreadyDetachedException;
|
|
1639
|
+
(function (ObjectAlreadyDetachedException) {
|
|
1640
|
+
/**
|
|
1641
|
+
* @internal
|
|
1642
|
+
*/
|
|
1643
|
+
ObjectAlreadyDetachedException.filterSensitiveLog = (obj) => ({
|
|
1644
|
+
...obj,
|
|
1645
|
+
});
|
|
1646
|
+
})(ObjectAlreadyDetachedException = exports.ObjectAlreadyDetachedException || (exports.ObjectAlreadyDetachedException = {}));
|
|
1647
|
+
var DetachObjectRequest;
|
|
1648
|
+
(function (DetachObjectRequest) {
|
|
1649
|
+
/**
|
|
1650
|
+
* @internal
|
|
1651
|
+
*/
|
|
1652
|
+
DetachObjectRequest.filterSensitiveLog = (obj) => ({
|
|
1653
|
+
...obj,
|
|
1654
|
+
});
|
|
1655
|
+
})(DetachObjectRequest = exports.DetachObjectRequest || (exports.DetachObjectRequest = {}));
|
|
1656
|
+
var DetachObjectResponse;
|
|
1657
|
+
(function (DetachObjectResponse) {
|
|
1658
|
+
/**
|
|
1659
|
+
* @internal
|
|
1660
|
+
*/
|
|
1661
|
+
DetachObjectResponse.filterSensitiveLog = (obj) => ({
|
|
1662
|
+
...obj,
|
|
1663
|
+
});
|
|
1664
|
+
})(DetachObjectResponse = exports.DetachObjectResponse || (exports.DetachObjectResponse = {}));
|
|
1665
|
+
var NotNodeException;
|
|
1666
|
+
(function (NotNodeException) {
|
|
1667
|
+
/**
|
|
1668
|
+
* @internal
|
|
1669
|
+
*/
|
|
1670
|
+
NotNodeException.filterSensitiveLog = (obj) => ({
|
|
1671
|
+
...obj,
|
|
1672
|
+
});
|
|
1673
|
+
})(NotNodeException = exports.NotNodeException || (exports.NotNodeException = {}));
|
|
1674
|
+
var DetachPolicyRequest;
|
|
1675
|
+
(function (DetachPolicyRequest) {
|
|
1676
|
+
/**
|
|
1677
|
+
* @internal
|
|
1678
|
+
*/
|
|
1679
|
+
DetachPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
1680
|
+
...obj,
|
|
1681
|
+
});
|
|
1682
|
+
})(DetachPolicyRequest = exports.DetachPolicyRequest || (exports.DetachPolicyRequest = {}));
|
|
1683
|
+
var DetachPolicyResponse;
|
|
1684
|
+
(function (DetachPolicyResponse) {
|
|
1685
|
+
/**
|
|
1686
|
+
* @internal
|
|
1687
|
+
*/
|
|
1688
|
+
DetachPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
1689
|
+
...obj,
|
|
1690
|
+
});
|
|
1691
|
+
})(DetachPolicyResponse = exports.DetachPolicyResponse || (exports.DetachPolicyResponse = {}));
|
|
1692
|
+
var DetachTypedLinkRequest;
|
|
1693
|
+
(function (DetachTypedLinkRequest) {
|
|
1694
|
+
/**
|
|
1695
|
+
* @internal
|
|
1696
|
+
*/
|
|
1697
|
+
DetachTypedLinkRequest.filterSensitiveLog = (obj) => ({
|
|
1698
|
+
...obj,
|
|
1699
|
+
...(obj.TypedLinkSpecifier && {
|
|
1700
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
1701
|
+
}),
|
|
1702
|
+
});
|
|
1703
|
+
})(DetachTypedLinkRequest = exports.DetachTypedLinkRequest || (exports.DetachTypedLinkRequest = {}));
|
|
1704
|
+
var DisableDirectoryRequest;
|
|
1705
|
+
(function (DisableDirectoryRequest) {
|
|
1706
|
+
/**
|
|
1707
|
+
* @internal
|
|
1708
|
+
*/
|
|
1709
|
+
DisableDirectoryRequest.filterSensitiveLog = (obj) => ({
|
|
1710
|
+
...obj,
|
|
1711
|
+
});
|
|
1712
|
+
})(DisableDirectoryRequest = exports.DisableDirectoryRequest || (exports.DisableDirectoryRequest = {}));
|
|
1713
|
+
var DisableDirectoryResponse;
|
|
1714
|
+
(function (DisableDirectoryResponse) {
|
|
1715
|
+
/**
|
|
1716
|
+
* @internal
|
|
1717
|
+
*/
|
|
1718
|
+
DisableDirectoryResponse.filterSensitiveLog = (obj) => ({
|
|
1719
|
+
...obj,
|
|
1720
|
+
});
|
|
1721
|
+
})(DisableDirectoryResponse = exports.DisableDirectoryResponse || (exports.DisableDirectoryResponse = {}));
|
|
1722
|
+
var EnableDirectoryRequest;
|
|
1723
|
+
(function (EnableDirectoryRequest) {
|
|
1724
|
+
/**
|
|
1725
|
+
* @internal
|
|
1726
|
+
*/
|
|
1727
|
+
EnableDirectoryRequest.filterSensitiveLog = (obj) => ({
|
|
1728
|
+
...obj,
|
|
1729
|
+
});
|
|
1730
|
+
})(EnableDirectoryRequest = exports.EnableDirectoryRequest || (exports.EnableDirectoryRequest = {}));
|
|
1731
|
+
var EnableDirectoryResponse;
|
|
1732
|
+
(function (EnableDirectoryResponse) {
|
|
1733
|
+
/**
|
|
1734
|
+
* @internal
|
|
1735
|
+
*/
|
|
1736
|
+
EnableDirectoryResponse.filterSensitiveLog = (obj) => ({
|
|
1737
|
+
...obj,
|
|
1738
|
+
});
|
|
1739
|
+
})(EnableDirectoryResponse = exports.EnableDirectoryResponse || (exports.EnableDirectoryResponse = {}));
|
|
1740
|
+
var GetAppliedSchemaVersionRequest;
|
|
1741
|
+
(function (GetAppliedSchemaVersionRequest) {
|
|
1742
|
+
/**
|
|
1743
|
+
* @internal
|
|
1744
|
+
*/
|
|
1745
|
+
GetAppliedSchemaVersionRequest.filterSensitiveLog = (obj) => ({
|
|
1746
|
+
...obj,
|
|
1747
|
+
});
|
|
1748
|
+
})(GetAppliedSchemaVersionRequest = exports.GetAppliedSchemaVersionRequest || (exports.GetAppliedSchemaVersionRequest = {}));
|
|
1749
|
+
var GetAppliedSchemaVersionResponse;
|
|
1750
|
+
(function (GetAppliedSchemaVersionResponse) {
|
|
1751
|
+
/**
|
|
1752
|
+
* @internal
|
|
1753
|
+
*/
|
|
1754
|
+
GetAppliedSchemaVersionResponse.filterSensitiveLog = (obj) => ({
|
|
1755
|
+
...obj,
|
|
1756
|
+
});
|
|
1757
|
+
})(GetAppliedSchemaVersionResponse = exports.GetAppliedSchemaVersionResponse || (exports.GetAppliedSchemaVersionResponse = {}));
|
|
1758
|
+
var GetDirectoryRequest;
|
|
1759
|
+
(function (GetDirectoryRequest) {
|
|
1760
|
+
/**
|
|
1761
|
+
* @internal
|
|
1762
|
+
*/
|
|
1763
|
+
GetDirectoryRequest.filterSensitiveLog = (obj) => ({
|
|
1764
|
+
...obj,
|
|
1765
|
+
});
|
|
1766
|
+
})(GetDirectoryRequest = exports.GetDirectoryRequest || (exports.GetDirectoryRequest = {}));
|
|
1767
|
+
var DirectoryState;
|
|
1768
|
+
(function (DirectoryState) {
|
|
1769
|
+
DirectoryState["DELETED"] = "DELETED";
|
|
1770
|
+
DirectoryState["DISABLED"] = "DISABLED";
|
|
1771
|
+
DirectoryState["ENABLED"] = "ENABLED";
|
|
1772
|
+
})(DirectoryState = exports.DirectoryState || (exports.DirectoryState = {}));
|
|
1773
|
+
var Directory;
|
|
1774
|
+
(function (Directory) {
|
|
1775
|
+
/**
|
|
1776
|
+
* @internal
|
|
1777
|
+
*/
|
|
1778
|
+
Directory.filterSensitiveLog = (obj) => ({
|
|
1779
|
+
...obj,
|
|
1780
|
+
});
|
|
1781
|
+
})(Directory = exports.Directory || (exports.Directory = {}));
|
|
1782
|
+
var GetDirectoryResponse;
|
|
1783
|
+
(function (GetDirectoryResponse) {
|
|
1784
|
+
/**
|
|
1785
|
+
* @internal
|
|
1786
|
+
*/
|
|
1787
|
+
GetDirectoryResponse.filterSensitiveLog = (obj) => ({
|
|
1788
|
+
...obj,
|
|
1789
|
+
});
|
|
1790
|
+
})(GetDirectoryResponse = exports.GetDirectoryResponse || (exports.GetDirectoryResponse = {}));
|
|
1791
|
+
var GetFacetRequest;
|
|
1792
|
+
(function (GetFacetRequest) {
|
|
1793
|
+
/**
|
|
1794
|
+
* @internal
|
|
1795
|
+
*/
|
|
1796
|
+
GetFacetRequest.filterSensitiveLog = (obj) => ({
|
|
1797
|
+
...obj,
|
|
1798
|
+
});
|
|
1799
|
+
})(GetFacetRequest = exports.GetFacetRequest || (exports.GetFacetRequest = {}));
|
|
1800
|
+
var Facet;
|
|
1801
|
+
(function (Facet) {
|
|
1802
|
+
/**
|
|
1803
|
+
* @internal
|
|
1804
|
+
*/
|
|
1805
|
+
Facet.filterSensitiveLog = (obj) => ({
|
|
1806
|
+
...obj,
|
|
1807
|
+
});
|
|
1808
|
+
})(Facet = exports.Facet || (exports.Facet = {}));
|
|
1809
|
+
var GetFacetResponse;
|
|
1810
|
+
(function (GetFacetResponse) {
|
|
1811
|
+
/**
|
|
1812
|
+
* @internal
|
|
1813
|
+
*/
|
|
1814
|
+
GetFacetResponse.filterSensitiveLog = (obj) => ({
|
|
1815
|
+
...obj,
|
|
1816
|
+
});
|
|
1817
|
+
})(GetFacetResponse = exports.GetFacetResponse || (exports.GetFacetResponse = {}));
|
|
1818
|
+
var GetLinkAttributesRequest;
|
|
1819
|
+
(function (GetLinkAttributesRequest) {
|
|
1820
|
+
/**
|
|
1821
|
+
* @internal
|
|
1822
|
+
*/
|
|
1823
|
+
GetLinkAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
1824
|
+
...obj,
|
|
1825
|
+
...(obj.TypedLinkSpecifier && {
|
|
1826
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
1827
|
+
}),
|
|
1828
|
+
});
|
|
1829
|
+
})(GetLinkAttributesRequest = exports.GetLinkAttributesRequest || (exports.GetLinkAttributesRequest = {}));
|
|
1830
|
+
var GetLinkAttributesResponse;
|
|
1831
|
+
(function (GetLinkAttributesResponse) {
|
|
1832
|
+
/**
|
|
1833
|
+
* @internal
|
|
1834
|
+
*/
|
|
1835
|
+
GetLinkAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1836
|
+
...obj,
|
|
1837
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
|
|
1838
|
+
});
|
|
1839
|
+
})(GetLinkAttributesResponse = exports.GetLinkAttributesResponse || (exports.GetLinkAttributesResponse = {}));
|
|
1840
|
+
var GetObjectAttributesRequest;
|
|
1841
|
+
(function (GetObjectAttributesRequest) {
|
|
1842
|
+
/**
|
|
1843
|
+
* @internal
|
|
1844
|
+
*/
|
|
1845
|
+
GetObjectAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
1846
|
+
...obj,
|
|
1847
|
+
});
|
|
1848
|
+
})(GetObjectAttributesRequest = exports.GetObjectAttributesRequest || (exports.GetObjectAttributesRequest = {}));
|
|
1849
|
+
var GetObjectAttributesResponse;
|
|
1850
|
+
(function (GetObjectAttributesResponse) {
|
|
1851
|
+
/**
|
|
1852
|
+
* @internal
|
|
1853
|
+
*/
|
|
1854
|
+
GetObjectAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
1855
|
+
...obj,
|
|
1856
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
|
|
1857
|
+
});
|
|
1858
|
+
})(GetObjectAttributesResponse = exports.GetObjectAttributesResponse || (exports.GetObjectAttributesResponse = {}));
|
|
1859
|
+
var GetObjectInformationRequest;
|
|
1860
|
+
(function (GetObjectInformationRequest) {
|
|
1861
|
+
/**
|
|
1862
|
+
* @internal
|
|
1863
|
+
*/
|
|
1864
|
+
GetObjectInformationRequest.filterSensitiveLog = (obj) => ({
|
|
1865
|
+
...obj,
|
|
1866
|
+
});
|
|
1867
|
+
})(GetObjectInformationRequest = exports.GetObjectInformationRequest || (exports.GetObjectInformationRequest = {}));
|
|
1868
|
+
var GetObjectInformationResponse;
|
|
1869
|
+
(function (GetObjectInformationResponse) {
|
|
1870
|
+
/**
|
|
1871
|
+
* @internal
|
|
1872
|
+
*/
|
|
1873
|
+
GetObjectInformationResponse.filterSensitiveLog = (obj) => ({
|
|
1874
|
+
...obj,
|
|
1875
|
+
});
|
|
1876
|
+
})(GetObjectInformationResponse = exports.GetObjectInformationResponse || (exports.GetObjectInformationResponse = {}));
|
|
1877
|
+
var GetSchemaAsJsonRequest;
|
|
1878
|
+
(function (GetSchemaAsJsonRequest) {
|
|
1879
|
+
/**
|
|
1880
|
+
* @internal
|
|
1881
|
+
*/
|
|
1882
|
+
GetSchemaAsJsonRequest.filterSensitiveLog = (obj) => ({
|
|
1883
|
+
...obj,
|
|
1884
|
+
});
|
|
1885
|
+
})(GetSchemaAsJsonRequest = exports.GetSchemaAsJsonRequest || (exports.GetSchemaAsJsonRequest = {}));
|
|
1886
|
+
var GetSchemaAsJsonResponse;
|
|
1887
|
+
(function (GetSchemaAsJsonResponse) {
|
|
1888
|
+
/**
|
|
1889
|
+
* @internal
|
|
1890
|
+
*/
|
|
1891
|
+
GetSchemaAsJsonResponse.filterSensitiveLog = (obj) => ({
|
|
1892
|
+
...obj,
|
|
1893
|
+
});
|
|
1894
|
+
})(GetSchemaAsJsonResponse = exports.GetSchemaAsJsonResponse || (exports.GetSchemaAsJsonResponse = {}));
|
|
1895
|
+
var GetTypedLinkFacetInformationRequest;
|
|
1896
|
+
(function (GetTypedLinkFacetInformationRequest) {
|
|
1897
|
+
/**
|
|
1898
|
+
* @internal
|
|
1899
|
+
*/
|
|
1900
|
+
GetTypedLinkFacetInformationRequest.filterSensitiveLog = (obj) => ({
|
|
1901
|
+
...obj,
|
|
1902
|
+
});
|
|
1903
|
+
})(GetTypedLinkFacetInformationRequest = exports.GetTypedLinkFacetInformationRequest || (exports.GetTypedLinkFacetInformationRequest = {}));
|
|
1904
|
+
var GetTypedLinkFacetInformationResponse;
|
|
1905
|
+
(function (GetTypedLinkFacetInformationResponse) {
|
|
1906
|
+
/**
|
|
1907
|
+
* @internal
|
|
1908
|
+
*/
|
|
1909
|
+
GetTypedLinkFacetInformationResponse.filterSensitiveLog = (obj) => ({
|
|
1910
|
+
...obj,
|
|
1911
|
+
});
|
|
1912
|
+
})(GetTypedLinkFacetInformationResponse = exports.GetTypedLinkFacetInformationResponse || (exports.GetTypedLinkFacetInformationResponse = {}));
|
|
1913
|
+
var InvalidNextTokenException;
|
|
1914
|
+
(function (InvalidNextTokenException) {
|
|
1915
|
+
/**
|
|
1916
|
+
* @internal
|
|
1917
|
+
*/
|
|
1918
|
+
InvalidNextTokenException.filterSensitiveLog = (obj) => ({
|
|
1919
|
+
...obj,
|
|
1920
|
+
});
|
|
1921
|
+
})(InvalidNextTokenException = exports.InvalidNextTokenException || (exports.InvalidNextTokenException = {}));
|
|
1922
|
+
var ListAppliedSchemaArnsRequest;
|
|
1923
|
+
(function (ListAppliedSchemaArnsRequest) {
|
|
1924
|
+
/**
|
|
1925
|
+
* @internal
|
|
1926
|
+
*/
|
|
1927
|
+
ListAppliedSchemaArnsRequest.filterSensitiveLog = (obj) => ({
|
|
1928
|
+
...obj,
|
|
1929
|
+
});
|
|
1930
|
+
})(ListAppliedSchemaArnsRequest = exports.ListAppliedSchemaArnsRequest || (exports.ListAppliedSchemaArnsRequest = {}));
|
|
1931
|
+
var ListAppliedSchemaArnsResponse;
|
|
1932
|
+
(function (ListAppliedSchemaArnsResponse) {
|
|
1933
|
+
/**
|
|
1934
|
+
* @internal
|
|
1935
|
+
*/
|
|
1936
|
+
ListAppliedSchemaArnsResponse.filterSensitiveLog = (obj) => ({
|
|
1937
|
+
...obj,
|
|
1938
|
+
});
|
|
1939
|
+
})(ListAppliedSchemaArnsResponse = exports.ListAppliedSchemaArnsResponse || (exports.ListAppliedSchemaArnsResponse = {}));
|
|
1940
|
+
var ListAttachedIndicesRequest;
|
|
1941
|
+
(function (ListAttachedIndicesRequest) {
|
|
1942
|
+
/**
|
|
1943
|
+
* @internal
|
|
1944
|
+
*/
|
|
1945
|
+
ListAttachedIndicesRequest.filterSensitiveLog = (obj) => ({
|
|
1946
|
+
...obj,
|
|
1947
|
+
});
|
|
1948
|
+
})(ListAttachedIndicesRequest = exports.ListAttachedIndicesRequest || (exports.ListAttachedIndicesRequest = {}));
|
|
1949
|
+
var ListAttachedIndicesResponse;
|
|
1950
|
+
(function (ListAttachedIndicesResponse) {
|
|
1951
|
+
/**
|
|
1952
|
+
* @internal
|
|
1953
|
+
*/
|
|
1954
|
+
ListAttachedIndicesResponse.filterSensitiveLog = (obj) => ({
|
|
1955
|
+
...obj,
|
|
1956
|
+
});
|
|
1957
|
+
})(ListAttachedIndicesResponse = exports.ListAttachedIndicesResponse || (exports.ListAttachedIndicesResponse = {}));
|
|
1958
|
+
var ListDevelopmentSchemaArnsRequest;
|
|
1959
|
+
(function (ListDevelopmentSchemaArnsRequest) {
|
|
1960
|
+
/**
|
|
1961
|
+
* @internal
|
|
1962
|
+
*/
|
|
1963
|
+
ListDevelopmentSchemaArnsRequest.filterSensitiveLog = (obj) => ({
|
|
1964
|
+
...obj,
|
|
1965
|
+
});
|
|
1966
|
+
})(ListDevelopmentSchemaArnsRequest = exports.ListDevelopmentSchemaArnsRequest || (exports.ListDevelopmentSchemaArnsRequest = {}));
|
|
1967
|
+
var ListDevelopmentSchemaArnsResponse;
|
|
1968
|
+
(function (ListDevelopmentSchemaArnsResponse) {
|
|
1969
|
+
/**
|
|
1970
|
+
* @internal
|
|
1971
|
+
*/
|
|
1972
|
+
ListDevelopmentSchemaArnsResponse.filterSensitiveLog = (obj) => ({
|
|
1973
|
+
...obj,
|
|
1974
|
+
});
|
|
1975
|
+
})(ListDevelopmentSchemaArnsResponse = exports.ListDevelopmentSchemaArnsResponse || (exports.ListDevelopmentSchemaArnsResponse = {}));
|
|
1976
|
+
var ListDirectoriesRequest;
|
|
1977
|
+
(function (ListDirectoriesRequest) {
|
|
1978
|
+
/**
|
|
1979
|
+
* @internal
|
|
1980
|
+
*/
|
|
1981
|
+
ListDirectoriesRequest.filterSensitiveLog = (obj) => ({
|
|
1982
|
+
...obj,
|
|
1983
|
+
});
|
|
1984
|
+
})(ListDirectoriesRequest = exports.ListDirectoriesRequest || (exports.ListDirectoriesRequest = {}));
|
|
1985
|
+
var ListDirectoriesResponse;
|
|
1986
|
+
(function (ListDirectoriesResponse) {
|
|
1987
|
+
/**
|
|
1988
|
+
* @internal
|
|
1989
|
+
*/
|
|
1990
|
+
ListDirectoriesResponse.filterSensitiveLog = (obj) => ({
|
|
1991
|
+
...obj,
|
|
1992
|
+
});
|
|
1993
|
+
})(ListDirectoriesResponse = exports.ListDirectoriesResponse || (exports.ListDirectoriesResponse = {}));
|
|
1994
|
+
var ListFacetAttributesRequest;
|
|
1995
|
+
(function (ListFacetAttributesRequest) {
|
|
1996
|
+
/**
|
|
1997
|
+
* @internal
|
|
1998
|
+
*/
|
|
1999
|
+
ListFacetAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
2000
|
+
...obj,
|
|
2001
|
+
});
|
|
2002
|
+
})(ListFacetAttributesRequest = exports.ListFacetAttributesRequest || (exports.ListFacetAttributesRequest = {}));
|
|
2003
|
+
var ListFacetAttributesResponse;
|
|
2004
|
+
(function (ListFacetAttributesResponse) {
|
|
2005
|
+
/**
|
|
2006
|
+
* @internal
|
|
2007
|
+
*/
|
|
2008
|
+
ListFacetAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
2009
|
+
...obj,
|
|
2010
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => FacetAttribute.filterSensitiveLog(item)) }),
|
|
2011
|
+
});
|
|
2012
|
+
})(ListFacetAttributesResponse = exports.ListFacetAttributesResponse || (exports.ListFacetAttributesResponse = {}));
|
|
2013
|
+
var ListFacetNamesRequest;
|
|
2014
|
+
(function (ListFacetNamesRequest) {
|
|
2015
|
+
/**
|
|
2016
|
+
* @internal
|
|
2017
|
+
*/
|
|
2018
|
+
ListFacetNamesRequest.filterSensitiveLog = (obj) => ({
|
|
2019
|
+
...obj,
|
|
2020
|
+
});
|
|
2021
|
+
})(ListFacetNamesRequest = exports.ListFacetNamesRequest || (exports.ListFacetNamesRequest = {}));
|
|
2022
|
+
var ListFacetNamesResponse;
|
|
2023
|
+
(function (ListFacetNamesResponse) {
|
|
2024
|
+
/**
|
|
2025
|
+
* @internal
|
|
2026
|
+
*/
|
|
2027
|
+
ListFacetNamesResponse.filterSensitiveLog = (obj) => ({
|
|
2028
|
+
...obj,
|
|
2029
|
+
});
|
|
2030
|
+
})(ListFacetNamesResponse = exports.ListFacetNamesResponse || (exports.ListFacetNamesResponse = {}));
|
|
2031
|
+
var ListIncomingTypedLinksRequest;
|
|
2032
|
+
(function (ListIncomingTypedLinksRequest) {
|
|
2033
|
+
/**
|
|
2034
|
+
* @internal
|
|
2035
|
+
*/
|
|
2036
|
+
ListIncomingTypedLinksRequest.filterSensitiveLog = (obj) => ({
|
|
2037
|
+
...obj,
|
|
2038
|
+
...(obj.FilterAttributeRanges && {
|
|
2039
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
|
|
2040
|
+
}),
|
|
2041
|
+
});
|
|
2042
|
+
})(ListIncomingTypedLinksRequest = exports.ListIncomingTypedLinksRequest || (exports.ListIncomingTypedLinksRequest = {}));
|
|
2043
|
+
var ListIncomingTypedLinksResponse;
|
|
2044
|
+
(function (ListIncomingTypedLinksResponse) {
|
|
2045
|
+
/**
|
|
2046
|
+
* @internal
|
|
2047
|
+
*/
|
|
2048
|
+
ListIncomingTypedLinksResponse.filterSensitiveLog = (obj) => ({
|
|
2049
|
+
...obj,
|
|
2050
|
+
});
|
|
2051
|
+
})(ListIncomingTypedLinksResponse = exports.ListIncomingTypedLinksResponse || (exports.ListIncomingTypedLinksResponse = {}));
|
|
2052
|
+
var ListIndexRequest;
|
|
2053
|
+
(function (ListIndexRequest) {
|
|
2054
|
+
/**
|
|
2055
|
+
* @internal
|
|
2056
|
+
*/
|
|
2057
|
+
ListIndexRequest.filterSensitiveLog = (obj) => ({
|
|
2058
|
+
...obj,
|
|
2059
|
+
...(obj.RangesOnIndexedValues && {
|
|
2060
|
+
RangesOnIndexedValues: obj.RangesOnIndexedValues.map((item) => ObjectAttributeRange.filterSensitiveLog(item)),
|
|
2061
|
+
}),
|
|
2062
|
+
});
|
|
2063
|
+
})(ListIndexRequest = exports.ListIndexRequest || (exports.ListIndexRequest = {}));
|
|
2064
|
+
var ListIndexResponse;
|
|
2065
|
+
(function (ListIndexResponse) {
|
|
2066
|
+
/**
|
|
2067
|
+
* @internal
|
|
2068
|
+
*/
|
|
2069
|
+
ListIndexResponse.filterSensitiveLog = (obj) => ({
|
|
2070
|
+
...obj,
|
|
2071
|
+
});
|
|
2072
|
+
})(ListIndexResponse = exports.ListIndexResponse || (exports.ListIndexResponse = {}));
|
|
2073
|
+
var ListManagedSchemaArnsRequest;
|
|
2074
|
+
(function (ListManagedSchemaArnsRequest) {
|
|
2075
|
+
/**
|
|
2076
|
+
* @internal
|
|
2077
|
+
*/
|
|
2078
|
+
ListManagedSchemaArnsRequest.filterSensitiveLog = (obj) => ({
|
|
2079
|
+
...obj,
|
|
2080
|
+
});
|
|
2081
|
+
})(ListManagedSchemaArnsRequest = exports.ListManagedSchemaArnsRequest || (exports.ListManagedSchemaArnsRequest = {}));
|
|
2082
|
+
var ListManagedSchemaArnsResponse;
|
|
2083
|
+
(function (ListManagedSchemaArnsResponse) {
|
|
2084
|
+
/**
|
|
2085
|
+
* @internal
|
|
2086
|
+
*/
|
|
2087
|
+
ListManagedSchemaArnsResponse.filterSensitiveLog = (obj) => ({
|
|
2088
|
+
...obj,
|
|
2089
|
+
});
|
|
2090
|
+
})(ListManagedSchemaArnsResponse = exports.ListManagedSchemaArnsResponse || (exports.ListManagedSchemaArnsResponse = {}));
|
|
2091
|
+
var ListObjectAttributesRequest;
|
|
2092
|
+
(function (ListObjectAttributesRequest) {
|
|
2093
|
+
/**
|
|
2094
|
+
* @internal
|
|
2095
|
+
*/
|
|
2096
|
+
ListObjectAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
2097
|
+
...obj,
|
|
2098
|
+
});
|
|
2099
|
+
})(ListObjectAttributesRequest = exports.ListObjectAttributesRequest || (exports.ListObjectAttributesRequest = {}));
|
|
2100
|
+
var ListObjectAttributesResponse;
|
|
2101
|
+
(function (ListObjectAttributesResponse) {
|
|
2102
|
+
/**
|
|
2103
|
+
* @internal
|
|
2104
|
+
*/
|
|
2105
|
+
ListObjectAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
2106
|
+
...obj,
|
|
2107
|
+
...(obj.Attributes && { Attributes: obj.Attributes.map((item) => AttributeKeyAndValue.filterSensitiveLog(item)) }),
|
|
2108
|
+
});
|
|
2109
|
+
})(ListObjectAttributesResponse = exports.ListObjectAttributesResponse || (exports.ListObjectAttributesResponse = {}));
|
|
2110
|
+
var ListObjectChildrenRequest;
|
|
2111
|
+
(function (ListObjectChildrenRequest) {
|
|
2112
|
+
/**
|
|
2113
|
+
* @internal
|
|
2114
|
+
*/
|
|
2115
|
+
ListObjectChildrenRequest.filterSensitiveLog = (obj) => ({
|
|
2116
|
+
...obj,
|
|
2117
|
+
});
|
|
2118
|
+
})(ListObjectChildrenRequest = exports.ListObjectChildrenRequest || (exports.ListObjectChildrenRequest = {}));
|
|
2119
|
+
var ListObjectChildrenResponse;
|
|
2120
|
+
(function (ListObjectChildrenResponse) {
|
|
2121
|
+
/**
|
|
2122
|
+
* @internal
|
|
2123
|
+
*/
|
|
2124
|
+
ListObjectChildrenResponse.filterSensitiveLog = (obj) => ({
|
|
2125
|
+
...obj,
|
|
2126
|
+
});
|
|
2127
|
+
})(ListObjectChildrenResponse = exports.ListObjectChildrenResponse || (exports.ListObjectChildrenResponse = {}));
|
|
2128
|
+
var ListObjectParentPathsRequest;
|
|
2129
|
+
(function (ListObjectParentPathsRequest) {
|
|
2130
|
+
/**
|
|
2131
|
+
* @internal
|
|
2132
|
+
*/
|
|
2133
|
+
ListObjectParentPathsRequest.filterSensitiveLog = (obj) => ({
|
|
2134
|
+
...obj,
|
|
2135
|
+
});
|
|
2136
|
+
})(ListObjectParentPathsRequest = exports.ListObjectParentPathsRequest || (exports.ListObjectParentPathsRequest = {}));
|
|
2137
|
+
var ListObjectParentPathsResponse;
|
|
2138
|
+
(function (ListObjectParentPathsResponse) {
|
|
2139
|
+
/**
|
|
2140
|
+
* @internal
|
|
2141
|
+
*/
|
|
2142
|
+
ListObjectParentPathsResponse.filterSensitiveLog = (obj) => ({
|
|
2143
|
+
...obj,
|
|
2144
|
+
});
|
|
2145
|
+
})(ListObjectParentPathsResponse = exports.ListObjectParentPathsResponse || (exports.ListObjectParentPathsResponse = {}));
|
|
2146
|
+
var CannotListParentOfRootException;
|
|
2147
|
+
(function (CannotListParentOfRootException) {
|
|
2148
|
+
/**
|
|
2149
|
+
* @internal
|
|
2150
|
+
*/
|
|
2151
|
+
CannotListParentOfRootException.filterSensitiveLog = (obj) => ({
|
|
2152
|
+
...obj,
|
|
2153
|
+
});
|
|
2154
|
+
})(CannotListParentOfRootException = exports.CannotListParentOfRootException || (exports.CannotListParentOfRootException = {}));
|
|
2155
|
+
var ListObjectParentsRequest;
|
|
2156
|
+
(function (ListObjectParentsRequest) {
|
|
2157
|
+
/**
|
|
2158
|
+
* @internal
|
|
2159
|
+
*/
|
|
2160
|
+
ListObjectParentsRequest.filterSensitiveLog = (obj) => ({
|
|
2161
|
+
...obj,
|
|
2162
|
+
});
|
|
2163
|
+
})(ListObjectParentsRequest = exports.ListObjectParentsRequest || (exports.ListObjectParentsRequest = {}));
|
|
2164
|
+
var ListObjectParentsResponse;
|
|
2165
|
+
(function (ListObjectParentsResponse) {
|
|
2166
|
+
/**
|
|
2167
|
+
* @internal
|
|
2168
|
+
*/
|
|
2169
|
+
ListObjectParentsResponse.filterSensitiveLog = (obj) => ({
|
|
2170
|
+
...obj,
|
|
2171
|
+
});
|
|
2172
|
+
})(ListObjectParentsResponse = exports.ListObjectParentsResponse || (exports.ListObjectParentsResponse = {}));
|
|
2173
|
+
var ListObjectPoliciesRequest;
|
|
2174
|
+
(function (ListObjectPoliciesRequest) {
|
|
2175
|
+
/**
|
|
2176
|
+
* @internal
|
|
2177
|
+
*/
|
|
2178
|
+
ListObjectPoliciesRequest.filterSensitiveLog = (obj) => ({
|
|
2179
|
+
...obj,
|
|
2180
|
+
});
|
|
2181
|
+
})(ListObjectPoliciesRequest = exports.ListObjectPoliciesRequest || (exports.ListObjectPoliciesRequest = {}));
|
|
2182
|
+
var ListObjectPoliciesResponse;
|
|
2183
|
+
(function (ListObjectPoliciesResponse) {
|
|
2184
|
+
/**
|
|
2185
|
+
* @internal
|
|
2186
|
+
*/
|
|
2187
|
+
ListObjectPoliciesResponse.filterSensitiveLog = (obj) => ({
|
|
2188
|
+
...obj,
|
|
2189
|
+
});
|
|
2190
|
+
})(ListObjectPoliciesResponse = exports.ListObjectPoliciesResponse || (exports.ListObjectPoliciesResponse = {}));
|
|
2191
|
+
var ListOutgoingTypedLinksRequest;
|
|
2192
|
+
(function (ListOutgoingTypedLinksRequest) {
|
|
2193
|
+
/**
|
|
2194
|
+
* @internal
|
|
2195
|
+
*/
|
|
2196
|
+
ListOutgoingTypedLinksRequest.filterSensitiveLog = (obj) => ({
|
|
2197
|
+
...obj,
|
|
2198
|
+
...(obj.FilterAttributeRanges && {
|
|
2199
|
+
FilterAttributeRanges: obj.FilterAttributeRanges.map((item) => TypedLinkAttributeRange.filterSensitiveLog(item)),
|
|
2200
|
+
}),
|
|
2201
|
+
});
|
|
2202
|
+
})(ListOutgoingTypedLinksRequest = exports.ListOutgoingTypedLinksRequest || (exports.ListOutgoingTypedLinksRequest = {}));
|
|
2203
|
+
var ListOutgoingTypedLinksResponse;
|
|
2204
|
+
(function (ListOutgoingTypedLinksResponse) {
|
|
2205
|
+
/**
|
|
2206
|
+
* @internal
|
|
2207
|
+
*/
|
|
2208
|
+
ListOutgoingTypedLinksResponse.filterSensitiveLog = (obj) => ({
|
|
2209
|
+
...obj,
|
|
2210
|
+
});
|
|
2211
|
+
})(ListOutgoingTypedLinksResponse = exports.ListOutgoingTypedLinksResponse || (exports.ListOutgoingTypedLinksResponse = {}));
|
|
2212
|
+
var ListPolicyAttachmentsRequest;
|
|
2213
|
+
(function (ListPolicyAttachmentsRequest) {
|
|
2214
|
+
/**
|
|
2215
|
+
* @internal
|
|
2216
|
+
*/
|
|
2217
|
+
ListPolicyAttachmentsRequest.filterSensitiveLog = (obj) => ({
|
|
2218
|
+
...obj,
|
|
2219
|
+
});
|
|
2220
|
+
})(ListPolicyAttachmentsRequest = exports.ListPolicyAttachmentsRequest || (exports.ListPolicyAttachmentsRequest = {}));
|
|
2221
|
+
var ListPolicyAttachmentsResponse;
|
|
2222
|
+
(function (ListPolicyAttachmentsResponse) {
|
|
2223
|
+
/**
|
|
2224
|
+
* @internal
|
|
2225
|
+
*/
|
|
2226
|
+
ListPolicyAttachmentsResponse.filterSensitiveLog = (obj) => ({
|
|
2227
|
+
...obj,
|
|
2228
|
+
});
|
|
2229
|
+
})(ListPolicyAttachmentsResponse = exports.ListPolicyAttachmentsResponse || (exports.ListPolicyAttachmentsResponse = {}));
|
|
2230
|
+
var ListPublishedSchemaArnsRequest;
|
|
2231
|
+
(function (ListPublishedSchemaArnsRequest) {
|
|
2232
|
+
/**
|
|
2233
|
+
* @internal
|
|
2234
|
+
*/
|
|
2235
|
+
ListPublishedSchemaArnsRequest.filterSensitiveLog = (obj) => ({
|
|
2236
|
+
...obj,
|
|
2237
|
+
});
|
|
2238
|
+
})(ListPublishedSchemaArnsRequest = exports.ListPublishedSchemaArnsRequest || (exports.ListPublishedSchemaArnsRequest = {}));
|
|
2239
|
+
var ListPublishedSchemaArnsResponse;
|
|
2240
|
+
(function (ListPublishedSchemaArnsResponse) {
|
|
2241
|
+
/**
|
|
2242
|
+
* @internal
|
|
2243
|
+
*/
|
|
2244
|
+
ListPublishedSchemaArnsResponse.filterSensitiveLog = (obj) => ({
|
|
2245
|
+
...obj,
|
|
2246
|
+
});
|
|
2247
|
+
})(ListPublishedSchemaArnsResponse = exports.ListPublishedSchemaArnsResponse || (exports.ListPublishedSchemaArnsResponse = {}));
|
|
2248
|
+
var InvalidTaggingRequestException;
|
|
2249
|
+
(function (InvalidTaggingRequestException) {
|
|
2250
|
+
/**
|
|
2251
|
+
* @internal
|
|
2252
|
+
*/
|
|
2253
|
+
InvalidTaggingRequestException.filterSensitiveLog = (obj) => ({
|
|
2254
|
+
...obj,
|
|
2255
|
+
});
|
|
2256
|
+
})(InvalidTaggingRequestException = exports.InvalidTaggingRequestException || (exports.InvalidTaggingRequestException = {}));
|
|
2257
|
+
var ListTagsForResourceRequest;
|
|
2258
|
+
(function (ListTagsForResourceRequest) {
|
|
2259
|
+
/**
|
|
2260
|
+
* @internal
|
|
2261
|
+
*/
|
|
2262
|
+
ListTagsForResourceRequest.filterSensitiveLog = (obj) => ({
|
|
2263
|
+
...obj,
|
|
2264
|
+
});
|
|
2265
|
+
})(ListTagsForResourceRequest = exports.ListTagsForResourceRequest || (exports.ListTagsForResourceRequest = {}));
|
|
2266
|
+
var Tag;
|
|
2267
|
+
(function (Tag) {
|
|
2268
|
+
/**
|
|
2269
|
+
* @internal
|
|
2270
|
+
*/
|
|
2271
|
+
Tag.filterSensitiveLog = (obj) => ({
|
|
2272
|
+
...obj,
|
|
2273
|
+
});
|
|
2274
|
+
})(Tag = exports.Tag || (exports.Tag = {}));
|
|
2275
|
+
var ListTagsForResourceResponse;
|
|
2276
|
+
(function (ListTagsForResourceResponse) {
|
|
2277
|
+
/**
|
|
2278
|
+
* @internal
|
|
2279
|
+
*/
|
|
2280
|
+
ListTagsForResourceResponse.filterSensitiveLog = (obj) => ({
|
|
2281
|
+
...obj,
|
|
2282
|
+
});
|
|
2283
|
+
})(ListTagsForResourceResponse = exports.ListTagsForResourceResponse || (exports.ListTagsForResourceResponse = {}));
|
|
2284
|
+
var ListTypedLinkFacetAttributesRequest;
|
|
2285
|
+
(function (ListTypedLinkFacetAttributesRequest) {
|
|
2286
|
+
/**
|
|
2287
|
+
* @internal
|
|
2288
|
+
*/
|
|
2289
|
+
ListTypedLinkFacetAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
2290
|
+
...obj,
|
|
2291
|
+
});
|
|
2292
|
+
})(ListTypedLinkFacetAttributesRequest = exports.ListTypedLinkFacetAttributesRequest || (exports.ListTypedLinkFacetAttributesRequest = {}));
|
|
2293
|
+
var ListTypedLinkFacetAttributesResponse;
|
|
2294
|
+
(function (ListTypedLinkFacetAttributesResponse) {
|
|
2295
|
+
/**
|
|
2296
|
+
* @internal
|
|
2297
|
+
*/
|
|
2298
|
+
ListTypedLinkFacetAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
2299
|
+
...obj,
|
|
2300
|
+
...(obj.Attributes && {
|
|
2301
|
+
Attributes: obj.Attributes.map((item) => TypedLinkAttributeDefinition.filterSensitiveLog(item)),
|
|
2302
|
+
}),
|
|
2303
|
+
});
|
|
2304
|
+
})(ListTypedLinkFacetAttributesResponse = exports.ListTypedLinkFacetAttributesResponse || (exports.ListTypedLinkFacetAttributesResponse = {}));
|
|
2305
|
+
var ListTypedLinkFacetNamesRequest;
|
|
2306
|
+
(function (ListTypedLinkFacetNamesRequest) {
|
|
2307
|
+
/**
|
|
2308
|
+
* @internal
|
|
2309
|
+
*/
|
|
2310
|
+
ListTypedLinkFacetNamesRequest.filterSensitiveLog = (obj) => ({
|
|
2311
|
+
...obj,
|
|
2312
|
+
});
|
|
2313
|
+
})(ListTypedLinkFacetNamesRequest = exports.ListTypedLinkFacetNamesRequest || (exports.ListTypedLinkFacetNamesRequest = {}));
|
|
2314
|
+
var ListTypedLinkFacetNamesResponse;
|
|
2315
|
+
(function (ListTypedLinkFacetNamesResponse) {
|
|
2316
|
+
/**
|
|
2317
|
+
* @internal
|
|
2318
|
+
*/
|
|
2319
|
+
ListTypedLinkFacetNamesResponse.filterSensitiveLog = (obj) => ({
|
|
2320
|
+
...obj,
|
|
2321
|
+
});
|
|
2322
|
+
})(ListTypedLinkFacetNamesResponse = exports.ListTypedLinkFacetNamesResponse || (exports.ListTypedLinkFacetNamesResponse = {}));
|
|
2323
|
+
var LookupPolicyRequest;
|
|
2324
|
+
(function (LookupPolicyRequest) {
|
|
2325
|
+
/**
|
|
2326
|
+
* @internal
|
|
2327
|
+
*/
|
|
2328
|
+
LookupPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
2329
|
+
...obj,
|
|
2330
|
+
});
|
|
2331
|
+
})(LookupPolicyRequest = exports.LookupPolicyRequest || (exports.LookupPolicyRequest = {}));
|
|
2332
|
+
var LookupPolicyResponse;
|
|
2333
|
+
(function (LookupPolicyResponse) {
|
|
2334
|
+
/**
|
|
2335
|
+
* @internal
|
|
2336
|
+
*/
|
|
2337
|
+
LookupPolicyResponse.filterSensitiveLog = (obj) => ({
|
|
2338
|
+
...obj,
|
|
2339
|
+
});
|
|
2340
|
+
})(LookupPolicyResponse = exports.LookupPolicyResponse || (exports.LookupPolicyResponse = {}));
|
|
2341
|
+
var PublishSchemaRequest;
|
|
2342
|
+
(function (PublishSchemaRequest) {
|
|
2343
|
+
/**
|
|
2344
|
+
* @internal
|
|
2345
|
+
*/
|
|
2346
|
+
PublishSchemaRequest.filterSensitiveLog = (obj) => ({
|
|
2347
|
+
...obj,
|
|
2348
|
+
});
|
|
2349
|
+
})(PublishSchemaRequest = exports.PublishSchemaRequest || (exports.PublishSchemaRequest = {}));
|
|
2350
|
+
var PublishSchemaResponse;
|
|
2351
|
+
(function (PublishSchemaResponse) {
|
|
2352
|
+
/**
|
|
2353
|
+
* @internal
|
|
2354
|
+
*/
|
|
2355
|
+
PublishSchemaResponse.filterSensitiveLog = (obj) => ({
|
|
2356
|
+
...obj,
|
|
2357
|
+
});
|
|
2358
|
+
})(PublishSchemaResponse = exports.PublishSchemaResponse || (exports.PublishSchemaResponse = {}));
|
|
2359
|
+
var SchemaAlreadyPublishedException;
|
|
2360
|
+
(function (SchemaAlreadyPublishedException) {
|
|
2361
|
+
/**
|
|
2362
|
+
* @internal
|
|
2363
|
+
*/
|
|
2364
|
+
SchemaAlreadyPublishedException.filterSensitiveLog = (obj) => ({
|
|
2365
|
+
...obj,
|
|
2366
|
+
});
|
|
2367
|
+
})(SchemaAlreadyPublishedException = exports.SchemaAlreadyPublishedException || (exports.SchemaAlreadyPublishedException = {}));
|
|
2368
|
+
var InvalidSchemaDocException;
|
|
2369
|
+
(function (InvalidSchemaDocException) {
|
|
2370
|
+
/**
|
|
2371
|
+
* @internal
|
|
2372
|
+
*/
|
|
2373
|
+
InvalidSchemaDocException.filterSensitiveLog = (obj) => ({
|
|
2374
|
+
...obj,
|
|
2375
|
+
});
|
|
2376
|
+
})(InvalidSchemaDocException = exports.InvalidSchemaDocException || (exports.InvalidSchemaDocException = {}));
|
|
2377
|
+
var PutSchemaFromJsonRequest;
|
|
2378
|
+
(function (PutSchemaFromJsonRequest) {
|
|
2379
|
+
/**
|
|
2380
|
+
* @internal
|
|
2381
|
+
*/
|
|
2382
|
+
PutSchemaFromJsonRequest.filterSensitiveLog = (obj) => ({
|
|
2383
|
+
...obj,
|
|
2384
|
+
});
|
|
2385
|
+
})(PutSchemaFromJsonRequest = exports.PutSchemaFromJsonRequest || (exports.PutSchemaFromJsonRequest = {}));
|
|
2386
|
+
var PutSchemaFromJsonResponse;
|
|
2387
|
+
(function (PutSchemaFromJsonResponse) {
|
|
2388
|
+
/**
|
|
2389
|
+
* @internal
|
|
2390
|
+
*/
|
|
2391
|
+
PutSchemaFromJsonResponse.filterSensitiveLog = (obj) => ({
|
|
2392
|
+
...obj,
|
|
2393
|
+
});
|
|
2394
|
+
})(PutSchemaFromJsonResponse = exports.PutSchemaFromJsonResponse || (exports.PutSchemaFromJsonResponse = {}));
|
|
2395
|
+
var RemoveFacetFromObjectRequest;
|
|
2396
|
+
(function (RemoveFacetFromObjectRequest) {
|
|
2397
|
+
/**
|
|
2398
|
+
* @internal
|
|
2399
|
+
*/
|
|
2400
|
+
RemoveFacetFromObjectRequest.filterSensitiveLog = (obj) => ({
|
|
2401
|
+
...obj,
|
|
2402
|
+
});
|
|
2403
|
+
})(RemoveFacetFromObjectRequest = exports.RemoveFacetFromObjectRequest || (exports.RemoveFacetFromObjectRequest = {}));
|
|
2404
|
+
var RemoveFacetFromObjectResponse;
|
|
2405
|
+
(function (RemoveFacetFromObjectResponse) {
|
|
2406
|
+
/**
|
|
2407
|
+
* @internal
|
|
2408
|
+
*/
|
|
2409
|
+
RemoveFacetFromObjectResponse.filterSensitiveLog = (obj) => ({
|
|
2410
|
+
...obj,
|
|
2411
|
+
});
|
|
2412
|
+
})(RemoveFacetFromObjectResponse = exports.RemoveFacetFromObjectResponse || (exports.RemoveFacetFromObjectResponse = {}));
|
|
2413
|
+
var TagResourceRequest;
|
|
2414
|
+
(function (TagResourceRequest) {
|
|
2415
|
+
/**
|
|
2416
|
+
* @internal
|
|
2417
|
+
*/
|
|
2418
|
+
TagResourceRequest.filterSensitiveLog = (obj) => ({
|
|
2419
|
+
...obj,
|
|
2420
|
+
});
|
|
2421
|
+
})(TagResourceRequest = exports.TagResourceRequest || (exports.TagResourceRequest = {}));
|
|
2422
|
+
var TagResourceResponse;
|
|
2423
|
+
(function (TagResourceResponse) {
|
|
2424
|
+
/**
|
|
2425
|
+
* @internal
|
|
2426
|
+
*/
|
|
2427
|
+
TagResourceResponse.filterSensitiveLog = (obj) => ({
|
|
2428
|
+
...obj,
|
|
2429
|
+
});
|
|
2430
|
+
})(TagResourceResponse = exports.TagResourceResponse || (exports.TagResourceResponse = {}));
|
|
2431
|
+
var UntagResourceRequest;
|
|
2432
|
+
(function (UntagResourceRequest) {
|
|
2433
|
+
/**
|
|
2434
|
+
* @internal
|
|
2435
|
+
*/
|
|
2436
|
+
UntagResourceRequest.filterSensitiveLog = (obj) => ({
|
|
2437
|
+
...obj,
|
|
2438
|
+
});
|
|
2439
|
+
})(UntagResourceRequest = exports.UntagResourceRequest || (exports.UntagResourceRequest = {}));
|
|
2440
|
+
var UntagResourceResponse;
|
|
2441
|
+
(function (UntagResourceResponse) {
|
|
2442
|
+
/**
|
|
2443
|
+
* @internal
|
|
2444
|
+
*/
|
|
2445
|
+
UntagResourceResponse.filterSensitiveLog = (obj) => ({
|
|
2446
|
+
...obj,
|
|
2447
|
+
});
|
|
2448
|
+
})(UntagResourceResponse = exports.UntagResourceResponse || (exports.UntagResourceResponse = {}));
|
|
2449
|
+
var InvalidFacetUpdateException;
|
|
2450
|
+
(function (InvalidFacetUpdateException) {
|
|
2451
|
+
/**
|
|
2452
|
+
* @internal
|
|
2453
|
+
*/
|
|
2454
|
+
InvalidFacetUpdateException.filterSensitiveLog = (obj) => ({
|
|
2455
|
+
...obj,
|
|
2456
|
+
});
|
|
2457
|
+
})(InvalidFacetUpdateException = exports.InvalidFacetUpdateException || (exports.InvalidFacetUpdateException = {}));
|
|
2458
|
+
var FacetAttributeUpdate;
|
|
2459
|
+
(function (FacetAttributeUpdate) {
|
|
2460
|
+
/**
|
|
2461
|
+
* @internal
|
|
2462
|
+
*/
|
|
2463
|
+
FacetAttributeUpdate.filterSensitiveLog = (obj) => ({
|
|
2464
|
+
...obj,
|
|
2465
|
+
...(obj.Attribute && { Attribute: FacetAttribute.filterSensitiveLog(obj.Attribute) }),
|
|
2466
|
+
});
|
|
2467
|
+
})(FacetAttributeUpdate = exports.FacetAttributeUpdate || (exports.FacetAttributeUpdate = {}));
|
|
2468
|
+
var UpdateFacetRequest;
|
|
2469
|
+
(function (UpdateFacetRequest) {
|
|
2470
|
+
/**
|
|
2471
|
+
* @internal
|
|
2472
|
+
*/
|
|
2473
|
+
UpdateFacetRequest.filterSensitiveLog = (obj) => ({
|
|
2474
|
+
...obj,
|
|
2475
|
+
...(obj.AttributeUpdates && {
|
|
2476
|
+
AttributeUpdates: obj.AttributeUpdates.map((item) => FacetAttributeUpdate.filterSensitiveLog(item)),
|
|
2477
|
+
}),
|
|
2478
|
+
});
|
|
2479
|
+
})(UpdateFacetRequest = exports.UpdateFacetRequest || (exports.UpdateFacetRequest = {}));
|
|
2480
|
+
var UpdateFacetResponse;
|
|
2481
|
+
(function (UpdateFacetResponse) {
|
|
2482
|
+
/**
|
|
2483
|
+
* @internal
|
|
2484
|
+
*/
|
|
2485
|
+
UpdateFacetResponse.filterSensitiveLog = (obj) => ({
|
|
2486
|
+
...obj,
|
|
2487
|
+
});
|
|
2488
|
+
})(UpdateFacetResponse = exports.UpdateFacetResponse || (exports.UpdateFacetResponse = {}));
|
|
2489
|
+
var UpdateLinkAttributesRequest;
|
|
2490
|
+
(function (UpdateLinkAttributesRequest) {
|
|
2491
|
+
/**
|
|
2492
|
+
* @internal
|
|
2493
|
+
*/
|
|
2494
|
+
UpdateLinkAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
2495
|
+
...obj,
|
|
2496
|
+
...(obj.TypedLinkSpecifier && {
|
|
2497
|
+
TypedLinkSpecifier: TypedLinkSpecifier.filterSensitiveLog(obj.TypedLinkSpecifier),
|
|
2498
|
+
}),
|
|
2499
|
+
...(obj.AttributeUpdates && {
|
|
2500
|
+
AttributeUpdates: obj.AttributeUpdates.map((item) => LinkAttributeUpdate.filterSensitiveLog(item)),
|
|
2501
|
+
}),
|
|
2502
|
+
});
|
|
2503
|
+
})(UpdateLinkAttributesRequest = exports.UpdateLinkAttributesRequest || (exports.UpdateLinkAttributesRequest = {}));
|
|
2504
|
+
var UpdateLinkAttributesResponse;
|
|
2505
|
+
(function (UpdateLinkAttributesResponse) {
|
|
2506
|
+
/**
|
|
2507
|
+
* @internal
|
|
2508
|
+
*/
|
|
2509
|
+
UpdateLinkAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
2510
|
+
...obj,
|
|
2511
|
+
});
|
|
2512
|
+
})(UpdateLinkAttributesResponse = exports.UpdateLinkAttributesResponse || (exports.UpdateLinkAttributesResponse = {}));
|
|
2513
|
+
var UpdateObjectAttributesRequest;
|
|
2514
|
+
(function (UpdateObjectAttributesRequest) {
|
|
2515
|
+
/**
|
|
2516
|
+
* @internal
|
|
2517
|
+
*/
|
|
2518
|
+
UpdateObjectAttributesRequest.filterSensitiveLog = (obj) => ({
|
|
2519
|
+
...obj,
|
|
2520
|
+
...(obj.AttributeUpdates && {
|
|
2521
|
+
AttributeUpdates: obj.AttributeUpdates.map((item) => ObjectAttributeUpdate.filterSensitiveLog(item)),
|
|
2522
|
+
}),
|
|
2523
|
+
});
|
|
2524
|
+
})(UpdateObjectAttributesRequest = exports.UpdateObjectAttributesRequest || (exports.UpdateObjectAttributesRequest = {}));
|
|
2525
|
+
var UpdateObjectAttributesResponse;
|
|
2526
|
+
(function (UpdateObjectAttributesResponse) {
|
|
2527
|
+
/**
|
|
2528
|
+
* @internal
|
|
2529
|
+
*/
|
|
2530
|
+
UpdateObjectAttributesResponse.filterSensitiveLog = (obj) => ({
|
|
2531
|
+
...obj,
|
|
2532
|
+
});
|
|
2533
|
+
})(UpdateObjectAttributesResponse = exports.UpdateObjectAttributesResponse || (exports.UpdateObjectAttributesResponse = {}));
|
|
2534
|
+
var UpdateSchemaRequest;
|
|
2535
|
+
(function (UpdateSchemaRequest) {
|
|
2536
|
+
/**
|
|
2537
|
+
* @internal
|
|
2538
|
+
*/
|
|
2539
|
+
UpdateSchemaRequest.filterSensitiveLog = (obj) => ({
|
|
2540
|
+
...obj,
|
|
2541
|
+
});
|
|
2542
|
+
})(UpdateSchemaRequest = exports.UpdateSchemaRequest || (exports.UpdateSchemaRequest = {}));
|
|
2543
|
+
var UpdateSchemaResponse;
|
|
2544
|
+
(function (UpdateSchemaResponse) {
|
|
2545
|
+
/**
|
|
2546
|
+
* @internal
|
|
2547
|
+
*/
|
|
2548
|
+
UpdateSchemaResponse.filterSensitiveLog = (obj) => ({
|
|
2549
|
+
...obj,
|
|
2550
|
+
});
|
|
2551
|
+
})(UpdateSchemaResponse = exports.UpdateSchemaResponse || (exports.UpdateSchemaResponse = {}));
|
|
2552
|
+
var TypedLinkFacetAttributeUpdate;
|
|
2553
|
+
(function (TypedLinkFacetAttributeUpdate) {
|
|
2554
|
+
/**
|
|
2555
|
+
* @internal
|
|
2556
|
+
*/
|
|
2557
|
+
TypedLinkFacetAttributeUpdate.filterSensitiveLog = (obj) => ({
|
|
2558
|
+
...obj,
|
|
2559
|
+
...(obj.Attribute && { Attribute: TypedLinkAttributeDefinition.filterSensitiveLog(obj.Attribute) }),
|
|
2560
|
+
});
|
|
2561
|
+
})(TypedLinkFacetAttributeUpdate = exports.TypedLinkFacetAttributeUpdate || (exports.TypedLinkFacetAttributeUpdate = {}));
|
|
2562
|
+
var UpdateTypedLinkFacetRequest;
|
|
2563
|
+
(function (UpdateTypedLinkFacetRequest) {
|
|
2564
|
+
/**
|
|
2565
|
+
* @internal
|
|
2566
|
+
*/
|
|
2567
|
+
UpdateTypedLinkFacetRequest.filterSensitiveLog = (obj) => ({
|
|
2568
|
+
...obj,
|
|
2569
|
+
...(obj.AttributeUpdates && {
|
|
2570
|
+
AttributeUpdates: obj.AttributeUpdates.map((item) => TypedLinkFacetAttributeUpdate.filterSensitiveLog(item)),
|
|
2571
|
+
}),
|
|
2572
|
+
});
|
|
2573
|
+
})(UpdateTypedLinkFacetRequest = exports.UpdateTypedLinkFacetRequest || (exports.UpdateTypedLinkFacetRequest = {}));
|
|
2574
|
+
var UpdateTypedLinkFacetResponse;
|
|
2575
|
+
(function (UpdateTypedLinkFacetResponse) {
|
|
2576
|
+
/**
|
|
2577
|
+
* @internal
|
|
2578
|
+
*/
|
|
2579
|
+
UpdateTypedLinkFacetResponse.filterSensitiveLog = (obj) => ({
|
|
2580
|
+
...obj,
|
|
2581
|
+
});
|
|
2582
|
+
})(UpdateTypedLinkFacetResponse = exports.UpdateTypedLinkFacetResponse || (exports.UpdateTypedLinkFacetResponse = {}));
|
|
2583
|
+
var IncompatibleSchemaException;
|
|
2584
|
+
(function (IncompatibleSchemaException) {
|
|
2585
|
+
/**
|
|
2586
|
+
* @internal
|
|
2587
|
+
*/
|
|
2588
|
+
IncompatibleSchemaException.filterSensitiveLog = (obj) => ({
|
|
2589
|
+
...obj,
|
|
2590
|
+
});
|
|
2591
|
+
})(IncompatibleSchemaException = exports.IncompatibleSchemaException || (exports.IncompatibleSchemaException = {}));
|
|
2592
|
+
var UpgradeAppliedSchemaRequest;
|
|
2593
|
+
(function (UpgradeAppliedSchemaRequest) {
|
|
2594
|
+
/**
|
|
2595
|
+
* @internal
|
|
2596
|
+
*/
|
|
2597
|
+
UpgradeAppliedSchemaRequest.filterSensitiveLog = (obj) => ({
|
|
2598
|
+
...obj,
|
|
2599
|
+
});
|
|
2600
|
+
})(UpgradeAppliedSchemaRequest = exports.UpgradeAppliedSchemaRequest || (exports.UpgradeAppliedSchemaRequest = {}));
|
|
2601
|
+
var UpgradeAppliedSchemaResponse;
|
|
2602
|
+
(function (UpgradeAppliedSchemaResponse) {
|
|
2603
|
+
/**
|
|
2604
|
+
* @internal
|
|
2605
|
+
*/
|
|
2606
|
+
UpgradeAppliedSchemaResponse.filterSensitiveLog = (obj) => ({
|
|
2607
|
+
...obj,
|
|
2608
|
+
});
|
|
2609
|
+
})(UpgradeAppliedSchemaResponse = exports.UpgradeAppliedSchemaResponse || (exports.UpgradeAppliedSchemaResponse = {}));
|
|
2610
|
+
var UpgradePublishedSchemaRequest;
|
|
2611
|
+
(function (UpgradePublishedSchemaRequest) {
|
|
2612
|
+
/**
|
|
2613
|
+
* @internal
|
|
2614
|
+
*/
|
|
2615
|
+
UpgradePublishedSchemaRequest.filterSensitiveLog = (obj) => ({
|
|
2616
|
+
...obj,
|
|
2617
|
+
});
|
|
2618
|
+
})(UpgradePublishedSchemaRequest = exports.UpgradePublishedSchemaRequest || (exports.UpgradePublishedSchemaRequest = {}));
|
|
2619
|
+
var UpgradePublishedSchemaResponse;
|
|
2620
|
+
(function (UpgradePublishedSchemaResponse) {
|
|
2621
|
+
/**
|
|
2622
|
+
* @internal
|
|
2623
|
+
*/
|
|
2624
|
+
UpgradePublishedSchemaResponse.filterSensitiveLog = (obj) => ({
|
|
2625
|
+
...obj,
|
|
2626
|
+
});
|
|
2627
|
+
})(UpgradePublishedSchemaResponse = exports.UpgradePublishedSchemaResponse || (exports.UpgradePublishedSchemaResponse = {}));
|