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 {SetForceSSLPostRequestBody} */ export declare function createSetForceSSLPostRequestBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoSetForceSSLPostRequestBody(setForceSSLPostRequestBody?: Partial | undefined): Record void>; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeSetForceSSLPostRequestBody(writer: SerializationWriter, setForceSSLPostRequestBody?: Partial | undefined | null): void; export interface SetForceSSLPostRequestBody extends AdditionalDataHolder, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * Set to true to force SSL on the given pull zone hostname */ forceSSL?: boolean | null; /** * The hostname that will be updated */ hostname?: string | null; } /** * Builds and executes requests for operations under /pullzone/{-id}/setForceSSL */ export interface SetForceSSLRequestBuilder extends BaseRequestBuilder { /** * [SetForceSsl API Docs](https://docs.bunny.net/reference/pullzonepublic_setforcessl) * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ post(body: SetForceSSLPostRequestBody, requestConfiguration?: RequestConfiguration | undefined): Promise; /** * [SetForceSsl API Docs](https://docs.bunny.net/reference/pullzonepublic_setforcessl) * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: SetForceSSLPostRequestBody, requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const SetForceSSLRequestBuilderUriTemplate = "{+baseurl}/pullzone/{%2Did}/setForceSSL"; /** * Metadata for all the requests in the request builder. */ export declare const SetForceSSLRequestBuilderRequestsMetadata: RequestsMetadata;