@microsoft/msgraph-beta-sdk-external
Version:
External fluent API for Microsoft Graph
78 lines • 4.89 kB
TypeScript
import { type AuthorizationSystem } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type DataCollectionInfoRequestBuilder } from './dataCollectionInfo/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the authorizationSystems property of the microsoft.graph.externalConnectors.external entity.
*/
export interface AuthorizationSystemItemRequestBuilder extends BaseRequestBuilder<AuthorizationSystemItemRequestBuilder> {
/**
* Provides operations to manage the dataCollectionInfo property of the microsoft.graph.authorizationSystem entity.
*/
get dataCollectionInfo(): DataCollectionInfoRequestBuilder;
/**
* Delete navigation property authorizationSystems for external
* @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>;
/**
* Represents an onboarded Amazon Web Services (AWS) account, Azure subscription, or Google Cloud Platform (GCP) project that Microsoft Entra Permissions Management collects and analyzes permissions and actions on.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<AuthorizationSystem>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<AuthorizationSystemItemRequestBuilderGetQueryParameters> | undefined): Promise<AuthorizationSystem | undefined>;
/**
* Update the navigation property authorizationSystems in external
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<AuthorizationSystem>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
patch(body: AuthorizationSystem, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AuthorizationSystem | undefined>;
/**
* Delete navigation property authorizationSystems for external
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
/**
* Represents an onboarded Amazon Web Services (AWS) account, Azure subscription, or Google Cloud Platform (GCP) project that Microsoft Entra Permissions Management collects and analyzes permissions and actions on.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AuthorizationSystemItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
/**
* Update the navigation property authorizationSystems in external
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPatchRequestInformation(body: AuthorizationSystem, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Represents an onboarded Amazon Web Services (AWS) account, Azure subscription, or Google Cloud Platform (GCP) project that Microsoft Entra Permissions Management collects and analyzes permissions and actions on.
*/
export interface AuthorizationSystemItemRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const AuthorizationSystemItemRequestBuilderUriTemplate = "{+baseurl}/external/authorizationSystems/{authorizationSystem%2Did}{?%24expand,%24select}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const AuthorizationSystemItemRequestBuilderNavigationMetadata: Record<Exclude<keyof AuthorizationSystemItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const AuthorizationSystemItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map