/** * This file was auto-generated by openapi-typescript. * Do not make direct changes to the file. */ export interface paths { '/settings': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get tenant settings * @description Retrieve all settings for the current tenant */ get: operations['get-settings']; put?: never; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/accept-terms': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; get?: never; /** * Update accepted terms and conditions * @description Update accepted terms and conditions for the current tenant. Set acceptedTermsAndConditions to true to accept, false to unaccept (soft-delete). */ put: operations['put-settings-accept-terms']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/analyst': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get Analyst settings * @description Retrieve Analyst mode's data warehouse datasource configuration for the current tenant */ get: operations['get-settings-analyst']; /** * Update Analyst settings * @description Update Analyst mode's data warehouse datasource configuration for the current tenant */ put: operations['put-settings-analyst']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/chat-retention': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get chat retention settings * @description Retrieve the chat retention policy and rollout state for the current tenant */ get: operations['get-settings-chat-retention']; /** * Update chat retention settings * @description Confirm and apply a chat retention period */ put: operations['put-settings-chat-retention']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/coding-agents': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get coding agent settings * @description Retrieve instance-wide coding agent enablement and provider selection */ get: operations['get-settings-coding-agents']; /** * Update coding agent settings * @description Update instance-wide coding agent enablement and provider selection. Changes apply to new agents only. */ put: operations['put-settings-coding-agents']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/infra-memory': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; get?: never; /** * Update infrastructure memory settings * @description Update infrastructure memory settings for the current tenant */ put: operations['put-settings-infra-memory']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/investigation-triggers': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get investigation trigger settings * @description Retrieve investigation trigger settings (enablement, limits, skipped incident labels) for the current tenant */ get: operations['get-settings-investigation-triggers']; /** * Update investigation trigger settings * @description Update investigation trigger settings (enablement, limits, skipped incident labels) for the current tenant */ put: operations['put-settings-investigation-triggers']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/investigations': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get tenant investigation settings * @description Retrieve the tenant's investigation settings: alert continuation behavior and the loops toggle */ get: operations['get-settings-investigations']; /** * Update tenant investigation settings * @description Update the tenant's investigation settings: alert continuation behavior and the loops toggle */ put: operations['put-settings-investigations']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/sandbox': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get Python sandbox settings * @description Retrieve Python sandbox networking and security settings for the current tenant */ get: operations['get-settings-sandbox']; /** * Update Python sandbox settings * @description Update Python sandbox networking and security settings for the current tenant */ put: operations['put-settings-sandbox']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/sandbox/user': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get user Python sandbox settings * @description Retrieve Python sandbox enablement for the current user */ get: operations['get-settings-sandbox-user']; /** * Update user Python sandbox settings * @description Update Python sandbox enablement for the current user */ put: operations['put-settings-sandbox-user']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/sql-indexing': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get SQL table indexing settings * @description Retrieve SQL table indexing settings for the current tenant */ get: operations['get-settings-sql-indexing']; /** * Update SQL table indexing settings * @description Update SQL table indexing settings for the current tenant */ put: operations['put-settings-sql-indexing']; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; '/settings/terms': { parameters: { query?: never; header?: never; path?: never; cookie?: never; }; /** * Get terms and conditions * @description Retrieve current version of terms and conditions */ get: operations['get-settings-terms']; put?: never; post?: never; delete?: never; options?: never; head?: never; patch?: never; trace?: never; }; } export type webhooks = Record; export interface components { schemas: { AcceptTermsAndConditionsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/AcceptTermsAndConditionsBody.json */ readonly $schema?: string; acceptedTermsAndConditions: boolean | null; }; AnalystSettingsResponse: { grafanaUrl?: string; /** Format: date-time */ updatedAt: string; warehouseDatasourceType?: string; warehouseDatasourceUid?: string; }; ChatRetentionSettingsResponse: { allowedPeriodDays: number[]; /** Format: date-time */ confirmedAt?: string; confirmedBy?: string; /** Format: int64 */ defaultPeriodDays: number; /** Format: int64 */ periodDays?: number; }; CodingAgentSettingsResponse: { /** @enum {string} */ defaultProvider: 'wingbox' | 'cursor'; enabled: boolean; enabledProviders: string[]; /** Format: date-time */ updatedAt?: string; }; Error: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/Error.json */ readonly $schema?: string; details?: { [key: string]: unknown; }; hint?: string; message: string; name: string; retryable?: boolean; /** Format: int64 */ statusCode?: number; traceId?: string; typeUri?: string; }; InvestigationSettingsResponse: { customSkippedIncidentLabelsEnabled: boolean; skippedIncidentLabels: components['schemas']['SkippedIncidentLabel'][]; /** Format: date-time */ updatedAt: string; }; ResponseBodyAnalystSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyAnalystSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['AnalystSettingsResponse']; status: string; }; ResponseBodyChatRetentionSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyChatRetentionSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['ChatRetentionSettingsResponse']; status: string; }; ResponseBodyCodingAgentSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyCodingAgentSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['CodingAgentSettingsResponse']; status: string; }; ResponseBodyInvestigationSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyInvestigationSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['InvestigationSettingsResponse']; status: string; }; ResponseBodySandboxSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodySandboxSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['SandboxSettingsResponse']; status: string; }; ResponseBodySqlIndexingSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodySqlIndexingSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['SqlIndexingSettingsResponse']; status: string; }; ResponseBodyTenantInvestigationSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyTenantInvestigationSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['TenantInvestigationSettingsResponse']; status: string; }; ResponseBodyTenantSettingResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyTenantSettingResponse.json */ readonly $schema?: string; data: components['schemas']['TenantSettingResponse']; status: string; }; ResponseBodyTermsAndConditionsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyTermsAndConditionsResponse.json */ readonly $schema?: string; data: components['schemas']['TermsAndConditionsResponse']; status: string; }; ResponseBodyUserSandboxSettingsResponse: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/ResponseBodyUserSandboxSettingsResponse.json */ readonly $schema?: string; data: components['schemas']['UserSandboxSettingsResponse']; status: string; }; SandboxSettingsResponse: { allowedHosts: string[]; blockedHosts: string[]; networkEnabled: boolean; /** Format: date-time */ updatedAt: string; }; SkippedIncidentLabel: { key: string; value: string; }; SqlDatasourceConfigBody: { type: string; uid: string; }; SqlDatasourceConfigResponse: { type: string; uid: string; }; SqlIndexingSettingsResponse: { datasources: components['schemas']['SqlDatasourceConfigResponse'][]; enabled: boolean; grafanaUrl?: string; /** Format: date-time */ updatedAt: string; }; TenantInvestigationSettingsResponse: { /** Format: int64 */ continuationWindowMinutes: number; continueOnAlertUpdates: boolean; continueOnIRMUpdates: boolean; loopsEnabled: boolean; /** Format: date-time */ updatedAt: string; }; TenantSettingResponse: { acceptedTermsAndConditions: boolean; /** Format: date-time */ created: string; infraMemoryEnabled: boolean; /** Format: date-time */ modified: string; /** @enum {string} */ termsType?: 'msa' | 'termsAndConditions'; version?: string; }; TermsAndConditionsResponse: { acceptedTermsAndConditions?: boolean; acceptedVersion?: string; content: string; /** @enum {string} */ termsType: 'msa' | 'termsAndConditions'; version: string; }; UpdateAnalystSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateAnalystSettingsBody.json */ readonly $schema?: string; warehouseDatasourceType?: string; warehouseDatasourceUid?: string; }; UpdateChatRetentionSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateChatRetentionSettingsBody.json */ readonly $schema?: string; confirmed: boolean; /** Format: int64 */ periodDays: number; }; UpdateCodingAgentSettingsInputBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateCodingAgentSettingsInputBody.json */ readonly $schema?: string; /** @enum {string} */ defaultProvider: 'wingbox' | 'cursor'; enabled: boolean; enabledProviders: string[]; }; UpdateInfraMemorySettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateInfraMemorySettingsBody.json */ readonly $schema?: string; enabled: boolean; /** @description Datasource UIDs infrastructure memory discovery must skip. Omit the field to leave the current exclusions unchanged, send a list to replace them, or send an empty list to clear them. */ excludedDatasourceUids?: string[]; }; UpdateInvestigationSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateInvestigationSettingsBody.json */ readonly $schema?: string; customSkippedIncidentLabelsEnabled?: boolean; skippedIncidentLabels: components['schemas']['SkippedIncidentLabel'][]; }; UpdateSandboxSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateSandboxSettingsBody.json */ readonly $schema?: string; allowedHosts: string[]; blockedHosts: string[]; networkEnabled: boolean; }; UpdateSqlIndexingSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateSqlIndexingSettingsBody.json */ readonly $schema?: string; datasources: components['schemas']['SqlDatasourceConfigBody'][]; enabled: boolean; grafanaUrl?: string; }; UpdateTenantInvestigationSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateTenantInvestigationSettingsBody.json */ readonly $schema?: string; /** Format: int64 */ continuationWindowMinutes?: number; continueOnAlertUpdates?: boolean; continueOnIRMUpdates?: boolean; loopsEnabled?: boolean; }; UpdateUserSandboxSettingsBody: { /** * Format: uri * @description A URL to the JSON Schema for this object. * @example https://example.com/schemas/UpdateUserSandboxSettingsBody.json */ readonly $schema?: string; enabled: boolean; }; UserSandboxSettingsResponse: { enabled: boolean; /** Format: date-time */ updatedAt: string; }; }; responses: never; parameters: never; requestBodies: never; headers: never; pathItems: never; } export type $defs = Record; export interface operations { 'get-settings': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyTenantSettingResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-accept-terms': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['AcceptTermsAndConditionsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyTenantSettingResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-analyst': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyAnalystSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-analyst': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateAnalystSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyAnalystSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-chat-retention': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyChatRetentionSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-chat-retention': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateChatRetentionSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyChatRetentionSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-coding-agents': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyCodingAgentSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-coding-agents': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateCodingAgentSettingsInputBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyCodingAgentSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-infra-memory': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateInfraMemorySettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyTenantSettingResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-investigation-triggers': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyInvestigationSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-investigation-triggers': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateInvestigationSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyInvestigationSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-investigations': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyTenantInvestigationSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-investigations': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateTenantInvestigationSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyTenantInvestigationSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-sandbox': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodySandboxSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-sandbox': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateSandboxSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodySandboxSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-sandbox-user': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyUserSandboxSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-sandbox-user': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateUserSandboxSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyUserSandboxSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-sql-indexing': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodySqlIndexingSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'put-settings-sql-indexing': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody: { content: { 'application/json': components['schemas']['UpdateSqlIndexingSettingsBody']; }; }; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodySqlIndexingSettingsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; 'get-settings-terms': { parameters: { query?: never; header?: { 'X-Scope-OrgID'?: string; 'X-Grafana-User'?: string; 'X-Grafana-User-ID'?: string; 'X-Grafana-URL'?: string; 'X-Grafana-API-Key'?: string; 'X-Oss-Mode'?: boolean; 'X-User-Type'?: string; }; path?: never; cookie?: never; }; requestBody?: never; responses: { /** @description OK */ 200: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['ResponseBodyTermsAndConditionsResponse']; }; }; /** @description Error */ default: { headers: { [name: string]: unknown; }; content: { 'application/json': components['schemas']['Error']; }; }; }; }; } //# sourceMappingURL=settings.gen.d.ts.map