import { type AdditionalDataHolder, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions'; export interface BreakGlassPostResponse extends AdditionalDataHolder, Parsable { /** * Name of the security group created now or already existing in the tenant. */ groupName?: string | null; } /** * Builds and executes requests for operations under /Api/Deploy/BreakGlass */ export interface BreakGlassRequestBuilder extends BaseRequestBuilder { /** * Retrieves the status of required user quantity existence in the break glass group.This endpoint requires the `Deploy.Read` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Attempts to create BreakGlass security group in the tenant. If group has already been provisioned it will return the name of the group to reference.This endpoint requires the `Deploy.ReadWrite`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ post(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Retrieves the status of required user quantity existence in the break glass group.This endpoint requires the `Deploy.Read` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; /** * Attempts to create BreakGlass security group in the tenant. If group has already been provisioned it will return the name of the group to reference.This endpoint requires the `Deploy.ReadWrite`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * 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 {BreakGlassPostResponse} */ export declare function createBreakGlassPostResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param BreakGlassPostResponse The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoBreakGlassPostResponse(breakGlassPostResponse?: Partial | undefined): Record void>; /** * Serializes information the current object * @param BreakGlassPostResponse The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeBreakGlassPostResponse(writer: SerializationWriter, breakGlassPostResponse?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Uri template for the request builder. */ export declare const BreakGlassRequestBuilderUriTemplate = "{+baseurl}/Api/Deploy/BreakGlass"; /** * Metadata for all the requests in the request builder. */ export declare const BreakGlassRequestBuilderRequestsMetadata: RequestsMetadata;