import { CreateRequestBuilder, DeSerializers, DefaultDeSerializers, DeleteRequestBuilder, DeserializedType, GetAllRequestBuilder, GetByKeyRequestBuilder, RequestBuilder, UpdateRequestBuilder } from '@sap-cloud-sdk/odata-v2'; import { ValMapSchema } from './ValMapSchema.js'; /** * Request builder class for operations supported on the {@link ValMapSchema} entity. */ export declare class ValMapSchemaRequestBuilder extends RequestBuilder, T> { /** * Returns a request builder for querying all `ValMapSchema` entities. * @returns A request builder for creating requests to retrieve all `ValMapSchema` entities. */ getAll(): GetAllRequestBuilder, T>; /** * Returns a request builder for creating a `ValMapSchema` entity. * @param entity The entity to be created * @returns A request builder for creating requests that create an entity of type `ValMapSchema`. */ create(entity: ValMapSchema): CreateRequestBuilder, T>; /** * Returns a request builder for retrieving one `ValMapSchema` entity based on its keys. * @param srcAgency Key property. See {@link ValMapSchema.srcAgency}. * @param srcId Key property. See {@link ValMapSchema.srcId}. * @param tgtAgency Key property. See {@link ValMapSchema.tgtAgency}. * @param tgtId Key property. See {@link ValMapSchema.tgtId}. * @returns A request builder for creating requests to retrieve one `ValMapSchema` entity based on its keys. */ getByKey(srcAgency: DeserializedType, srcId: DeserializedType, tgtAgency: DeserializedType, tgtId: DeserializedType): GetByKeyRequestBuilder, T>; /** * Returns a request builder for updating an entity of type `ValMapSchema`. * @param entity The entity to be updated * @returns A request builder for creating requests that update an entity of type `ValMapSchema`. */ update(entity: ValMapSchema): UpdateRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `ValMapSchema`. * @param srcAgency Key property. See {@link ValMapSchema.srcAgency}. * @param srcId Key property. See {@link ValMapSchema.srcId}. * @param tgtAgency Key property. See {@link ValMapSchema.tgtAgency}. * @param tgtId Key property. See {@link ValMapSchema.tgtId}. * @returns A request builder for creating requests that delete an entity of type `ValMapSchema`. */ delete(srcAgency: string, srcId: string, tgtAgency: string, tgtId: string): DeleteRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `ValMapSchema`. * @param entity Pass the entity to be deleted. * @returns A request builder for creating requests that delete an entity of type `ValMapSchema` by taking the entity as a parameter. */ delete(entity: ValMapSchema): DeleteRequestBuilder, T>; }