UNPKG

@microsoft/msgraph-sdk-security

Version:
42 lines 2 kB
import { type LandingPage } from '@microsoft/msgraph-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the landingPage property of the microsoft.graph.simulation entity. */ export interface LandingPageRequestBuilder extends BaseRequestBuilder<LandingPageRequestBuilder> { /** * The landing page associated with a simulation during its creation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<LandingPage>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<LandingPageRequestBuilderGetQueryParameters> | undefined): Promise<LandingPage | undefined>; /** * The landing page associated with a simulation during its creation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<LandingPageRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * The landing page associated with a simulation during its creation. */ export interface LandingPageRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const LandingPageRequestBuilderUriTemplate = "{+baseurl}/security/attackSimulation/simulations/{simulation%2Did}/landingPage{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const LandingPageRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map