UNPKG

@shi-corp/sdk-data-gateway

Version:

SDK client used to interface with the SHI Data Gateway service.

22 lines (21 loc) 1.07 kB
import { type WithTenantItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Entitlement/Shield/Tenant */ export interface TenantRequestBuilder extends BaseRequestBuilder<TenantRequestBuilder> { /** * Gets an item from the ApiSdk.Api.Entitlement.Shield.Tenant.item collection * @param tenantId The object ID of the tenant to operate against. * @returns {WithTenantItemRequestBuilder} */ byTenantId(tenantId: Guid): WithTenantItemRequestBuilder; } /** * Uri template for the request builder. */ export declare const TenantRequestBuilderUriTemplate = "{+baseurl}/Api/Entitlement/Shield/Tenant"; /** * Metadata for all the navigation properties in the request builder. */ export declare const TenantRequestBuilderNavigationMetadata: Record<Exclude<keyof TenantRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;