UNPKG

@microsoft/msgraph-beta-sdk-devicemanagement

Version:
188 lines 10.2 kB
import { type VirtualEndpoint } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type AuditEventsRequestBuilder } from './auditEvents/index.js'; import { type BulkActionsRequestBuilder } from './bulkActions/index.js'; import { type CloudAppsRequestBuilder } from './cloudApps/index.js'; import { type CloudPCsRequestBuilder } from './cloudPCs/index.js'; import { type CrossCloudGovernmentOrganizationMappingRequestBuilder } from './crossCloudGovernmentOrganizationMapping/index.js'; import { type DeviceImagesRequestBuilder } from './deviceImages/index.js'; import { type ExternalPartnersRequestBuilder } from './externalPartners/index.js'; import { type ExternalPartnerSettingsRequestBuilder } from './externalPartnerSettings/index.js'; import { type FrontLineServicePlansRequestBuilder } from './frontLineServicePlans/index.js'; import { type GalleryImagesRequestBuilder } from './galleryImages/index.js'; import { type GetEffectivePermissionsRequestBuilder } from './getEffectivePermissions/index.js'; import { type ManagedLicensesRequestBuilder } from './managedLicenses/index.js'; import { type OnPremisesConnectionsRequestBuilder } from './onPremisesConnections/index.js'; import { type OrganizationSettingsRequestBuilder } from './organizationSettings/index.js'; import { type ProvisioningPoliciesRequestBuilder } from './provisioningPolicies/index.js'; import { type ReportRequestBuilder } from './report/index.js'; import { type ReportsRequestBuilder } from './reports/index.js'; import { type RetrieveScopedPermissionsRequestBuilder } from './retrieveScopedPermissions/index.js'; import { type RetrieveTenantEncryptionSettingRequestBuilder } from './retrieveTenantEncryptionSetting/index.js'; import { type ServicePlansRequestBuilder } from './servicePlans/index.js'; import { type SnapshotsRequestBuilder } from './snapshots/index.js'; import { type SupportedRegionsRequestBuilder } from './supportedRegions/index.js'; import { type UserSettingsRequestBuilder } from './userSettings/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the virtualEndpoint property of the microsoft.graph.deviceManagement entity. */ export interface VirtualEndpointRequestBuilder extends BaseRequestBuilder<VirtualEndpointRequestBuilder> { /** * Provides operations to manage the auditEvents property of the microsoft.graph.virtualEndpoint entity. */ get auditEvents(): AuditEventsRequestBuilder; /** * Provides operations to manage the bulkActions property of the microsoft.graph.virtualEndpoint entity. */ get bulkActions(): BulkActionsRequestBuilder; /** * Provides operations to manage the cloudApps property of the microsoft.graph.virtualEndpoint entity. */ get cloudApps(): CloudAppsRequestBuilder; /** * Provides operations to manage the cloudPCs property of the microsoft.graph.virtualEndpoint entity. */ get cloudPCs(): CloudPCsRequestBuilder; /** * Provides operations to manage the crossCloudGovernmentOrganizationMapping property of the microsoft.graph.virtualEndpoint entity. */ get crossCloudGovernmentOrganizationMapping(): CrossCloudGovernmentOrganizationMappingRequestBuilder; /** * Provides operations to manage the deviceImages property of the microsoft.graph.virtualEndpoint entity. */ get deviceImages(): DeviceImagesRequestBuilder; /** * Provides operations to manage the externalPartners property of the microsoft.graph.virtualEndpoint entity. */ get externalPartners(): ExternalPartnersRequestBuilder; /** * Provides operations to manage the externalPartnerSettings property of the microsoft.graph.virtualEndpoint entity. */ get externalPartnerSettings(): ExternalPartnerSettingsRequestBuilder; /** * Provides operations to manage the frontLineServicePlans property of the microsoft.graph.virtualEndpoint entity. */ get frontLineServicePlans(): FrontLineServicePlansRequestBuilder; /** * Provides operations to manage the galleryImages property of the microsoft.graph.virtualEndpoint entity. */ get galleryImages(): GalleryImagesRequestBuilder; /** * Provides operations to call the getEffectivePermissions method. */ get getEffectivePermissions(): GetEffectivePermissionsRequestBuilder; /** * Provides operations to manage the managedLicenses property of the microsoft.graph.virtualEndpoint entity. */ get managedLicenses(): ManagedLicensesRequestBuilder; /** * Provides operations to manage the onPremisesConnections property of the microsoft.graph.virtualEndpoint entity. */ get onPremisesConnections(): OnPremisesConnectionsRequestBuilder; /** * Provides operations to manage the organizationSettings property of the microsoft.graph.virtualEndpoint entity. */ get organizationSettings(): OrganizationSettingsRequestBuilder; /** * Provides operations to manage the provisioningPolicies property of the microsoft.graph.virtualEndpoint entity. */ get provisioningPolicies(): ProvisioningPoliciesRequestBuilder; /** * Provides operations to manage the report property of the microsoft.graph.virtualEndpoint entity. */ get report(): ReportRequestBuilder; /** * Provides operations to manage the reports property of the microsoft.graph.virtualEndpoint entity. */ get reports(): ReportsRequestBuilder; /** * Provides operations to call the retrieveScopedPermissions method. */ get retrieveScopedPermissions(): RetrieveScopedPermissionsRequestBuilder; /** * Provides operations to call the retrieveTenantEncryptionSetting method. */ get retrieveTenantEncryptionSetting(): RetrieveTenantEncryptionSettingRequestBuilder; /** * Provides operations to manage the servicePlans property of the microsoft.graph.virtualEndpoint entity. */ get servicePlans(): ServicePlansRequestBuilder; /** * Provides operations to manage the snapshots property of the microsoft.graph.virtualEndpoint entity. */ get snapshots(): SnapshotsRequestBuilder; /** * Provides operations to manage the supportedRegions property of the microsoft.graph.virtualEndpoint entity. */ get supportedRegions(): SupportedRegionsRequestBuilder; /** * Provides operations to manage the userSettings property of the microsoft.graph.virtualEndpoint entity. */ get userSettings(): UserSettingsRequestBuilder; /** * Delete navigation property virtualEndpoint for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Get virtualEndpoint from deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<VirtualEndpoint>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<VirtualEndpointRequestBuilderGetQueryParameters> | undefined): Promise<VirtualEndpoint | undefined>; /** * Update the navigation property virtualEndpoint in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<VirtualEndpoint>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ patch(body: VirtualEndpoint, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<VirtualEndpoint | undefined>; /** * Delete navigation property virtualEndpoint for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; /** * Get virtualEndpoint from deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<VirtualEndpointRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Update the navigation property virtualEndpoint in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPatchRequestInformation(body: VirtualEndpoint, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Get virtualEndpoint from deviceManagement */ export interface VirtualEndpointRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const VirtualEndpointRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const VirtualEndpointRequestBuilderNavigationMetadata: Record<Exclude<keyof VirtualEndpointRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const VirtualEndpointRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map