UNPKG

@shi-corp/sdk-data-gateway

Version:

SDK client used to interface with the SHI Data Gateway service.

22 lines (21 loc) 1.1 kB
import { type WithChannelNameItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Update/Shield/Download/Channel */ export interface ChannelRequestBuilder extends BaseRequestBuilder<ChannelRequestBuilder> { /** * Gets an item from the ApiSdk.Api.Update.Shield.Download.Channel.item collection * @param channelName Name of the deploy channel to operate against. * @returns {WithChannelNameItemRequestBuilder} */ byChannelName(channelName: string): WithChannelNameItemRequestBuilder; } /** * Uri template for the request builder. */ export declare const ChannelRequestBuilderUriTemplate = "{+baseurl}/Api/Update/Shield/Download/Channel"; /** * Metadata for all the navigation properties in the request builder. */ export declare const ChannelRequestBuilderNavigationMetadata: Record<Exclude<keyof ChannelRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;