@microsoft/msgraph-beta-sdk-devicemanagement
Version:
DeviceManagement fluent API for Microsoft Graph
98 lines • 5.2 kB
TypeScript
import { type ZebraFotaConnector } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type ApproveFotaAppsRequestBuilder } from './approveFotaApps/index.js';
import { type ConnectRequestBuilder } from './connect/index.js';
import { type DisconnectRequestBuilder } from './disconnect/index.js';
import { type HasActiveDeploymentsRequestBuilder } from './hasActiveDeployments/index.js';
import { type RetrieveZebraFotaDeviceModelsRequestBuilder } from './retrieveZebraFotaDeviceModels/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the zebraFotaConnector property of the microsoft.graph.deviceManagement entity.
*/
export interface ZebraFotaConnectorRequestBuilder extends BaseRequestBuilder<ZebraFotaConnectorRequestBuilder> {
/**
* Provides operations to call the approveFotaApps method.
*/
get approveFotaApps(): ApproveFotaAppsRequestBuilder;
/**
* Provides operations to call the connect method.
*/
get connect(): ConnectRequestBuilder;
/**
* Provides operations to call the disconnect method.
*/
get disconnect(): DisconnectRequestBuilder;
/**
* Provides operations to call the hasActiveDeployments method.
*/
get hasActiveDeployments(): HasActiveDeploymentsRequestBuilder;
/**
* Provides operations to call the retrieveZebraFotaDeviceModels method.
*/
get retrieveZebraFotaDeviceModels(): RetrieveZebraFotaDeviceModelsRequestBuilder;
/**
* Delete navigation property zebraFotaConnector 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>;
/**
* The singleton ZebraFotaConnector associated with account.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ZebraFotaConnector>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<ZebraFotaConnectorRequestBuilderGetQueryParameters> | undefined): Promise<ZebraFotaConnector | undefined>;
/**
* Update the navigation property zebraFotaConnector in deviceManagement
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ZebraFotaConnector>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
patch(body: ZebraFotaConnector, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ZebraFotaConnector | undefined>;
/**
* Delete navigation property zebraFotaConnector for deviceManagement
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
/**
* The singleton ZebraFotaConnector associated with account.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ZebraFotaConnectorRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the navigation property zebraFotaConnector 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: ZebraFotaConnector, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* The singleton ZebraFotaConnector associated with account.
*/
export interface ZebraFotaConnectorRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const ZebraFotaConnectorRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/zebraFotaConnector{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const ZebraFotaConnectorRequestBuilderNavigationMetadata: Record<Exclude<keyof ZebraFotaConnectorRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const ZebraFotaConnectorRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map