@shi-corp/sdk-data-gateway
Version:
SDK client used to interface with the SHI Data Gateway service.
37 lines (36 loc) • 2.45 kB
TypeScript
import { type Shield } from '../../../../../models/licenseEntitlement/index.js';
import { type CorrelationRequestBuilder } from './correlation/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Builds and executes requests for operations under /Api/Entitlement/Shield/Tenant/{tenantId}
*/
export interface WithTenantItemRequestBuilder extends BaseRequestBuilder<WithTenantItemRequestBuilder> {
/**
* The Correlation property
*/
get correlation(): CorrelationRequestBuilder;
/**
* Retrieves the list of license entitlements that are assigned to the specified tenant.This endpoint requires the `LicenseEntitlement.Read.All`, or `LicenseEntitlement.ReadWrite.All` scope (permission). This endpoint is also only accessible form the `SHI` and `SHI Lab` tenants. End user access is restricted.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Shield[]>}
*/
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Shield[] | undefined>;
/**
* Retrieves the list of license entitlements that are assigned to the specified tenant.This endpoint requires the `LicenseEntitlement.Read.All`, or `LicenseEntitlement.ReadWrite.All` scope (permission). This endpoint is also only accessible form the `SHI` and `SHI Lab` tenants. End user access is restricted.
* @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 WithTenantItemRequestBuilderUriTemplate = "{+baseurl}/Api/Entitlement/Shield/Tenant/{tenantId}";
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const WithTenantItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WithTenantItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Metadata for all the requests in the request builder.
*/
export declare const WithTenantItemRequestBuilderRequestsMetadata: RequestsMetadata;