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/Check/Channel */ export interface ChannelRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the ApiSdk.Api.Update.Shield.Check.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/Check/Channel"; /** * Metadata for all the navigation properties in the request builder. */ export declare const ChannelRequestBuilderNavigationMetadata: Record, NavigationMetadata>;