@shi-corp/sdk-data-gateway
Version:
SDK client used to interface with the SHI Data Gateway service.
28 lines (27 loc) • 1.51 kB
TypeScript
import { type Count } from '../../../../models/licenseEntitlement/shield/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Builds and executes requests for operations under /Api/Entitlement/Shield/Active
*/
export interface ActiveRequestBuilder extends BaseRequestBuilder<ActiveRequestBuilder> {
/**
* Retrieves the count of licenses that are available to the authenticated tenant. No scopes (permissions) required.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Count>}
*/
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Count | undefined>;
/**
* Retrieves the count of licenses that are available to the authenticated tenant. No scopes (permissions) required.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Uri template for the request builder.
*/
export declare const ActiveRequestBuilderUriTemplate = "{+baseurl}/Api/Entitlement/Shield/Active";
/**
* Metadata for all the requests in the request builder.
*/
export declare const ActiveRequestBuilderRequestsMetadata: RequestsMetadata;