import { type AdditionalDataHolder, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {UpdateChannelNameGetResponse} */ export declare function createUpdateChannelNameGetResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param UpdateChannelNameGetResponse The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoUpdateChannelNameGetResponse(updateChannelNameGetResponse?: Partial | undefined): Record void>; /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param UpdateChannelNameGetResponse The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeUpdateChannelNameGetResponse(writer: SerializationWriter, updateChannelNameGetResponse?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; export interface UpdateChannelNameGetResponse extends AdditionalDataHolder, Parsable { /** * Follows symantec versioning as laid out here: https://semver.org/. This number is the version of the application package. */ appVersion?: string | null; } /** * Builds and executes requests for operations under /Api/Update/Check/Channel/{Update Channel Name} */ export interface UpdateChannelNameItemRequestBuilder extends BaseRequestBuilder { /** * Checks with the SHI Data Gateway in the specified update channel and compares the reported version to the version that is locally installed. If there is a difference, a new update is marked as available. Always returns the latest version available on data gateway, even if that version is installed locally.This endpoint requires the `Update.Read`, `Update.ReadWrite`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Checks with the SHI Data Gateway in the specified update channel and compares the reported version to the version that is locally installed. If there is a difference, a new update is marked as available. Always returns the latest version available on data gateway, even if that version is installed locally.This endpoint requires the `Update.Read`, `Update.ReadWrite`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const UpdateChannelNameItemRequestBuilderUriTemplate = "{+baseurl}/Api/Update/Check/Channel/{Update%20Channel%20Name}"; /** * Metadata for all the requests in the request builder. */ export declare const UpdateChannelNameItemRequestBuilderRequestsMetadata: RequestsMetadata;