import { RequestBuilder, GetAllRequestBuilderV2, GetByKeyRequestBuilderV2, CreateRequestBuilderV2, UpdateRequestBuilderV2, DeleteRequestBuilderV2 } from '@sap-cloud-sdk/core'; import { ObjectIdentifierMapping } from './ObjectIdentifierMapping'; /** * Request builder class for operations supported on the [[ObjectIdentifierMapping]] entity. */ export declare class ObjectIdentifierMappingRequestBuilder extends RequestBuilder { /** * Returns a request builder for retrieving one `ObjectIdentifierMapping` entity based on its keys. * @param objectId Key property. See [[ObjectIdentifierMapping.objectId]]. * @returns A request builder for creating requests to retrieve one `ObjectIdentifierMapping` entity based on its keys. */ getByKey(objectId: string): GetByKeyRequestBuilderV2; /** * Returns a request builder for querying all `ObjectIdentifierMapping` entities. * @returns A request builder for creating requests to retrieve all `ObjectIdentifierMapping` entities. */ getAll(): GetAllRequestBuilderV2; /** * Returns a request builder for creating a `ObjectIdentifierMapping` entity. * @param entity The entity to be created * @returns A request builder for creating requests that create an entity of type `ObjectIdentifierMapping`. */ create(entity: ObjectIdentifierMapping): CreateRequestBuilderV2; /** * Returns a request builder for updating an entity of type `ObjectIdentifierMapping`. * @param entity The entity to be updated * @returns A request builder for creating requests that update an entity of type `ObjectIdentifierMapping`. */ update(entity: ObjectIdentifierMapping): UpdateRequestBuilderV2; /** * Returns a request builder for deleting an entity of type `ObjectIdentifierMapping`. * @param objectId Key property. See [[ObjectIdentifierMapping.objectId]]. * @returns A request builder for creating requests that delete an entity of type `ObjectIdentifierMapping`. */ delete(objectId: string): DeleteRequestBuilderV2; /** * Returns a request builder for deleting an entity of type `ObjectIdentifierMapping`. * @param entity Pass the entity to be deleted. * @returns A request builder for creating requests that delete an entity of type `ObjectIdentifierMapping` by taking the entity as a parameter. */ delete(entity: ObjectIdentifierMapping): DeleteRequestBuilderV2; } //# sourceMappingURL=ObjectIdentifierMappingRequestBuilder.d.ts.map