UNPKG

@microsoft/msgraph-beta-sdk-security

Version:
42 lines 2.25 kB
import { type Host } from '@microsoft/msgraph-beta-sdk/models/security/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the parentHost property of the microsoft.graph.security.passiveDnsRecord entity. */ export interface ParentHostRequestBuilder extends BaseRequestBuilder<ParentHostRequestBuilder> { /** * The parent host related to this passiveDnsRecord entry. Generally, this is the value that you can search to discover this passiveDnsRecord value. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<Host>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<ParentHostRequestBuilderGetQueryParameters> | undefined): Promise<Host | undefined>; /** * The parent host related to this passiveDnsRecord entry. Generally, this is the value that you can search to discover this passiveDnsRecord value. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<ParentHostRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * The parent host related to this passiveDnsRecord entry. Generally, this is the value that you can search to discover this passiveDnsRecord value. */ export interface ParentHostRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const ParentHostRequestBuilderUriTemplate = "{+baseurl}/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord%2Did}/parentHost{?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const ParentHostRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map