@sap-ai-sdk/ai-api
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
84 lines • 4.64 kB
JavaScript
/*
* Copyright (c) 2026 SAP SE or an SAP affiliate company. All rights reserved.
*
* This is a generated file powered by the SAP Cloud SDK for JavaScript.
*/
import { OpenApiRequestBuilder } from '@sap-ai-sdk/core';
/**
* Representation of the 'ResourceQuotaApi'.
* This API is part of the 'AI_CORE_API' service.
*/
export const ResourceQuotaApi = {
_defaultBasePath: undefined,
/**
* Get the details about quota and usage for resource groups
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetResourceGroupQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/resourceGroups', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath),
/**
* Get the details about quota and usage for executables
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetExecutableQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/executables', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath),
/**
* Get the details about quota and usage for applications
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetApplicationQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/applications', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath),
/**
* Get the details about quota and usage for repositories
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetRepositoryQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/repositories', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath),
/**
* Get the details about quota and usage for tenant-scoped or tenant-wide generic secrets
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization, AI-Resource-Group, AI-Tenant-Scope.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetGenericSecretQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/secrets', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath),
/**
* Get the details about quota and usage for docker registry secrets
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetDockerRegistrySecretQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/dockerRegistrySecrets', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath),
/**
* Get the details about quota and usage for deployments
* @param queryParameters - Object containing the following keys: quotaOnly.
* @param headerParameters - Object containing the following keys: Authorization.
* @returns The request builder, use the `execute()` method to trigger the request.
*/
kubesubmitV4ResourceQuotaGetDeploymentQuota: (queryParameters, headerParameters) => new OpenApiRequestBuilder('get', '/admin/resourceQuota/deployments', {
queryParameters,
headerParameters
}, ResourceQuotaApi._defaultBasePath)
};
//# sourceMappingURL=resource-quota-api.js.map