import { type WithTemplateItemRequestBuilder } from './item/index.js'; import { type AdditionalDataHolder, type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, 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 {SkipGetResponse} */ export declare function createSkipGetResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param SkipGetResponse The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoSkipGetResponse(skipGetResponse?: Partial | undefined): Record void>; /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param SkipGetResponse The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeSkipGetResponse(writer: SerializationWriter, skipGetResponse?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Collection of references to configuration items (using templateId property as property name) and array of strings as value. */ export interface SkipGetResponse extends AdditionalDataHolder, Parsable { } /** * Builds and executes requests for operations under /Api/Deploy/Skip */ export interface SkipRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the ApiSdk.Api.Deploy.Skip.item collection * @param templateId Reference to the specific configuration item that is deployed in the tenant. * @returns {WithTemplateItemRequestBuilder} */ byTemplateId(templateId: Guid): WithTemplateItemRequestBuilder; /** * Retrieves the details of override property in the Settings Engine and returns list grouped by configuration item reference.This endpoint requires `Deploy.Read`, or `Deploy.ReadWrite`, or `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; /** * Retrieves the details of override property in the Settings Engine and returns list grouped by configuration item reference.This endpoint requires `Deploy.Read`, or `Deploy.ReadWrite`, or `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 SkipRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/Skip"; /** * Metadata for all the navigation properties in the request builder. */ export declare const SkipRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const SkipRequestBuilderRequestsMetadata: RequestsMetadata;