mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
core: bump openapitools/openapi-generator-cli from v7.21.0 to v7.22.0 in /packages/client-ts (#22575)
* core: bump openapitools/openapi-generator-cli in /packages/client-ts Bumps openapitools/openapi-generator-cli from v7.21.0 to v7.22.0. --- updated-dependencies: - dependency-name: openapitools/openapi-generator-cli dependency-version: v7.22.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * re-gen Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Generated
+1
-1
@@ -1,7 +1,7 @@
|
||||
---
|
||||
services:
|
||||
gen:
|
||||
image: docker.io/openapitools/openapi-generator-cli:v7.21.0
|
||||
image: docker.io/openapitools/openapi-generator-cli:v7.22.0
|
||||
restart: never
|
||||
network_mode: none
|
||||
volumes:
|
||||
|
||||
Generated
+12
-22
@@ -12,29 +12,19 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
App,
|
||||
FileList,
|
||||
PatchedSettingsRequest,
|
||||
Settings,
|
||||
SettingsRequest,
|
||||
SystemInfo,
|
||||
UsageEnum,
|
||||
UsedBy,
|
||||
Version,
|
||||
VersionHistory,
|
||||
} from "../models/index";
|
||||
import { type App, AppFromJSON } from "../models/App";
|
||||
import { type FileList, FileListFromJSON } from "../models/FileList";
|
||||
import {
|
||||
AppFromJSON,
|
||||
FileListFromJSON,
|
||||
type PatchedSettingsRequest,
|
||||
PatchedSettingsRequestToJSON,
|
||||
SettingsFromJSON,
|
||||
SettingsRequestToJSON,
|
||||
SystemInfoFromJSON,
|
||||
UsedByFromJSON,
|
||||
VersionFromJSON,
|
||||
VersionHistoryFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedSettingsRequest";
|
||||
import { type Settings, SettingsFromJSON } from "../models/Settings";
|
||||
import { type SettingsRequest, SettingsRequestToJSON } from "../models/SettingsRequest";
|
||||
import { type SystemInfo, SystemInfoFromJSON } from "../models/SystemInfo";
|
||||
import { type UsageEnum } from "../models/UsageEnum";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import { type Version, VersionFromJSON } from "../models/Version";
|
||||
import { type VersionHistory, VersionHistoryFromJSON } from "../models/VersionHistory";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface AdminFileCreateRequest {
|
||||
@@ -810,7 +800,7 @@ export class AdminApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/admin/version/history/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
+123
-124
@@ -12,70 +12,87 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
Device,
|
||||
DuoDevice,
|
||||
DuoDeviceRequest,
|
||||
EmailDevice,
|
||||
EmailDeviceRequest,
|
||||
GoogleEndpointDevice,
|
||||
GoogleEndpointDeviceRequest,
|
||||
PaginatedDuoDeviceList,
|
||||
PaginatedEmailDeviceList,
|
||||
PaginatedGoogleEndpointDeviceList,
|
||||
PaginatedSMSDeviceList,
|
||||
PaginatedStaticDeviceList,
|
||||
PaginatedTOTPDeviceList,
|
||||
PaginatedWebAuthnDeviceList,
|
||||
PatchedDuoDeviceRequest,
|
||||
PatchedEmailDeviceRequest,
|
||||
PatchedGoogleEndpointDeviceRequest,
|
||||
PatchedSMSDeviceRequest,
|
||||
PatchedStaticDeviceRequest,
|
||||
PatchedTOTPDeviceRequest,
|
||||
PatchedWebAuthnDeviceRequest,
|
||||
SMSDevice,
|
||||
SMSDeviceRequest,
|
||||
StaticDevice,
|
||||
StaticDeviceRequest,
|
||||
TOTPDevice,
|
||||
TOTPDeviceRequest,
|
||||
UsedBy,
|
||||
WebAuthnDevice,
|
||||
WebAuthnDeviceRequest,
|
||||
} from "../models/index";
|
||||
import { type Device, DeviceFromJSON } from "../models/Device";
|
||||
import { type DuoDevice, DuoDeviceFromJSON } from "../models/DuoDevice";
|
||||
import { type DuoDeviceRequest, DuoDeviceRequestToJSON } from "../models/DuoDeviceRequest";
|
||||
import { type EmailDevice, EmailDeviceFromJSON } from "../models/EmailDevice";
|
||||
import { type EmailDeviceRequest, EmailDeviceRequestToJSON } from "../models/EmailDeviceRequest";
|
||||
import {
|
||||
DeviceFromJSON,
|
||||
DuoDeviceFromJSON,
|
||||
DuoDeviceRequestToJSON,
|
||||
EmailDeviceFromJSON,
|
||||
EmailDeviceRequestToJSON,
|
||||
type GoogleEndpointDevice,
|
||||
GoogleEndpointDeviceFromJSON,
|
||||
} from "../models/GoogleEndpointDevice";
|
||||
import {
|
||||
type GoogleEndpointDeviceRequest,
|
||||
GoogleEndpointDeviceRequestToJSON,
|
||||
} from "../models/GoogleEndpointDeviceRequest";
|
||||
import {
|
||||
type PaginatedDuoDeviceList,
|
||||
PaginatedDuoDeviceListFromJSON,
|
||||
} from "../models/PaginatedDuoDeviceList";
|
||||
import {
|
||||
type PaginatedEmailDeviceList,
|
||||
PaginatedEmailDeviceListFromJSON,
|
||||
} from "../models/PaginatedEmailDeviceList";
|
||||
import {
|
||||
type PaginatedGoogleEndpointDeviceList,
|
||||
PaginatedGoogleEndpointDeviceListFromJSON,
|
||||
} from "../models/PaginatedGoogleEndpointDeviceList";
|
||||
import {
|
||||
type PaginatedSMSDeviceList,
|
||||
PaginatedSMSDeviceListFromJSON,
|
||||
} from "../models/PaginatedSMSDeviceList";
|
||||
import {
|
||||
type PaginatedStaticDeviceList,
|
||||
PaginatedStaticDeviceListFromJSON,
|
||||
} from "../models/PaginatedStaticDeviceList";
|
||||
import {
|
||||
type PaginatedTOTPDeviceList,
|
||||
PaginatedTOTPDeviceListFromJSON,
|
||||
} from "../models/PaginatedTOTPDeviceList";
|
||||
import {
|
||||
type PaginatedWebAuthnDeviceList,
|
||||
PaginatedWebAuthnDeviceListFromJSON,
|
||||
} from "../models/PaginatedWebAuthnDeviceList";
|
||||
import {
|
||||
type PatchedDuoDeviceRequest,
|
||||
PatchedDuoDeviceRequestToJSON,
|
||||
} from "../models/PatchedDuoDeviceRequest";
|
||||
import {
|
||||
type PatchedEmailDeviceRequest,
|
||||
PatchedEmailDeviceRequestToJSON,
|
||||
} from "../models/PatchedEmailDeviceRequest";
|
||||
import {
|
||||
type PatchedGoogleEndpointDeviceRequest,
|
||||
PatchedGoogleEndpointDeviceRequestToJSON,
|
||||
} from "../models/PatchedGoogleEndpointDeviceRequest";
|
||||
import {
|
||||
type PatchedSMSDeviceRequest,
|
||||
PatchedSMSDeviceRequestToJSON,
|
||||
} from "../models/PatchedSMSDeviceRequest";
|
||||
import {
|
||||
type PatchedStaticDeviceRequest,
|
||||
PatchedStaticDeviceRequestToJSON,
|
||||
} from "../models/PatchedStaticDeviceRequest";
|
||||
import {
|
||||
type PatchedTOTPDeviceRequest,
|
||||
PatchedTOTPDeviceRequestToJSON,
|
||||
} from "../models/PatchedTOTPDeviceRequest";
|
||||
import {
|
||||
type PatchedWebAuthnDeviceRequest,
|
||||
PatchedWebAuthnDeviceRequestToJSON,
|
||||
SMSDeviceFromJSON,
|
||||
SMSDeviceRequestToJSON,
|
||||
StaticDeviceFromJSON,
|
||||
StaticDeviceRequestToJSON,
|
||||
TOTPDeviceFromJSON,
|
||||
TOTPDeviceRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
WebAuthnDeviceFromJSON,
|
||||
} from "../models/PatchedWebAuthnDeviceRequest";
|
||||
import { type SMSDevice, SMSDeviceFromJSON } from "../models/SMSDevice";
|
||||
import { type SMSDeviceRequest, SMSDeviceRequestToJSON } from "../models/SMSDeviceRequest";
|
||||
import { type StaticDevice, StaticDeviceFromJSON } from "../models/StaticDevice";
|
||||
import { type StaticDeviceRequest, StaticDeviceRequestToJSON } from "../models/StaticDeviceRequest";
|
||||
import { type TOTPDevice, TOTPDeviceFromJSON } from "../models/TOTPDevice";
|
||||
import { type TOTPDeviceRequest, TOTPDeviceRequestToJSON } from "../models/TOTPDeviceRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import { type WebAuthnDevice, WebAuthnDeviceFromJSON } from "../models/WebAuthnDevice";
|
||||
import {
|
||||
type WebAuthnDeviceRequest,
|
||||
WebAuthnDeviceRequestToJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/WebAuthnDeviceRequest";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface AuthenticatorsAdminAllListRequest {
|
||||
@@ -643,7 +660,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -781,7 +798,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -847,7 +864,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -921,7 +938,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1054,7 +1071,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1196,7 +1213,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1262,7 +1279,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1336,7 +1353,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1473,10 +1490,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/endpoint/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1618,10 +1632,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/endpoint/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1691,10 +1702,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/endpoint/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1770,10 +1778,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/endpoint/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1910,7 +1915,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2048,7 +2053,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2114,7 +2119,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2188,7 +2193,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2323,7 +2328,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2465,7 +2470,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2533,7 +2538,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2609,7 +2614,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2744,7 +2749,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2885,7 +2890,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2951,7 +2956,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3025,7 +3030,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3160,7 +3165,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3302,7 +3307,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3372,7 +3377,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3448,7 +3453,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/admin/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3565,7 +3570,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3702,7 +3707,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3768,7 +3773,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3838,7 +3843,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/duo/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3900,7 +3905,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/duo/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -3964,7 +3969,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4101,7 +4106,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4167,7 +4172,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4240,7 +4245,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/email/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4302,7 +4307,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/email/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4442,10 +4447,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/endpoint/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4512,10 +4514,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/endpoint/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4580,7 +4579,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4717,7 +4716,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4783,7 +4782,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4853,7 +4852,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/sms/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4915,7 +4914,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/sms/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4979,7 +4978,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5116,7 +5115,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5184,7 +5183,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5260,7 +5259,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/static/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5324,7 +5323,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/static/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5389,7 +5388,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5526,7 +5525,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5592,7 +5591,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5662,7 +5661,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/totp/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5724,7 +5723,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/totp/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5789,7 +5788,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5927,7 +5926,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5997,7 +5996,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -6073,7 +6072,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/webauthn/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -6141,7 +6140,7 @@ export class AuthenticatorsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/authenticators/webauthn/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
Generated
+136
-156
@@ -12,110 +12,117 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
Application,
|
||||
ApplicationEntitlement,
|
||||
ApplicationEntitlementRequest,
|
||||
ApplicationRequest,
|
||||
AuthenticatedSession,
|
||||
Brand,
|
||||
BrandRequest,
|
||||
BulkDeleteSessionResponse,
|
||||
CurrentBrand,
|
||||
DataExport,
|
||||
Group,
|
||||
GroupRequest,
|
||||
ImpersonationRequest,
|
||||
IntentEnum,
|
||||
Link,
|
||||
PaginatedApplicationEntitlementList,
|
||||
PaginatedApplicationList,
|
||||
PaginatedAuthenticatedSessionList,
|
||||
PaginatedBrandList,
|
||||
PaginatedGroupList,
|
||||
PaginatedTokenList,
|
||||
PaginatedUserConsentList,
|
||||
PaginatedUserList,
|
||||
PatchedApplicationEntitlementRequest,
|
||||
PatchedApplicationRequest,
|
||||
PatchedBrandRequest,
|
||||
PatchedGroupRequest,
|
||||
PatchedTokenRequest,
|
||||
PatchedUserRequest,
|
||||
PolicyTestResult,
|
||||
SessionUser,
|
||||
Token,
|
||||
TokenRequest,
|
||||
TokenSetKeyRequest,
|
||||
TokenView,
|
||||
TransactionApplicationRequest,
|
||||
TransactionApplicationResponse,
|
||||
UsedBy,
|
||||
User,
|
||||
UserAccountLockdownRequest,
|
||||
UserAccountRequest,
|
||||
UserConsent,
|
||||
UserPasswordHashSetRequest,
|
||||
UserPasswordSetRequest,
|
||||
UserPath,
|
||||
UserRecoveryEmailRequest,
|
||||
UserRecoveryLinkRequest,
|
||||
UserRequest,
|
||||
UserServiceAccountRequest,
|
||||
UserServiceAccountResponse,
|
||||
UserTypeEnum,
|
||||
} from "../models/index";
|
||||
import { type Application, ApplicationFromJSON } from "../models/Application";
|
||||
import {
|
||||
type ApplicationEntitlement,
|
||||
ApplicationEntitlementFromJSON,
|
||||
} from "../models/ApplicationEntitlement";
|
||||
import {
|
||||
type ApplicationEntitlementRequest,
|
||||
ApplicationEntitlementRequestToJSON,
|
||||
ApplicationFromJSON,
|
||||
ApplicationRequestToJSON,
|
||||
} from "../models/ApplicationEntitlementRequest";
|
||||
import { type ApplicationRequest, ApplicationRequestToJSON } from "../models/ApplicationRequest";
|
||||
import {
|
||||
type AuthenticatedSession,
|
||||
AuthenticatedSessionFromJSON,
|
||||
BrandFromJSON,
|
||||
BrandRequestToJSON,
|
||||
} from "../models/AuthenticatedSession";
|
||||
import { type Brand, BrandFromJSON } from "../models/Brand";
|
||||
import { type BrandRequest, BrandRequestToJSON } from "../models/BrandRequest";
|
||||
import {
|
||||
type BulkDeleteSessionResponse,
|
||||
BulkDeleteSessionResponseFromJSON,
|
||||
CurrentBrandFromJSON,
|
||||
DataExportFromJSON,
|
||||
GroupFromJSON,
|
||||
GroupRequestToJSON,
|
||||
} from "../models/BulkDeleteSessionResponse";
|
||||
import { type CurrentBrand, CurrentBrandFromJSON } from "../models/CurrentBrand";
|
||||
import { type DataExport, DataExportFromJSON } from "../models/DataExport";
|
||||
import { type Group, GroupFromJSON } from "../models/Group";
|
||||
import { type GroupRequest, GroupRequestToJSON } from "../models/GroupRequest";
|
||||
import {
|
||||
type ImpersonationRequest,
|
||||
ImpersonationRequestToJSON,
|
||||
LinkFromJSON,
|
||||
} from "../models/ImpersonationRequest";
|
||||
import { type IntentEnum } from "../models/IntentEnum";
|
||||
import { type Link, LinkFromJSON } from "../models/Link";
|
||||
import {
|
||||
type PaginatedApplicationEntitlementList,
|
||||
PaginatedApplicationEntitlementListFromJSON,
|
||||
} from "../models/PaginatedApplicationEntitlementList";
|
||||
import {
|
||||
type PaginatedApplicationList,
|
||||
PaginatedApplicationListFromJSON,
|
||||
} from "../models/PaginatedApplicationList";
|
||||
import {
|
||||
type PaginatedAuthenticatedSessionList,
|
||||
PaginatedAuthenticatedSessionListFromJSON,
|
||||
PaginatedBrandListFromJSON,
|
||||
PaginatedGroupListFromJSON,
|
||||
PaginatedTokenListFromJSON,
|
||||
} from "../models/PaginatedAuthenticatedSessionList";
|
||||
import { type PaginatedBrandList, PaginatedBrandListFromJSON } from "../models/PaginatedBrandList";
|
||||
import { type PaginatedGroupList, PaginatedGroupListFromJSON } from "../models/PaginatedGroupList";
|
||||
import { type PaginatedTokenList, PaginatedTokenListFromJSON } from "../models/PaginatedTokenList";
|
||||
import {
|
||||
type PaginatedUserConsentList,
|
||||
PaginatedUserConsentListFromJSON,
|
||||
PaginatedUserListFromJSON,
|
||||
} from "../models/PaginatedUserConsentList";
|
||||
import { type PaginatedUserList, PaginatedUserListFromJSON } from "../models/PaginatedUserList";
|
||||
import {
|
||||
type PatchedApplicationEntitlementRequest,
|
||||
PatchedApplicationEntitlementRequestToJSON,
|
||||
} from "../models/PatchedApplicationEntitlementRequest";
|
||||
import {
|
||||
type PatchedApplicationRequest,
|
||||
PatchedApplicationRequestToJSON,
|
||||
PatchedBrandRequestToJSON,
|
||||
PatchedGroupRequestToJSON,
|
||||
PatchedTokenRequestToJSON,
|
||||
PatchedUserRequestToJSON,
|
||||
PolicyTestResultFromJSON,
|
||||
SessionUserFromJSON,
|
||||
TokenFromJSON,
|
||||
TokenRequestToJSON,
|
||||
TokenSetKeyRequestToJSON,
|
||||
TokenViewFromJSON,
|
||||
} from "../models/PatchedApplicationRequest";
|
||||
import { type PatchedBrandRequest, PatchedBrandRequestToJSON } from "../models/PatchedBrandRequest";
|
||||
import { type PatchedGroupRequest, PatchedGroupRequestToJSON } from "../models/PatchedGroupRequest";
|
||||
import { type PatchedTokenRequest, PatchedTokenRequestToJSON } from "../models/PatchedTokenRequest";
|
||||
import { type PatchedUserRequest, PatchedUserRequestToJSON } from "../models/PatchedUserRequest";
|
||||
import { type PolicyTestResult, PolicyTestResultFromJSON } from "../models/PolicyTestResult";
|
||||
import { type SessionUser, SessionUserFromJSON } from "../models/SessionUser";
|
||||
import { type Token, TokenFromJSON } from "../models/Token";
|
||||
import { type TokenRequest, TokenRequestToJSON } from "../models/TokenRequest";
|
||||
import { type TokenSetKeyRequest, TokenSetKeyRequestToJSON } from "../models/TokenSetKeyRequest";
|
||||
import { type TokenView, TokenViewFromJSON } from "../models/TokenView";
|
||||
import {
|
||||
type TransactionApplicationRequest,
|
||||
TransactionApplicationRequestToJSON,
|
||||
} from "../models/TransactionApplicationRequest";
|
||||
import {
|
||||
type TransactionApplicationResponse,
|
||||
TransactionApplicationResponseFromJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/TransactionApplicationResponse";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import { type User, UserFromJSON } from "../models/User";
|
||||
import {
|
||||
type UserAccountLockdownRequest,
|
||||
UserAccountLockdownRequestToJSON,
|
||||
UserAccountRequestToJSON,
|
||||
UserConsentFromJSON,
|
||||
UserFromJSON,
|
||||
} from "../models/UserAccountLockdownRequest";
|
||||
import { type UserAccountRequest, UserAccountRequestToJSON } from "../models/UserAccountRequest";
|
||||
import { type UserConsent, UserConsentFromJSON } from "../models/UserConsent";
|
||||
import {
|
||||
type UserPasswordHashSetRequest,
|
||||
UserPasswordHashSetRequestToJSON,
|
||||
} from "../models/UserPasswordHashSetRequest";
|
||||
import {
|
||||
type UserPasswordSetRequest,
|
||||
UserPasswordSetRequestToJSON,
|
||||
UserPathFromJSON,
|
||||
} from "../models/UserPasswordSetRequest";
|
||||
import { type UserPath, UserPathFromJSON } from "../models/UserPath";
|
||||
import {
|
||||
type UserRecoveryEmailRequest,
|
||||
UserRecoveryEmailRequestToJSON,
|
||||
} from "../models/UserRecoveryEmailRequest";
|
||||
import {
|
||||
type UserRecoveryLinkRequest,
|
||||
UserRecoveryLinkRequestToJSON,
|
||||
UserRequestToJSON,
|
||||
} from "../models/UserRecoveryLinkRequest";
|
||||
import { type UserRequest, UserRequestToJSON } from "../models/UserRequest";
|
||||
import {
|
||||
type UserServiceAccountRequest,
|
||||
UserServiceAccountRequestToJSON,
|
||||
} from "../models/UserServiceAccountRequest";
|
||||
import {
|
||||
type UserServiceAccountResponse,
|
||||
UserServiceAccountResponseFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/UserServiceAccountResponse";
|
||||
import { type UserTypeEnum } from "../models/UserTypeEnum";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface CoreApplicationEntitlementsCreateRequest {
|
||||
@@ -634,7 +641,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/application_entitlements/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -787,7 +794,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/application_entitlements/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -860,7 +867,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/application_entitlements/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -939,7 +946,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/application_entitlements/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1012,7 +1019,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/application_entitlements/{pbm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1083,10 +1090,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/applications/{slug}/check_access/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1216,10 +1220,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/applications/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1388,10 +1389,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/applications/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1457,10 +1455,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/applications/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1530,10 +1525,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/applications/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1595,10 +1587,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/applications/{slug}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1729,10 +1718,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/authenticated_sessions/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1880,10 +1866,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/authenticated_sessions/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1950,10 +1933,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/authenticated_sessions/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2133,7 +2113,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/brands/{brand_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"brand_uuid"}}`,
|
||||
"{brand_uuid}",
|
||||
encodeURIComponent(String(requestParameters["brandUuid"])),
|
||||
);
|
||||
|
||||
@@ -2334,7 +2314,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/brands/{brand_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"brand_uuid"}}`,
|
||||
"{brand_uuid}",
|
||||
encodeURIComponent(String(requestParameters["brandUuid"])),
|
||||
);
|
||||
|
||||
@@ -2399,7 +2379,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/brands/{brand_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"brand_uuid"}}`,
|
||||
"{brand_uuid}",
|
||||
encodeURIComponent(String(requestParameters["brandUuid"])),
|
||||
);
|
||||
|
||||
@@ -2472,7 +2452,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/brands/{brand_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"brand_uuid"}}`,
|
||||
"{brand_uuid}",
|
||||
encodeURIComponent(String(requestParameters["brandUuid"])),
|
||||
);
|
||||
|
||||
@@ -2537,7 +2517,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/brands/{brand_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"brand_uuid"}}`,
|
||||
"{brand_uuid}",
|
||||
encodeURIComponent(String(requestParameters["brandUuid"])),
|
||||
);
|
||||
|
||||
@@ -2610,7 +2590,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/add_user/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -2737,7 +2717,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -2909,7 +2889,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -2983,7 +2963,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/remove_user/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -3063,7 +3043,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -3136,7 +3116,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -3201,7 +3181,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/groups/{group_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"group_uuid"}}`,
|
||||
"{group_uuid}",
|
||||
encodeURIComponent(String(requestParameters["groupUuid"])),
|
||||
);
|
||||
|
||||
@@ -3328,7 +3308,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3492,7 +3472,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3557,7 +3537,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3630,7 +3610,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/set_key/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3703,7 +3683,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3768,7 +3748,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3832,7 +3812,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/core/tokens/{identifier}/view_key/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"identifier"}}`,
|
||||
"{identifier}",
|
||||
encodeURIComponent(String(requestParameters["identifier"])),
|
||||
);
|
||||
|
||||
@@ -3966,7 +3946,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/user_consent/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4105,7 +4085,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/user_consent/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4166,7 +4146,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/user_consent/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4350,7 +4330,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4590,7 +4570,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/impersonate/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -4939,7 +4919,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5060,7 +5040,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/recovery/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5131,7 +5111,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/recovery_email/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5193,7 +5173,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5332,7 +5312,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/set_password/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5402,7 +5382,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/set_password_hash/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5473,7 +5453,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -5535,7 +5515,7 @@ export class CoreApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/core/users/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
Generated
+22
-21
@@ -12,25 +12,26 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
CertificateData,
|
||||
CertificateGenerationRequest,
|
||||
CertificateKeyPair,
|
||||
CertificateKeyPairRequest,
|
||||
KeyTypeEnum,
|
||||
PaginatedCertificateKeyPairList,
|
||||
PatchedCertificateKeyPairRequest,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type CertificateData, CertificateDataFromJSON } from "../models/CertificateData";
|
||||
import {
|
||||
CertificateDataFromJSON,
|
||||
type CertificateGenerationRequest,
|
||||
CertificateGenerationRequestToJSON,
|
||||
CertificateKeyPairFromJSON,
|
||||
} from "../models/CertificateGenerationRequest";
|
||||
import { type CertificateKeyPair, CertificateKeyPairFromJSON } from "../models/CertificateKeyPair";
|
||||
import {
|
||||
type CertificateKeyPairRequest,
|
||||
CertificateKeyPairRequestToJSON,
|
||||
} from "../models/CertificateKeyPairRequest";
|
||||
import { type KeyTypeEnum } from "../models/KeyTypeEnum";
|
||||
import {
|
||||
type PaginatedCertificateKeyPairList,
|
||||
PaginatedCertificateKeyPairListFromJSON,
|
||||
} from "../models/PaginatedCertificateKeyPairList";
|
||||
import {
|
||||
type PatchedCertificateKeyPairRequest,
|
||||
PatchedCertificateKeyPairRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedCertificateKeyPairRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface CryptoCertificatekeypairsCreateRequest {
|
||||
@@ -185,7 +186,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
@@ -413,7 +414,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
@@ -486,7 +487,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
@@ -565,7 +566,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
@@ -636,7 +637,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
@@ -708,7 +709,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/view_certificate/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
@@ -784,7 +785,7 @@ export class CryptoApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/crypto/certificatekeypairs/{kp_uuid}/view_private_key/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"kp_uuid"}}`,
|
||||
"{kp_uuid}",
|
||||
encodeURIComponent(String(requestParameters["kpUuid"])),
|
||||
);
|
||||
|
||||
|
||||
+158
-131
@@ -12,110 +12,152 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
AgentAuthenticationResponse,
|
||||
AgentConfig,
|
||||
AgentConnector,
|
||||
AgentConnectorRequest,
|
||||
AgentPSSODeviceRegistrationRequest,
|
||||
AgentPSSODeviceRegistrationResponse,
|
||||
AgentPSSOUserRegistrationRequest,
|
||||
AgentTokenResponse,
|
||||
AppleIndependentSecureEnclave,
|
||||
AppleIndependentSecureEnclaveRequest,
|
||||
Connector,
|
||||
DeviceAccessGroup,
|
||||
DeviceAccessGroupRequest,
|
||||
DeviceFactsRequest,
|
||||
DeviceSummary,
|
||||
DeviceUserBinding,
|
||||
DeviceUserBindingRequest,
|
||||
EndpointDevice,
|
||||
EndpointDeviceDetails,
|
||||
EndpointDeviceRequest,
|
||||
EnrollmentToken,
|
||||
EnrollmentTokenRequest,
|
||||
EnrollRequest,
|
||||
FleetConnector,
|
||||
FleetConnectorRequest,
|
||||
GoogleChromeConnector,
|
||||
GoogleChromeConnectorRequest,
|
||||
MDMConfigRequest,
|
||||
MDMConfigResponse,
|
||||
PaginatedAgentConnectorList,
|
||||
PaginatedAppleIndependentSecureEnclaveList,
|
||||
PaginatedConnectorList,
|
||||
PaginatedDeviceAccessGroupList,
|
||||
PaginatedDeviceUserBindingList,
|
||||
PaginatedEndpointDeviceList,
|
||||
PaginatedEnrollmentTokenList,
|
||||
PaginatedFleetConnectorList,
|
||||
PaginatedGoogleChromeConnectorList,
|
||||
PatchedAgentConnectorRequest,
|
||||
PatchedAppleIndependentSecureEnclaveRequest,
|
||||
PatchedDeviceAccessGroupRequest,
|
||||
PatchedDeviceUserBindingRequest,
|
||||
PatchedEndpointDeviceRequest,
|
||||
PatchedEnrollmentTokenRequest,
|
||||
PatchedFleetConnectorRequest,
|
||||
PatchedGoogleChromeConnectorRequest,
|
||||
TokenView,
|
||||
TypeCreate,
|
||||
UsedBy,
|
||||
UserSelf,
|
||||
} from "../models/index";
|
||||
import {
|
||||
type AgentAuthenticationResponse,
|
||||
AgentAuthenticationResponseFromJSON,
|
||||
AgentConfigFromJSON,
|
||||
AgentConnectorFromJSON,
|
||||
} from "../models/AgentAuthenticationResponse";
|
||||
import { type AgentConfig, AgentConfigFromJSON } from "../models/AgentConfig";
|
||||
import { type AgentConnector, AgentConnectorFromJSON } from "../models/AgentConnector";
|
||||
import {
|
||||
type AgentConnectorRequest,
|
||||
AgentConnectorRequestToJSON,
|
||||
} from "../models/AgentConnectorRequest";
|
||||
import {
|
||||
type AgentPSSODeviceRegistrationRequest,
|
||||
AgentPSSODeviceRegistrationRequestToJSON,
|
||||
} from "../models/AgentPSSODeviceRegistrationRequest";
|
||||
import {
|
||||
type AgentPSSODeviceRegistrationResponse,
|
||||
AgentPSSODeviceRegistrationResponseFromJSON,
|
||||
} from "../models/AgentPSSODeviceRegistrationResponse";
|
||||
import {
|
||||
type AgentPSSOUserRegistrationRequest,
|
||||
AgentPSSOUserRegistrationRequestToJSON,
|
||||
AgentTokenResponseFromJSON,
|
||||
} from "../models/AgentPSSOUserRegistrationRequest";
|
||||
import { type AgentTokenResponse, AgentTokenResponseFromJSON } from "../models/AgentTokenResponse";
|
||||
import {
|
||||
type AppleIndependentSecureEnclave,
|
||||
AppleIndependentSecureEnclaveFromJSON,
|
||||
} from "../models/AppleIndependentSecureEnclave";
|
||||
import {
|
||||
type AppleIndependentSecureEnclaveRequest,
|
||||
AppleIndependentSecureEnclaveRequestToJSON,
|
||||
ConnectorFromJSON,
|
||||
DeviceAccessGroupFromJSON,
|
||||
} from "../models/AppleIndependentSecureEnclaveRequest";
|
||||
import { type Connector, ConnectorFromJSON } from "../models/Connector";
|
||||
import { type DeviceAccessGroup, DeviceAccessGroupFromJSON } from "../models/DeviceAccessGroup";
|
||||
import {
|
||||
type DeviceAccessGroupRequest,
|
||||
DeviceAccessGroupRequestToJSON,
|
||||
DeviceFactsRequestToJSON,
|
||||
DeviceSummaryFromJSON,
|
||||
DeviceUserBindingFromJSON,
|
||||
} from "../models/DeviceAccessGroupRequest";
|
||||
import { type DeviceFactsRequest, DeviceFactsRequestToJSON } from "../models/DeviceFactsRequest";
|
||||
import { type DeviceSummary, DeviceSummaryFromJSON } from "../models/DeviceSummary";
|
||||
import { type DeviceUserBinding, DeviceUserBindingFromJSON } from "../models/DeviceUserBinding";
|
||||
import {
|
||||
type DeviceUserBindingRequest,
|
||||
DeviceUserBindingRequestToJSON,
|
||||
} from "../models/DeviceUserBindingRequest";
|
||||
import { type EndpointDevice, EndpointDeviceFromJSON } from "../models/EndpointDevice";
|
||||
import {
|
||||
type EndpointDeviceDetails,
|
||||
EndpointDeviceDetailsFromJSON,
|
||||
EndpointDeviceFromJSON,
|
||||
} from "../models/EndpointDeviceDetails";
|
||||
import {
|
||||
type EndpointDeviceRequest,
|
||||
EndpointDeviceRequestToJSON,
|
||||
EnrollmentTokenFromJSON,
|
||||
} from "../models/EndpointDeviceRequest";
|
||||
import { type EnrollmentToken, EnrollmentTokenFromJSON } from "../models/EnrollmentToken";
|
||||
import {
|
||||
type EnrollmentTokenRequest,
|
||||
EnrollmentTokenRequestToJSON,
|
||||
EnrollRequestToJSON,
|
||||
FleetConnectorFromJSON,
|
||||
} from "../models/EnrollmentTokenRequest";
|
||||
import { type EnrollRequest, EnrollRequestToJSON } from "../models/EnrollRequest";
|
||||
import { type FleetConnector, FleetConnectorFromJSON } from "../models/FleetConnector";
|
||||
import {
|
||||
type FleetConnectorRequest,
|
||||
FleetConnectorRequestToJSON,
|
||||
} from "../models/FleetConnectorRequest";
|
||||
import {
|
||||
type GoogleChromeConnector,
|
||||
GoogleChromeConnectorFromJSON,
|
||||
} from "../models/GoogleChromeConnector";
|
||||
import {
|
||||
type GoogleChromeConnectorRequest,
|
||||
GoogleChromeConnectorRequestToJSON,
|
||||
MDMConfigRequestToJSON,
|
||||
MDMConfigResponseFromJSON,
|
||||
} from "../models/GoogleChromeConnectorRequest";
|
||||
import { type MDMConfigRequest, MDMConfigRequestToJSON } from "../models/MDMConfigRequest";
|
||||
import { type MDMConfigResponse, MDMConfigResponseFromJSON } from "../models/MDMConfigResponse";
|
||||
import {
|
||||
type PaginatedAgentConnectorList,
|
||||
PaginatedAgentConnectorListFromJSON,
|
||||
} from "../models/PaginatedAgentConnectorList";
|
||||
import {
|
||||
type PaginatedAppleIndependentSecureEnclaveList,
|
||||
PaginatedAppleIndependentSecureEnclaveListFromJSON,
|
||||
} from "../models/PaginatedAppleIndependentSecureEnclaveList";
|
||||
import {
|
||||
type PaginatedConnectorList,
|
||||
PaginatedConnectorListFromJSON,
|
||||
} from "../models/PaginatedConnectorList";
|
||||
import {
|
||||
type PaginatedDeviceAccessGroupList,
|
||||
PaginatedDeviceAccessGroupListFromJSON,
|
||||
} from "../models/PaginatedDeviceAccessGroupList";
|
||||
import {
|
||||
type PaginatedDeviceUserBindingList,
|
||||
PaginatedDeviceUserBindingListFromJSON,
|
||||
} from "../models/PaginatedDeviceUserBindingList";
|
||||
import {
|
||||
type PaginatedEndpointDeviceList,
|
||||
PaginatedEndpointDeviceListFromJSON,
|
||||
} from "../models/PaginatedEndpointDeviceList";
|
||||
import {
|
||||
type PaginatedEnrollmentTokenList,
|
||||
PaginatedEnrollmentTokenListFromJSON,
|
||||
} from "../models/PaginatedEnrollmentTokenList";
|
||||
import {
|
||||
type PaginatedFleetConnectorList,
|
||||
PaginatedFleetConnectorListFromJSON,
|
||||
} from "../models/PaginatedFleetConnectorList";
|
||||
import {
|
||||
type PaginatedGoogleChromeConnectorList,
|
||||
PaginatedGoogleChromeConnectorListFromJSON,
|
||||
} from "../models/PaginatedGoogleChromeConnectorList";
|
||||
import {
|
||||
type PatchedAgentConnectorRequest,
|
||||
PatchedAgentConnectorRequestToJSON,
|
||||
} from "../models/PatchedAgentConnectorRequest";
|
||||
import {
|
||||
type PatchedAppleIndependentSecureEnclaveRequest,
|
||||
PatchedAppleIndependentSecureEnclaveRequestToJSON,
|
||||
} from "../models/PatchedAppleIndependentSecureEnclaveRequest";
|
||||
import {
|
||||
type PatchedDeviceAccessGroupRequest,
|
||||
PatchedDeviceAccessGroupRequestToJSON,
|
||||
} from "../models/PatchedDeviceAccessGroupRequest";
|
||||
import {
|
||||
type PatchedDeviceUserBindingRequest,
|
||||
PatchedDeviceUserBindingRequestToJSON,
|
||||
} from "../models/PatchedDeviceUserBindingRequest";
|
||||
import {
|
||||
type PatchedEndpointDeviceRequest,
|
||||
PatchedEndpointDeviceRequestToJSON,
|
||||
} from "../models/PatchedEndpointDeviceRequest";
|
||||
import {
|
||||
type PatchedEnrollmentTokenRequest,
|
||||
PatchedEnrollmentTokenRequestToJSON,
|
||||
} from "../models/PatchedEnrollmentTokenRequest";
|
||||
import {
|
||||
type PatchedFleetConnectorRequest,
|
||||
PatchedFleetConnectorRequestToJSON,
|
||||
} from "../models/PatchedFleetConnectorRequest";
|
||||
import {
|
||||
type PatchedGoogleChromeConnectorRequest,
|
||||
PatchedGoogleChromeConnectorRequestToJSON,
|
||||
TokenViewFromJSON,
|
||||
TypeCreateFromJSON,
|
||||
UsedByFromJSON,
|
||||
UserSelfFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedGoogleChromeConnectorRequest";
|
||||
import { type TokenView, TokenViewFromJSON } from "../models/TokenView";
|
||||
import { type TypeCreate, TypeCreateFromJSON } from "../models/TypeCreate";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import { type UserSelf, UserSelfFromJSON } from "../models/UserSelf";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface EndpointsAgentsConnectorsAuthFedCreateRequest {
|
||||
@@ -736,7 +778,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -952,7 +994,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/connectors/{connector_uuid}/mdm_config/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -1025,7 +1067,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -1098,7 +1140,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -1177,7 +1219,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -1248,7 +1290,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/connectors/{connector_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -1385,7 +1427,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/enrollment_tokens/{token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"token_uuid"}}`,
|
||||
"{token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -1534,7 +1576,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/enrollment_tokens/{token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"token_uuid"}}`,
|
||||
"{token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -1607,7 +1649,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/enrollment_tokens/{token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"token_uuid"}}`,
|
||||
"{token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -1686,7 +1728,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/enrollment_tokens/{token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"token_uuid"}}`,
|
||||
"{token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -1757,7 +1799,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/enrollment_tokens/{token_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"token_uuid"}}`,
|
||||
"{token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -1825,7 +1867,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/agents/enrollment_tokens/{token_uuid}/view_key/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"token_uuid"}}`,
|
||||
"{token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -1963,10 +2005,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/endpoints/agents/psso/ise/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2108,10 +2147,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/endpoints/agents/psso/ise/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2181,10 +2217,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/endpoints/agents/psso/ise/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2260,10 +2293,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/endpoints/agents/psso/ise/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2333,10 +2363,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/endpoints/agents/psso/ise/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2520,7 +2547,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -2654,7 +2681,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -2772,7 +2799,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/connectors/{connector_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -2909,7 +2936,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_access_groups/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3058,7 +3085,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_access_groups/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3131,7 +3158,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_access_groups/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3210,7 +3237,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_access_groups/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3281,7 +3308,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_access_groups/{pbm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3418,7 +3445,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -3586,7 +3613,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -3659,7 +3686,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -3738,7 +3765,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -3809,7 +3836,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/device_bindings/{policy_binding_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -3877,7 +3904,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/devices/{device_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"device_uuid"}}`,
|
||||
"{device_uuid}",
|
||||
encodeURIComponent(String(requestParameters["deviceUuid"])),
|
||||
);
|
||||
|
||||
@@ -4021,7 +4048,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/devices/{device_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"device_uuid"}}`,
|
||||
"{device_uuid}",
|
||||
encodeURIComponent(String(requestParameters["deviceUuid"])),
|
||||
);
|
||||
|
||||
@@ -4094,7 +4121,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/devices/{device_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"device_uuid"}}`,
|
||||
"{device_uuid}",
|
||||
encodeURIComponent(String(requestParameters["deviceUuid"])),
|
||||
);
|
||||
|
||||
@@ -4220,7 +4247,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/devices/{device_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"device_uuid"}}`,
|
||||
"{device_uuid}",
|
||||
encodeURIComponent(String(requestParameters["deviceUuid"])),
|
||||
);
|
||||
|
||||
@@ -4287,7 +4314,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/devices/{device_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"device_uuid"}}`,
|
||||
"{device_uuid}",
|
||||
encodeURIComponent(String(requestParameters["deviceUuid"])),
|
||||
);
|
||||
|
||||
@@ -4420,7 +4447,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/fleet/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -4565,7 +4592,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/fleet/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -4638,7 +4665,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/fleet/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -4717,7 +4744,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/fleet/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -4788,7 +4815,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/fleet/connectors/{connector_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -4927,7 +4954,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/google_chrome/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -5072,7 +5099,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/google_chrome/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -5145,7 +5172,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/google_chrome/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -5224,7 +5251,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/google_chrome/connectors/{connector_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
@@ -5297,7 +5324,7 @@ export class EndpointsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/endpoints/google_chrome/connectors/{connector_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connector_uuid"}}`,
|
||||
"{connector_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectorUuid"])),
|
||||
);
|
||||
|
||||
|
||||
+16
-22
@@ -12,26 +12,20 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
InstallID,
|
||||
License,
|
||||
LicenseForecast,
|
||||
LicenseRequest,
|
||||
LicenseSummary,
|
||||
PaginatedLicenseList,
|
||||
PatchedLicenseRequest,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type InstallID, InstallIDFromJSON } from "../models/InstallID";
|
||||
import { type License, LicenseFromJSON } from "../models/License";
|
||||
import { type LicenseForecast, LicenseForecastFromJSON } from "../models/LicenseForecast";
|
||||
import { type LicenseRequest, LicenseRequestToJSON } from "../models/LicenseRequest";
|
||||
import { type LicenseSummary, LicenseSummaryFromJSON } from "../models/LicenseSummary";
|
||||
import {
|
||||
InstallIDFromJSON,
|
||||
LicenseForecastFromJSON,
|
||||
LicenseFromJSON,
|
||||
LicenseRequestToJSON,
|
||||
LicenseSummaryFromJSON,
|
||||
type PaginatedLicenseList,
|
||||
PaginatedLicenseListFromJSON,
|
||||
} from "../models/PaginatedLicenseList";
|
||||
import {
|
||||
type PatchedLicenseRequest,
|
||||
PatchedLicenseRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedLicenseRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface EnterpriseLicenseCreateRequest {
|
||||
@@ -167,7 +161,7 @@ export class EnterpriseApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/enterprise/license/{license_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"license_uuid"}}`,
|
||||
"{license_uuid}",
|
||||
encodeURIComponent(String(requestParameters["licenseUuid"])),
|
||||
);
|
||||
|
||||
@@ -407,7 +401,7 @@ export class EnterpriseApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/enterprise/license/{license_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"license_uuid"}}`,
|
||||
"{license_uuid}",
|
||||
encodeURIComponent(String(requestParameters["licenseUuid"])),
|
||||
);
|
||||
|
||||
@@ -476,7 +470,7 @@ export class EnterpriseApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/enterprise/license/{license_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"license_uuid"}}`,
|
||||
"{license_uuid}",
|
||||
encodeURIComponent(String(requestParameters["licenseUuid"])),
|
||||
);
|
||||
|
||||
@@ -612,7 +606,7 @@ export class EnterpriseApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/enterprise/license/{license_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"license_uuid"}}`,
|
||||
"{license_uuid}",
|
||||
encodeURIComponent(String(requestParameters["licenseUuid"])),
|
||||
);
|
||||
|
||||
@@ -677,7 +671,7 @@ export class EnterpriseApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/enterprise/license/{license_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"license_uuid"}}`,
|
||||
"{license_uuid}",
|
||||
encodeURIComponent(String(requestParameters["licenseUuid"])),
|
||||
);
|
||||
|
||||
|
||||
Generated
+65
-95
@@ -12,59 +12,62 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
DataExport,
|
||||
Event,
|
||||
EventActions,
|
||||
EventRequest,
|
||||
EventStats,
|
||||
EventTopPerUser,
|
||||
EventVolume,
|
||||
Notification,
|
||||
NotificationRequest,
|
||||
NotificationRule,
|
||||
NotificationRuleRequest,
|
||||
NotificationTransport,
|
||||
NotificationTransportRequest,
|
||||
NotificationTransportTest,
|
||||
PaginatedEventList,
|
||||
PaginatedNotificationList,
|
||||
PaginatedNotificationRuleList,
|
||||
PaginatedNotificationTransportList,
|
||||
PatchedEventRequest,
|
||||
PatchedNotificationRequest,
|
||||
PatchedNotificationRuleRequest,
|
||||
PatchedNotificationTransportRequest,
|
||||
SeverityEnum,
|
||||
TransportModeEnum,
|
||||
TypeCreate,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type DataExport, DataExportFromJSON } from "../models/DataExport";
|
||||
import { type Event, EventFromJSON } from "../models/Event";
|
||||
import { type EventActions } from "../models/EventActions";
|
||||
import { type EventRequest, EventRequestToJSON } from "../models/EventRequest";
|
||||
import { type EventStats, EventStatsFromJSON } from "../models/EventStats";
|
||||
import { type EventTopPerUser, EventTopPerUserFromJSON } from "../models/EventTopPerUser";
|
||||
import { type EventVolume, EventVolumeFromJSON } from "../models/EventVolume";
|
||||
import { type Notification, NotificationFromJSON } from "../models/Notification";
|
||||
import { type NotificationRequest, NotificationRequestToJSON } from "../models/NotificationRequest";
|
||||
import { type NotificationRule, NotificationRuleFromJSON } from "../models/NotificationRule";
|
||||
import {
|
||||
DataExportFromJSON,
|
||||
EventFromJSON,
|
||||
EventRequestToJSON,
|
||||
EventStatsFromJSON,
|
||||
EventTopPerUserFromJSON,
|
||||
EventVolumeFromJSON,
|
||||
NotificationFromJSON,
|
||||
NotificationRequestToJSON,
|
||||
NotificationRuleFromJSON,
|
||||
type NotificationRuleRequest,
|
||||
NotificationRuleRequestToJSON,
|
||||
} from "../models/NotificationRuleRequest";
|
||||
import {
|
||||
type NotificationTransport,
|
||||
NotificationTransportFromJSON,
|
||||
} from "../models/NotificationTransport";
|
||||
import {
|
||||
type NotificationTransportRequest,
|
||||
NotificationTransportRequestToJSON,
|
||||
} from "../models/NotificationTransportRequest";
|
||||
import {
|
||||
type NotificationTransportTest,
|
||||
NotificationTransportTestFromJSON,
|
||||
PaginatedEventListFromJSON,
|
||||
} from "../models/NotificationTransportTest";
|
||||
import { type PaginatedEventList, PaginatedEventListFromJSON } from "../models/PaginatedEventList";
|
||||
import {
|
||||
type PaginatedNotificationList,
|
||||
PaginatedNotificationListFromJSON,
|
||||
} from "../models/PaginatedNotificationList";
|
||||
import {
|
||||
type PaginatedNotificationRuleList,
|
||||
PaginatedNotificationRuleListFromJSON,
|
||||
} from "../models/PaginatedNotificationRuleList";
|
||||
import {
|
||||
type PaginatedNotificationTransportList,
|
||||
PaginatedNotificationTransportListFromJSON,
|
||||
PatchedEventRequestToJSON,
|
||||
} from "../models/PaginatedNotificationTransportList";
|
||||
import { type PatchedEventRequest, PatchedEventRequestToJSON } from "../models/PatchedEventRequest";
|
||||
import {
|
||||
type PatchedNotificationRequest,
|
||||
PatchedNotificationRequestToJSON,
|
||||
} from "../models/PatchedNotificationRequest";
|
||||
import {
|
||||
type PatchedNotificationRuleRequest,
|
||||
PatchedNotificationRuleRequestToJSON,
|
||||
} from "../models/PatchedNotificationRuleRequest";
|
||||
import {
|
||||
type PatchedNotificationTransportRequest,
|
||||
PatchedNotificationTransportRequestToJSON,
|
||||
TypeCreateFromJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedNotificationTransportRequest";
|
||||
import { type SeverityEnum } from "../models/SeverityEnum";
|
||||
import { type TransportModeEnum } from "../models/TransportModeEnum";
|
||||
import { type TypeCreate, TypeCreateFromJSON } from "../models/TypeCreate";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface EventsEventsCreateRequest {
|
||||
@@ -416,7 +419,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/events/{event_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"event_uuid"}}`,
|
||||
"{event_uuid}",
|
||||
encodeURIComponent(String(requestParameters["eventUuid"])),
|
||||
);
|
||||
|
||||
@@ -693,7 +696,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/events/{event_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"event_uuid"}}`,
|
||||
"{event_uuid}",
|
||||
encodeURIComponent(String(requestParameters["eventUuid"])),
|
||||
);
|
||||
|
||||
@@ -758,7 +761,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/events/{event_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"event_uuid"}}`,
|
||||
"{event_uuid}",
|
||||
encodeURIComponent(String(requestParameters["eventUuid"])),
|
||||
);
|
||||
|
||||
@@ -1006,7 +1009,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/events/{event_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"event_uuid"}}`,
|
||||
"{event_uuid}",
|
||||
encodeURIComponent(String(requestParameters["eventUuid"])),
|
||||
);
|
||||
|
||||
@@ -1177,10 +1180,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/notifications/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1385,10 +1385,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/notifications/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1456,10 +1453,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/notifications/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1527,10 +1521,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/notifications/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1594,10 +1585,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/notifications/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1728,7 +1716,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/rules/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1876,7 +1864,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/rules/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1945,7 +1933,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/rules/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2020,7 +2008,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/rules/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2087,7 +2075,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/events/rules/{pbm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2217,10 +2205,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/transports/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2369,10 +2354,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/transports/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2442,10 +2424,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/transports/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2508,10 +2487,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/transports/{uuid}/test/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2583,10 +2559,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/transports/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2652,10 +2625,7 @@ export class EventsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/events/transports/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
Generated
+42
-73
@@ -12,44 +12,37 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
Cache,
|
||||
ChallengeTypes,
|
||||
DeniedActionEnum,
|
||||
Flow,
|
||||
FlowChallengeResponseRequest,
|
||||
FlowDesignationEnum,
|
||||
FlowDiagram,
|
||||
FlowInspection,
|
||||
FlowRequest,
|
||||
FlowStageBinding,
|
||||
FlowStageBindingRequest,
|
||||
InvalidResponseActionEnum,
|
||||
Link,
|
||||
PaginatedFlowList,
|
||||
PaginatedFlowStageBindingList,
|
||||
PatchedFlowRequest,
|
||||
PatchedFlowStageBindingRequest,
|
||||
PolicyEngineMode,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type Cache, CacheFromJSON } from "../models/Cache";
|
||||
import { type ChallengeTypes, ChallengeTypesFromJSON } from "../models/ChallengeTypes";
|
||||
import { type DeniedActionEnum } from "../models/DeniedActionEnum";
|
||||
import { type Flow, FlowFromJSON } from "../models/Flow";
|
||||
import {
|
||||
CacheFromJSON,
|
||||
ChallengeTypesFromJSON,
|
||||
type FlowChallengeResponseRequest,
|
||||
FlowChallengeResponseRequestToJSON,
|
||||
FlowDiagramFromJSON,
|
||||
FlowFromJSON,
|
||||
FlowInspectionFromJSON,
|
||||
FlowRequestToJSON,
|
||||
FlowStageBindingFromJSON,
|
||||
} from "../models/FlowChallengeResponseRequest";
|
||||
import { type FlowDesignationEnum } from "../models/FlowDesignationEnum";
|
||||
import { type FlowDiagram, FlowDiagramFromJSON } from "../models/FlowDiagram";
|
||||
import { type FlowInspection, FlowInspectionFromJSON } from "../models/FlowInspection";
|
||||
import { type FlowRequest, FlowRequestToJSON } from "../models/FlowRequest";
|
||||
import { type FlowStageBinding, FlowStageBindingFromJSON } from "../models/FlowStageBinding";
|
||||
import {
|
||||
type FlowStageBindingRequest,
|
||||
FlowStageBindingRequestToJSON,
|
||||
LinkFromJSON,
|
||||
PaginatedFlowListFromJSON,
|
||||
} from "../models/FlowStageBindingRequest";
|
||||
import { type InvalidResponseActionEnum } from "../models/InvalidResponseActionEnum";
|
||||
import { type Link, LinkFromJSON } from "../models/Link";
|
||||
import { type PaginatedFlowList, PaginatedFlowListFromJSON } from "../models/PaginatedFlowList";
|
||||
import {
|
||||
type PaginatedFlowStageBindingList,
|
||||
PaginatedFlowStageBindingListFromJSON,
|
||||
PatchedFlowRequestToJSON,
|
||||
} from "../models/PaginatedFlowStageBindingList";
|
||||
import { type PatchedFlowRequest, PatchedFlowRequestToJSON } from "../models/PatchedFlowRequest";
|
||||
import {
|
||||
type PatchedFlowStageBindingRequest,
|
||||
PatchedFlowStageBindingRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedFlowStageBindingRequest";
|
||||
import { type PolicyEngineMode } from "../models/PolicyEngineMode";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface FlowsBindingsCreateRequest {
|
||||
@@ -257,7 +250,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/bindings/{fsb_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"fsb_uuid"}}`,
|
||||
"{fsb_uuid}",
|
||||
encodeURIComponent(String(requestParameters["fsbUuid"])),
|
||||
);
|
||||
|
||||
@@ -433,7 +426,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/bindings/{fsb_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"fsb_uuid"}}`,
|
||||
"{fsb_uuid}",
|
||||
encodeURIComponent(String(requestParameters["fsbUuid"])),
|
||||
);
|
||||
|
||||
@@ -502,7 +495,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/bindings/{fsb_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"fsb_uuid"}}`,
|
||||
"{fsb_uuid}",
|
||||
encodeURIComponent(String(requestParameters["fsbUuid"])),
|
||||
);
|
||||
|
||||
@@ -577,7 +570,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/bindings/{fsb_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"fsb_uuid"}}`,
|
||||
"{fsb_uuid}",
|
||||
encodeURIComponent(String(requestParameters["fsbUuid"])),
|
||||
);
|
||||
|
||||
@@ -644,7 +637,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/bindings/{fsb_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"fsb_uuid"}}`,
|
||||
"{fsb_uuid}",
|
||||
encodeURIComponent(String(requestParameters["fsbUuid"])),
|
||||
);
|
||||
|
||||
@@ -719,7 +712,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/executor/{flow_slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"flow_slug"}}`,
|
||||
"{flow_slug}",
|
||||
encodeURIComponent(String(requestParameters["flowSlug"])),
|
||||
);
|
||||
|
||||
@@ -798,7 +791,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/executor/{flow_slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"flow_slug"}}`,
|
||||
"{flow_slug}",
|
||||
encodeURIComponent(String(requestParameters["flowSlug"])),
|
||||
);
|
||||
|
||||
@@ -867,7 +860,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/flows/inspector/{flow_slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"flow_slug"}}`,
|
||||
"{flow_slug}",
|
||||
encodeURIComponent(String(requestParameters["flowSlug"])),
|
||||
);
|
||||
|
||||
@@ -1092,10 +1085,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1155,10 +1145,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/diagram/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1223,10 +1210,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/execute/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1291,10 +1275,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/export/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1452,10 +1433,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1520,10 +1498,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1593,10 +1568,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1658,10 +1630,7 @@ export class FlowsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/flows/instances/{slug}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"slug"}}`,
|
||||
encodeURIComponent(String(requestParameters["slug"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{slug}", encodeURIComponent(String(requestParameters["slug"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
+24
-22
@@ -12,28 +12,30 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
LifecycleIteration,
|
||||
LifecycleIterationRequest,
|
||||
LifecycleRule,
|
||||
LifecycleRuleRequest,
|
||||
PaginatedLifecycleIterationList,
|
||||
PaginatedLifecycleRuleList,
|
||||
PatchedLifecycleRuleRequest,
|
||||
Review,
|
||||
ReviewRequest,
|
||||
} from "../models/index";
|
||||
import { type LifecycleIteration, LifecycleIterationFromJSON } from "../models/LifecycleIteration";
|
||||
import {
|
||||
LifecycleIterationFromJSON,
|
||||
type LifecycleIterationRequest,
|
||||
LifecycleIterationRequestToJSON,
|
||||
LifecycleRuleFromJSON,
|
||||
} from "../models/LifecycleIterationRequest";
|
||||
import { type LifecycleRule, LifecycleRuleFromJSON } from "../models/LifecycleRule";
|
||||
import {
|
||||
type LifecycleRuleRequest,
|
||||
LifecycleRuleRequestToJSON,
|
||||
} from "../models/LifecycleRuleRequest";
|
||||
import {
|
||||
type PaginatedLifecycleIterationList,
|
||||
PaginatedLifecycleIterationListFromJSON,
|
||||
} from "../models/PaginatedLifecycleIterationList";
|
||||
import {
|
||||
type PaginatedLifecycleRuleList,
|
||||
PaginatedLifecycleRuleListFromJSON,
|
||||
} from "../models/PaginatedLifecycleRuleList";
|
||||
import {
|
||||
type PatchedLifecycleRuleRequest,
|
||||
PatchedLifecycleRuleRequestToJSON,
|
||||
ReviewFromJSON,
|
||||
ReviewRequestToJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedLifecycleRuleRequest";
|
||||
import { type Review, ReviewFromJSON } from "../models/Review";
|
||||
import { type ReviewRequest, ReviewRequestToJSON } from "../models/ReviewRequest";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface LifecycleIterationsCreateRequest {
|
||||
@@ -206,11 +208,11 @@ export class LifecycleApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/lifecycle/iterations/latest/{content_type}/{object_id}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"content_type"}}`,
|
||||
"{content_type}",
|
||||
encodeURIComponent(String(requestParameters["contentType"])),
|
||||
);
|
||||
urlPath = urlPath.replace(
|
||||
`{${"object_id"}}`,
|
||||
"{object_id}",
|
||||
encodeURIComponent(String(requestParameters["objectId"])),
|
||||
);
|
||||
|
||||
@@ -483,7 +485,7 @@ export class LifecycleApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/lifecycle/rules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -616,7 +618,7 @@ export class LifecycleApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/lifecycle/rules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -683,7 +685,7 @@ export class LifecycleApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/lifecycle/rules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -753,7 +755,7 @@ export class LifecycleApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/lifecycle/rules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
+20
-19
@@ -12,24 +12,25 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
BlueprintFile,
|
||||
BlueprintImportResult,
|
||||
BlueprintInstance,
|
||||
BlueprintInstanceRequest,
|
||||
PaginatedBlueprintInstanceList,
|
||||
PatchedBlueprintInstanceRequest,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type BlueprintFile, BlueprintFileFromJSON } from "../models/BlueprintFile";
|
||||
import {
|
||||
BlueprintFileFromJSON,
|
||||
type BlueprintImportResult,
|
||||
BlueprintImportResultFromJSON,
|
||||
BlueprintInstanceFromJSON,
|
||||
} from "../models/BlueprintImportResult";
|
||||
import { type BlueprintInstance, BlueprintInstanceFromJSON } from "../models/BlueprintInstance";
|
||||
import {
|
||||
type BlueprintInstanceRequest,
|
||||
BlueprintInstanceRequestToJSON,
|
||||
} from "../models/BlueprintInstanceRequest";
|
||||
import {
|
||||
type PaginatedBlueprintInstanceList,
|
||||
PaginatedBlueprintInstanceListFromJSON,
|
||||
} from "../models/PaginatedBlueprintInstanceList";
|
||||
import {
|
||||
type PatchedBlueprintInstanceRequest,
|
||||
PatchedBlueprintInstanceRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedBlueprintInstanceRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface ManagedBlueprintsApplyCreateRequest {
|
||||
@@ -109,7 +110,7 @@ export class ManagedApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/managed/blueprints/{instance_uuid}/apply/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"instance_uuid"}}`,
|
||||
"{instance_uuid}",
|
||||
encodeURIComponent(String(requestParameters["instanceUuid"])),
|
||||
);
|
||||
|
||||
@@ -295,7 +296,7 @@ export class ManagedApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/managed/blueprints/{instance_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"instance_uuid"}}`,
|
||||
"{instance_uuid}",
|
||||
encodeURIComponent(String(requestParameters["instanceUuid"])),
|
||||
);
|
||||
|
||||
@@ -524,7 +525,7 @@ export class ManagedApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/managed/blueprints/{instance_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"instance_uuid"}}`,
|
||||
"{instance_uuid}",
|
||||
encodeURIComponent(String(requestParameters["instanceUuid"])),
|
||||
);
|
||||
|
||||
@@ -597,7 +598,7 @@ export class ManagedApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/managed/blueprints/{instance_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"instance_uuid"}}`,
|
||||
"{instance_uuid}",
|
||||
encodeURIComponent(String(requestParameters["instanceUuid"])),
|
||||
);
|
||||
|
||||
@@ -672,7 +673,7 @@ export class ManagedApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/managed/blueprints/{instance_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"instance_uuid"}}`,
|
||||
"{instance_uuid}",
|
||||
encodeURIComponent(String(requestParameters["instanceUuid"])),
|
||||
);
|
||||
|
||||
@@ -739,7 +740,7 @@ export class ManagedApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/managed/blueprints/{instance_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"instance_uuid"}}`,
|
||||
"{instance_uuid}",
|
||||
encodeURIComponent(String(requestParameters["instanceUuid"])),
|
||||
);
|
||||
|
||||
|
||||
Generated
+19
-19
@@ -12,20 +12,20 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
ExpiringBaseGrantModel,
|
||||
PaginatedExpiringBaseGrantModelList,
|
||||
PaginatedTokenModelList,
|
||||
TokenModel,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import {
|
||||
type ExpiringBaseGrantModel,
|
||||
ExpiringBaseGrantModelFromJSON,
|
||||
} from "../models/ExpiringBaseGrantModel";
|
||||
import {
|
||||
type PaginatedExpiringBaseGrantModelList,
|
||||
PaginatedExpiringBaseGrantModelListFromJSON,
|
||||
} from "../models/PaginatedExpiringBaseGrantModelList";
|
||||
import {
|
||||
type PaginatedTokenModelList,
|
||||
PaginatedTokenModelListFromJSON,
|
||||
TokenModelFromJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PaginatedTokenModelList";
|
||||
import { type TokenModel, TokenModelFromJSON } from "../models/TokenModel";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface Oauth2AccessTokensDestroyRequest {
|
||||
@@ -122,7 +122,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/access_tokens/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -261,7 +261,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/access_tokens/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -322,7 +322,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/access_tokens/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -387,7 +387,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/authorization_codes/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -531,7 +531,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/authorization_codes/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -598,7 +598,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/authorization_codes/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -663,7 +663,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/refresh_tokens/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -802,7 +802,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/refresh_tokens/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -866,7 +866,7 @@ export class Oauth2Api extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/oauth2/refresh_tokens/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
+77
-117
@@ -12,58 +12,78 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
DockerServiceConnection,
|
||||
DockerServiceConnectionRequest,
|
||||
KubernetesServiceConnection,
|
||||
KubernetesServiceConnectionRequest,
|
||||
LDAPCheckAccess,
|
||||
Outpost,
|
||||
OutpostDefaultConfig,
|
||||
OutpostHealth,
|
||||
OutpostRequest,
|
||||
PaginatedDockerServiceConnectionList,
|
||||
PaginatedKubernetesServiceConnectionList,
|
||||
PaginatedLDAPOutpostConfigList,
|
||||
PaginatedOutpostList,
|
||||
PaginatedProxyOutpostConfigList,
|
||||
PaginatedRadiusOutpostConfigList,
|
||||
PaginatedServiceConnectionList,
|
||||
PatchedDockerServiceConnectionRequest,
|
||||
PatchedKubernetesServiceConnectionRequest,
|
||||
PatchedOutpostRequest,
|
||||
RadiusCheckAccess,
|
||||
ServiceConnection,
|
||||
ServiceConnectionState,
|
||||
TypeCreate,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import {
|
||||
type DockerServiceConnection,
|
||||
DockerServiceConnectionFromJSON,
|
||||
} from "../models/DockerServiceConnection";
|
||||
import {
|
||||
type DockerServiceConnectionRequest,
|
||||
DockerServiceConnectionRequestToJSON,
|
||||
} from "../models/DockerServiceConnectionRequest";
|
||||
import {
|
||||
type KubernetesServiceConnection,
|
||||
KubernetesServiceConnectionFromJSON,
|
||||
} from "../models/KubernetesServiceConnection";
|
||||
import {
|
||||
type KubernetesServiceConnectionRequest,
|
||||
KubernetesServiceConnectionRequestToJSON,
|
||||
LDAPCheckAccessFromJSON,
|
||||
} from "../models/KubernetesServiceConnectionRequest";
|
||||
import { type LDAPCheckAccess, LDAPCheckAccessFromJSON } from "../models/LDAPCheckAccess";
|
||||
import { type Outpost, OutpostFromJSON } from "../models/Outpost";
|
||||
import {
|
||||
type OutpostDefaultConfig,
|
||||
OutpostDefaultConfigFromJSON,
|
||||
OutpostFromJSON,
|
||||
OutpostHealthFromJSON,
|
||||
OutpostRequestToJSON,
|
||||
} from "../models/OutpostDefaultConfig";
|
||||
import { type OutpostHealth, OutpostHealthFromJSON } from "../models/OutpostHealth";
|
||||
import { type OutpostRequest, OutpostRequestToJSON } from "../models/OutpostRequest";
|
||||
import {
|
||||
type PaginatedDockerServiceConnectionList,
|
||||
PaginatedDockerServiceConnectionListFromJSON,
|
||||
} from "../models/PaginatedDockerServiceConnectionList";
|
||||
import {
|
||||
type PaginatedKubernetesServiceConnectionList,
|
||||
PaginatedKubernetesServiceConnectionListFromJSON,
|
||||
} from "../models/PaginatedKubernetesServiceConnectionList";
|
||||
import {
|
||||
type PaginatedLDAPOutpostConfigList,
|
||||
PaginatedLDAPOutpostConfigListFromJSON,
|
||||
} from "../models/PaginatedLDAPOutpostConfigList";
|
||||
import {
|
||||
type PaginatedOutpostList,
|
||||
PaginatedOutpostListFromJSON,
|
||||
} from "../models/PaginatedOutpostList";
|
||||
import {
|
||||
type PaginatedProxyOutpostConfigList,
|
||||
PaginatedProxyOutpostConfigListFromJSON,
|
||||
} from "../models/PaginatedProxyOutpostConfigList";
|
||||
import {
|
||||
type PaginatedRadiusOutpostConfigList,
|
||||
PaginatedRadiusOutpostConfigListFromJSON,
|
||||
} from "../models/PaginatedRadiusOutpostConfigList";
|
||||
import {
|
||||
type PaginatedServiceConnectionList,
|
||||
PaginatedServiceConnectionListFromJSON,
|
||||
} from "../models/PaginatedServiceConnectionList";
|
||||
import {
|
||||
type PatchedDockerServiceConnectionRequest,
|
||||
PatchedDockerServiceConnectionRequestToJSON,
|
||||
} from "../models/PatchedDockerServiceConnectionRequest";
|
||||
import {
|
||||
type PatchedKubernetesServiceConnectionRequest,
|
||||
PatchedKubernetesServiceConnectionRequestToJSON,
|
||||
} from "../models/PatchedKubernetesServiceConnectionRequest";
|
||||
import {
|
||||
type PatchedOutpostRequest,
|
||||
PatchedOutpostRequestToJSON,
|
||||
RadiusCheckAccessFromJSON,
|
||||
ServiceConnectionFromJSON,
|
||||
} from "../models/PatchedOutpostRequest";
|
||||
import { type RadiusCheckAccess, RadiusCheckAccessFromJSON } from "../models/RadiusCheckAccess";
|
||||
import { type ServiceConnection, ServiceConnectionFromJSON } from "../models/ServiceConnection";
|
||||
import {
|
||||
type ServiceConnectionState,
|
||||
ServiceConnectionStateFromJSON,
|
||||
TypeCreateFromJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/ServiceConnectionState";
|
||||
import { type TypeCreate, TypeCreateFromJSON } from "../models/TypeCreate";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface OutpostsInstancesCreateRequest {
|
||||
@@ -397,10 +417,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/instances/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -502,10 +519,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/instances/{uuid}/health/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -678,10 +692,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/instances/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -747,10 +758,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/instances/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -820,10 +828,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/instances/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -885,10 +890,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/instances/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -956,7 +958,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/ldap/{id}/check_access/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1173,7 +1175,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/radius/{id}/check_access/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1311,10 +1313,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/all/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1454,10 +1453,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/all/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1524,10 +1520,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/all/{uuid}/state/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1645,10 +1638,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/all/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1784,10 +1774,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/docker/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1945,10 +1932,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/docker/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2018,10 +2002,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/docker/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2097,10 +2078,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/docker/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2170,10 +2148,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/docker/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2309,10 +2284,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/kubernetes/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2458,10 +2430,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/kubernetes/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2533,10 +2502,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/kubernetes/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2612,10 +2578,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/kubernetes/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -2685,10 +2648,7 @@ export class OutpostsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/outposts/service_connections/kubernetes/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
+156
-119
@@ -12,103 +12,140 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
Cache,
|
||||
DetailedCountry,
|
||||
DummyPolicy,
|
||||
DummyPolicyRequest,
|
||||
EventActions,
|
||||
EventMatcherPolicy,
|
||||
EventMatcherPolicyRequest,
|
||||
ExpressionPolicy,
|
||||
ExpressionPolicyRequest,
|
||||
GeoIPPolicy,
|
||||
GeoIPPolicyRequest,
|
||||
PaginatedDummyPolicyList,
|
||||
PaginatedEventMatcherPolicyList,
|
||||
PaginatedExpressionPolicyList,
|
||||
PaginatedGeoIPPolicyList,
|
||||
PaginatedPasswordExpiryPolicyList,
|
||||
PaginatedPasswordPolicyList,
|
||||
PaginatedPolicyBindingList,
|
||||
PaginatedPolicyList,
|
||||
PaginatedReputationList,
|
||||
PaginatedReputationPolicyList,
|
||||
PaginatedUniquePasswordPolicyList,
|
||||
PasswordExpiryPolicy,
|
||||
PasswordExpiryPolicyRequest,
|
||||
PasswordPolicy,
|
||||
PasswordPolicyRequest,
|
||||
PatchedDummyPolicyRequest,
|
||||
PatchedEventMatcherPolicyRequest,
|
||||
PatchedExpressionPolicyRequest,
|
||||
PatchedGeoIPPolicyRequest,
|
||||
PatchedPasswordExpiryPolicyRequest,
|
||||
PatchedPasswordPolicyRequest,
|
||||
PatchedPolicyBindingRequest,
|
||||
PatchedReputationPolicyRequest,
|
||||
PatchedUniquePasswordPolicyRequest,
|
||||
Policy,
|
||||
PolicyBinding,
|
||||
PolicyBindingRequest,
|
||||
PolicyTestRequest,
|
||||
PolicyTestResult,
|
||||
Reputation,
|
||||
ReputationPolicy,
|
||||
ReputationPolicyRequest,
|
||||
TypeCreate,
|
||||
UniquePasswordPolicy,
|
||||
UniquePasswordPolicyRequest,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type Cache, CacheFromJSON } from "../models/Cache";
|
||||
import { type DetailedCountry, DetailedCountryFromJSON } from "../models/DetailedCountry";
|
||||
import { type DummyPolicy, DummyPolicyFromJSON } from "../models/DummyPolicy";
|
||||
import { type DummyPolicyRequest, DummyPolicyRequestToJSON } from "../models/DummyPolicyRequest";
|
||||
import { type EventActions } from "../models/EventActions";
|
||||
import { type EventMatcherPolicy, EventMatcherPolicyFromJSON } from "../models/EventMatcherPolicy";
|
||||
import {
|
||||
CacheFromJSON,
|
||||
DetailedCountryFromJSON,
|
||||
DummyPolicyFromJSON,
|
||||
DummyPolicyRequestToJSON,
|
||||
EventMatcherPolicyFromJSON,
|
||||
type EventMatcherPolicyRequest,
|
||||
EventMatcherPolicyRequestToJSON,
|
||||
ExpressionPolicyFromJSON,
|
||||
} from "../models/EventMatcherPolicyRequest";
|
||||
import { type ExpressionPolicy, ExpressionPolicyFromJSON } from "../models/ExpressionPolicy";
|
||||
import {
|
||||
type ExpressionPolicyRequest,
|
||||
ExpressionPolicyRequestToJSON,
|
||||
GeoIPPolicyFromJSON,
|
||||
GeoIPPolicyRequestToJSON,
|
||||
} from "../models/ExpressionPolicyRequest";
|
||||
import { type GeoIPPolicy, GeoIPPolicyFromJSON } from "../models/GeoIPPolicy";
|
||||
import { type GeoIPPolicyRequest, GeoIPPolicyRequestToJSON } from "../models/GeoIPPolicyRequest";
|
||||
import {
|
||||
type PaginatedDummyPolicyList,
|
||||
PaginatedDummyPolicyListFromJSON,
|
||||
} from "../models/PaginatedDummyPolicyList";
|
||||
import {
|
||||
type PaginatedEventMatcherPolicyList,
|
||||
PaginatedEventMatcherPolicyListFromJSON,
|
||||
} from "../models/PaginatedEventMatcherPolicyList";
|
||||
import {
|
||||
type PaginatedExpressionPolicyList,
|
||||
PaginatedExpressionPolicyListFromJSON,
|
||||
} from "../models/PaginatedExpressionPolicyList";
|
||||
import {
|
||||
type PaginatedGeoIPPolicyList,
|
||||
PaginatedGeoIPPolicyListFromJSON,
|
||||
} from "../models/PaginatedGeoIPPolicyList";
|
||||
import {
|
||||
type PaginatedPasswordExpiryPolicyList,
|
||||
PaginatedPasswordExpiryPolicyListFromJSON,
|
||||
} from "../models/PaginatedPasswordExpiryPolicyList";
|
||||
import {
|
||||
type PaginatedPasswordPolicyList,
|
||||
PaginatedPasswordPolicyListFromJSON,
|
||||
} from "../models/PaginatedPasswordPolicyList";
|
||||
import {
|
||||
type PaginatedPolicyBindingList,
|
||||
PaginatedPolicyBindingListFromJSON,
|
||||
} from "../models/PaginatedPolicyBindingList";
|
||||
import {
|
||||
type PaginatedPolicyList,
|
||||
PaginatedPolicyListFromJSON,
|
||||
} from "../models/PaginatedPolicyList";
|
||||
import {
|
||||
type PaginatedReputationList,
|
||||
PaginatedReputationListFromJSON,
|
||||
} from "../models/PaginatedReputationList";
|
||||
import {
|
||||
type PaginatedReputationPolicyList,
|
||||
PaginatedReputationPolicyListFromJSON,
|
||||
} from "../models/PaginatedReputationPolicyList";
|
||||
import {
|
||||
type PaginatedUniquePasswordPolicyList,
|
||||
PaginatedUniquePasswordPolicyListFromJSON,
|
||||
} from "../models/PaginatedUniquePasswordPolicyList";
|
||||
import {
|
||||
type PasswordExpiryPolicy,
|
||||
PasswordExpiryPolicyFromJSON,
|
||||
} from "../models/PasswordExpiryPolicy";
|
||||
import {
|
||||
type PasswordExpiryPolicyRequest,
|
||||
PasswordExpiryPolicyRequestToJSON,
|
||||
PasswordPolicyFromJSON,
|
||||
} from "../models/PasswordExpiryPolicyRequest";
|
||||
import { type PasswordPolicy, PasswordPolicyFromJSON } from "../models/PasswordPolicy";
|
||||
import {
|
||||
type PasswordPolicyRequest,
|
||||
PasswordPolicyRequestToJSON,
|
||||
} from "../models/PasswordPolicyRequest";
|
||||
import {
|
||||
type PatchedDummyPolicyRequest,
|
||||
PatchedDummyPolicyRequestToJSON,
|
||||
} from "../models/PatchedDummyPolicyRequest";
|
||||
import {
|
||||
type PatchedEventMatcherPolicyRequest,
|
||||
PatchedEventMatcherPolicyRequestToJSON,
|
||||
} from "../models/PatchedEventMatcherPolicyRequest";
|
||||
import {
|
||||
type PatchedExpressionPolicyRequest,
|
||||
PatchedExpressionPolicyRequestToJSON,
|
||||
} from "../models/PatchedExpressionPolicyRequest";
|
||||
import {
|
||||
type PatchedGeoIPPolicyRequest,
|
||||
PatchedGeoIPPolicyRequestToJSON,
|
||||
} from "../models/PatchedGeoIPPolicyRequest";
|
||||
import {
|
||||
type PatchedPasswordExpiryPolicyRequest,
|
||||
PatchedPasswordExpiryPolicyRequestToJSON,
|
||||
} from "../models/PatchedPasswordExpiryPolicyRequest";
|
||||
import {
|
||||
type PatchedPasswordPolicyRequest,
|
||||
PatchedPasswordPolicyRequestToJSON,
|
||||
} from "../models/PatchedPasswordPolicyRequest";
|
||||
import {
|
||||
type PatchedPolicyBindingRequest,
|
||||
PatchedPolicyBindingRequestToJSON,
|
||||
} from "../models/PatchedPolicyBindingRequest";
|
||||
import {
|
||||
type PatchedReputationPolicyRequest,
|
||||
PatchedReputationPolicyRequestToJSON,
|
||||
} from "../models/PatchedReputationPolicyRequest";
|
||||
import {
|
||||
type PatchedUniquePasswordPolicyRequest,
|
||||
PatchedUniquePasswordPolicyRequestToJSON,
|
||||
PolicyBindingFromJSON,
|
||||
} from "../models/PatchedUniquePasswordPolicyRequest";
|
||||
import { type Policy, PolicyFromJSON } from "../models/Policy";
|
||||
import { type PolicyBinding, PolicyBindingFromJSON } from "../models/PolicyBinding";
|
||||
import {
|
||||
type PolicyBindingRequest,
|
||||
PolicyBindingRequestToJSON,
|
||||
PolicyFromJSON,
|
||||
PolicyTestRequestToJSON,
|
||||
PolicyTestResultFromJSON,
|
||||
ReputationFromJSON,
|
||||
ReputationPolicyFromJSON,
|
||||
} from "../models/PolicyBindingRequest";
|
||||
import { type PolicyTestRequest, PolicyTestRequestToJSON } from "../models/PolicyTestRequest";
|
||||
import { type PolicyTestResult, PolicyTestResultFromJSON } from "../models/PolicyTestResult";
|
||||
import { type Reputation, ReputationFromJSON } from "../models/Reputation";
|
||||
import { type ReputationPolicy, ReputationPolicyFromJSON } from "../models/ReputationPolicy";
|
||||
import {
|
||||
type ReputationPolicyRequest,
|
||||
ReputationPolicyRequestToJSON,
|
||||
TypeCreateFromJSON,
|
||||
} from "../models/ReputationPolicyRequest";
|
||||
import { type TypeCreate, TypeCreateFromJSON } from "../models/TypeCreate";
|
||||
import {
|
||||
type UniquePasswordPolicy,
|
||||
UniquePasswordPolicyFromJSON,
|
||||
} from "../models/UniquePasswordPolicy";
|
||||
import {
|
||||
type UniquePasswordPolicyRequest,
|
||||
UniquePasswordPolicyRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/UniquePasswordPolicyRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface PoliciesAllDestroyRequest {
|
||||
@@ -658,7 +695,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/all/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -800,7 +837,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/all/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -873,7 +910,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/all/{policy_uuid}/test/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -991,7 +1028,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/all/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -1120,7 +1157,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -1284,7 +1321,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -1357,7 +1394,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -1432,7 +1469,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/bindings/{policy_binding_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -1499,7 +1536,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/bindings/{policy_binding_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_binding_uuid"}}`,
|
||||
"{policy_binding_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyBindingUuid"])),
|
||||
);
|
||||
|
||||
@@ -1626,7 +1663,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/dummy/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -1796,7 +1833,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/dummy/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -1861,7 +1898,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/dummy/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -1934,7 +1971,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/dummy/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -1999,7 +2036,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/dummy/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2128,7 +2165,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/event_matcher/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2306,7 +2343,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/event_matcher/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2379,7 +2416,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/event_matcher/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2458,7 +2495,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/event_matcher/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2525,7 +2562,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/event_matcher/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2658,7 +2695,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/expression/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2820,7 +2857,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/expression/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2893,7 +2930,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/expression/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -2968,7 +3005,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/expression/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3035,7 +3072,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/expression/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3166,7 +3203,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/geoip/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3357,7 +3394,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/geoip/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3422,7 +3459,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/geoip/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3495,7 +3532,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/geoip/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3560,7 +3597,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/geoip/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3689,7 +3726,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3823,7 +3860,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password_expiry/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -3990,7 +4027,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password_expiry/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4063,7 +4100,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password_expiry/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4142,7 +4179,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password_expiry/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4215,7 +4252,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password_expiry/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4430,7 +4467,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4503,7 +4540,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4578,7 +4615,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4645,7 +4682,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/password/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4774,7 +4811,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -4944,7 +4981,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5017,7 +5054,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5083,7 +5120,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/scores/{reputation_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"reputation_uuid"}}`,
|
||||
"{reputation_uuid}",
|
||||
encodeURIComponent(String(requestParameters["reputationUuid"])),
|
||||
);
|
||||
|
||||
@@ -5240,7 +5277,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/scores/{reputation_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"reputation_uuid"}}`,
|
||||
"{reputation_uuid}",
|
||||
encodeURIComponent(String(requestParameters["reputationUuid"])),
|
||||
);
|
||||
|
||||
@@ -5308,7 +5345,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/scores/{reputation_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"reputation_uuid"}}`,
|
||||
"{reputation_uuid}",
|
||||
encodeURIComponent(String(requestParameters["reputationUuid"])),
|
||||
);
|
||||
|
||||
@@ -5385,7 +5422,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5452,7 +5489,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/reputation/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5591,7 +5628,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/unique_password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5759,7 +5796,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/unique_password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5832,7 +5869,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/unique_password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5911,7 +5948,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/unique_password/{policy_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
@@ -5984,7 +6021,7 @@ export class PoliciesApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/policies/unique_password/{policy_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"policy_uuid"}}`,
|
||||
"{policy_uuid}",
|
||||
encodeURIComponent(String(requestParameters["policyUuid"])),
|
||||
);
|
||||
|
||||
|
||||
+260
-156
@@ -12,142 +12,246 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
GoogleWorkspaceProviderMapping,
|
||||
GoogleWorkspaceProviderMappingRequest,
|
||||
KerberosSourcePropertyMapping,
|
||||
KerberosSourcePropertyMappingRequest,
|
||||
LDAPSourcePropertyMapping,
|
||||
LDAPSourcePropertyMappingRequest,
|
||||
MicrosoftEntraProviderMapping,
|
||||
MicrosoftEntraProviderMappingRequest,
|
||||
NotificationWebhookMapping,
|
||||
NotificationWebhookMappingRequest,
|
||||
OAuthSourcePropertyMapping,
|
||||
OAuthSourcePropertyMappingRequest,
|
||||
PaginatedGoogleWorkspaceProviderMappingList,
|
||||
PaginatedKerberosSourcePropertyMappingList,
|
||||
PaginatedLDAPSourcePropertyMappingList,
|
||||
PaginatedMicrosoftEntraProviderMappingList,
|
||||
PaginatedNotificationWebhookMappingList,
|
||||
PaginatedOAuthSourcePropertyMappingList,
|
||||
PaginatedPlexSourcePropertyMappingList,
|
||||
PaginatedPropertyMappingList,
|
||||
PaginatedRACPropertyMappingList,
|
||||
PaginatedRadiusProviderPropertyMappingList,
|
||||
PaginatedSAMLPropertyMappingList,
|
||||
PaginatedSAMLSourcePropertyMappingList,
|
||||
PaginatedSCIMMappingList,
|
||||
PaginatedSCIMSourcePropertyMappingList,
|
||||
PaginatedScopeMappingList,
|
||||
PaginatedTelegramSourcePropertyMappingList,
|
||||
PatchedGoogleWorkspaceProviderMappingRequest,
|
||||
PatchedKerberosSourcePropertyMappingRequest,
|
||||
PatchedLDAPSourcePropertyMappingRequest,
|
||||
PatchedMicrosoftEntraProviderMappingRequest,
|
||||
PatchedNotificationWebhookMappingRequest,
|
||||
PatchedOAuthSourcePropertyMappingRequest,
|
||||
PatchedPlexSourcePropertyMappingRequest,
|
||||
PatchedRACPropertyMappingRequest,
|
||||
PatchedRadiusProviderPropertyMappingRequest,
|
||||
PatchedSAMLPropertyMappingRequest,
|
||||
PatchedSAMLSourcePropertyMappingRequest,
|
||||
PatchedSCIMMappingRequest,
|
||||
PatchedSCIMSourcePropertyMappingRequest,
|
||||
PatchedScopeMappingRequest,
|
||||
PatchedTelegramSourcePropertyMappingRequest,
|
||||
PlexSourcePropertyMapping,
|
||||
PlexSourcePropertyMappingRequest,
|
||||
PropertyMapping,
|
||||
PropertyMappingTestRequest,
|
||||
PropertyMappingTestResult,
|
||||
RACPropertyMapping,
|
||||
RACPropertyMappingRequest,
|
||||
RadiusProviderPropertyMapping,
|
||||
RadiusProviderPropertyMappingRequest,
|
||||
SAMLPropertyMapping,
|
||||
SAMLPropertyMappingRequest,
|
||||
SAMLSourcePropertyMapping,
|
||||
SAMLSourcePropertyMappingRequest,
|
||||
SCIMMapping,
|
||||
SCIMMappingRequest,
|
||||
SCIMSourcePropertyMapping,
|
||||
SCIMSourcePropertyMappingRequest,
|
||||
ScopeMapping,
|
||||
ScopeMappingRequest,
|
||||
TelegramSourcePropertyMapping,
|
||||
TelegramSourcePropertyMappingRequest,
|
||||
TypeCreate,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import {
|
||||
type GoogleWorkspaceProviderMapping,
|
||||
GoogleWorkspaceProviderMappingFromJSON,
|
||||
} from "../models/GoogleWorkspaceProviderMapping";
|
||||
import {
|
||||
type GoogleWorkspaceProviderMappingRequest,
|
||||
GoogleWorkspaceProviderMappingRequestToJSON,
|
||||
} from "../models/GoogleWorkspaceProviderMappingRequest";
|
||||
import {
|
||||
type KerberosSourcePropertyMapping,
|
||||
KerberosSourcePropertyMappingFromJSON,
|
||||
} from "../models/KerberosSourcePropertyMapping";
|
||||
import {
|
||||
type KerberosSourcePropertyMappingRequest,
|
||||
KerberosSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/KerberosSourcePropertyMappingRequest";
|
||||
import {
|
||||
type LDAPSourcePropertyMapping,
|
||||
LDAPSourcePropertyMappingFromJSON,
|
||||
} from "../models/LDAPSourcePropertyMapping";
|
||||
import {
|
||||
type LDAPSourcePropertyMappingRequest,
|
||||
LDAPSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/LDAPSourcePropertyMappingRequest";
|
||||
import {
|
||||
type MicrosoftEntraProviderMapping,
|
||||
MicrosoftEntraProviderMappingFromJSON,
|
||||
} from "../models/MicrosoftEntraProviderMapping";
|
||||
import {
|
||||
type MicrosoftEntraProviderMappingRequest,
|
||||
MicrosoftEntraProviderMappingRequestToJSON,
|
||||
} from "../models/MicrosoftEntraProviderMappingRequest";
|
||||
import {
|
||||
type NotificationWebhookMapping,
|
||||
NotificationWebhookMappingFromJSON,
|
||||
} from "../models/NotificationWebhookMapping";
|
||||
import {
|
||||
type NotificationWebhookMappingRequest,
|
||||
NotificationWebhookMappingRequestToJSON,
|
||||
} from "../models/NotificationWebhookMappingRequest";
|
||||
import {
|
||||
type OAuthSourcePropertyMapping,
|
||||
OAuthSourcePropertyMappingFromJSON,
|
||||
} from "../models/OAuthSourcePropertyMapping";
|
||||
import {
|
||||
type OAuthSourcePropertyMappingRequest,
|
||||
OAuthSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/OAuthSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PaginatedGoogleWorkspaceProviderMappingList,
|
||||
PaginatedGoogleWorkspaceProviderMappingListFromJSON,
|
||||
} from "../models/PaginatedGoogleWorkspaceProviderMappingList";
|
||||
import {
|
||||
type PaginatedKerberosSourcePropertyMappingList,
|
||||
PaginatedKerberosSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedKerberosSourcePropertyMappingList";
|
||||
import {
|
||||
type PaginatedLDAPSourcePropertyMappingList,
|
||||
PaginatedLDAPSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedLDAPSourcePropertyMappingList";
|
||||
import {
|
||||
type PaginatedMicrosoftEntraProviderMappingList,
|
||||
PaginatedMicrosoftEntraProviderMappingListFromJSON,
|
||||
} from "../models/PaginatedMicrosoftEntraProviderMappingList";
|
||||
import {
|
||||
type PaginatedNotificationWebhookMappingList,
|
||||
PaginatedNotificationWebhookMappingListFromJSON,
|
||||
} from "../models/PaginatedNotificationWebhookMappingList";
|
||||
import {
|
||||
type PaginatedOAuthSourcePropertyMappingList,
|
||||
PaginatedOAuthSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedOAuthSourcePropertyMappingList";
|
||||
import {
|
||||
type PaginatedPlexSourcePropertyMappingList,
|
||||
PaginatedPlexSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedPlexSourcePropertyMappingList";
|
||||
import {
|
||||
type PaginatedPropertyMappingList,
|
||||
PaginatedPropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedPropertyMappingList";
|
||||
import {
|
||||
type PaginatedRACPropertyMappingList,
|
||||
PaginatedRACPropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedRACPropertyMappingList";
|
||||
import {
|
||||
type PaginatedRadiusProviderPropertyMappingList,
|
||||
PaginatedRadiusProviderPropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedRadiusProviderPropertyMappingList";
|
||||
import {
|
||||
type PaginatedSAMLPropertyMappingList,
|
||||
PaginatedSAMLPropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedSAMLPropertyMappingList";
|
||||
import {
|
||||
type PaginatedSAMLSourcePropertyMappingList,
|
||||
PaginatedSAMLSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedSAMLSourcePropertyMappingList";
|
||||
import {
|
||||
type PaginatedSCIMMappingList,
|
||||
PaginatedSCIMMappingListFromJSON,
|
||||
} from "../models/PaginatedSCIMMappingList";
|
||||
import {
|
||||
type PaginatedSCIMSourcePropertyMappingList,
|
||||
PaginatedSCIMSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedSCIMSourcePropertyMappingList";
|
||||
import {
|
||||
type PaginatedScopeMappingList,
|
||||
PaginatedScopeMappingListFromJSON,
|
||||
} from "../models/PaginatedScopeMappingList";
|
||||
import {
|
||||
type PaginatedTelegramSourcePropertyMappingList,
|
||||
PaginatedTelegramSourcePropertyMappingListFromJSON,
|
||||
} from "../models/PaginatedTelegramSourcePropertyMappingList";
|
||||
import {
|
||||
type PatchedGoogleWorkspaceProviderMappingRequest,
|
||||
PatchedGoogleWorkspaceProviderMappingRequestToJSON,
|
||||
} from "../models/PatchedGoogleWorkspaceProviderMappingRequest";
|
||||
import {
|
||||
type PatchedKerberosSourcePropertyMappingRequest,
|
||||
PatchedKerberosSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedKerberosSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PatchedLDAPSourcePropertyMappingRequest,
|
||||
PatchedLDAPSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedLDAPSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PatchedMicrosoftEntraProviderMappingRequest,
|
||||
PatchedMicrosoftEntraProviderMappingRequestToJSON,
|
||||
} from "../models/PatchedMicrosoftEntraProviderMappingRequest";
|
||||
import {
|
||||
type PatchedNotificationWebhookMappingRequest,
|
||||
PatchedNotificationWebhookMappingRequestToJSON,
|
||||
} from "../models/PatchedNotificationWebhookMappingRequest";
|
||||
import {
|
||||
type PatchedOAuthSourcePropertyMappingRequest,
|
||||
PatchedOAuthSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedOAuthSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PatchedPlexSourcePropertyMappingRequest,
|
||||
PatchedPlexSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedPlexSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PatchedRACPropertyMappingRequest,
|
||||
PatchedRACPropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedRACPropertyMappingRequest";
|
||||
import {
|
||||
type PatchedRadiusProviderPropertyMappingRequest,
|
||||
PatchedRadiusProviderPropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedRadiusProviderPropertyMappingRequest";
|
||||
import {
|
||||
type PatchedSAMLPropertyMappingRequest,
|
||||
PatchedSAMLPropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedSAMLPropertyMappingRequest";
|
||||
import {
|
||||
type PatchedSAMLSourcePropertyMappingRequest,
|
||||
PatchedSAMLSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedSAMLSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PatchedSCIMMappingRequest,
|
||||
PatchedSCIMMappingRequestToJSON,
|
||||
} from "../models/PatchedSCIMMappingRequest";
|
||||
import {
|
||||
type PatchedSCIMSourcePropertyMappingRequest,
|
||||
PatchedSCIMSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedSCIMSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PatchedScopeMappingRequest,
|
||||
PatchedScopeMappingRequestToJSON,
|
||||
} from "../models/PatchedScopeMappingRequest";
|
||||
import {
|
||||
type PatchedTelegramSourcePropertyMappingRequest,
|
||||
PatchedTelegramSourcePropertyMappingRequestToJSON,
|
||||
} from "../models/PatchedTelegramSourcePropertyMappingRequest";
|
||||
import {
|
||||
type PlexSourcePropertyMapping,
|
||||
PlexSourcePropertyMappingFromJSON,
|
||||
} from "../models/PlexSourcePropertyMapping";
|
||||
import {
|
||||
type PlexSourcePropertyMappingRequest,
|
||||
PlexSourcePropertyMappingRequestToJSON,
|
||||
PropertyMappingFromJSON,
|
||||
} from "../models/PlexSourcePropertyMappingRequest";
|
||||
import { type PropertyMapping, PropertyMappingFromJSON } from "../models/PropertyMapping";
|
||||
import {
|
||||
type PropertyMappingTestRequest,
|
||||
PropertyMappingTestRequestToJSON,
|
||||
} from "../models/PropertyMappingTestRequest";
|
||||
import {
|
||||
type PropertyMappingTestResult,
|
||||
PropertyMappingTestResultFromJSON,
|
||||
RACPropertyMappingFromJSON,
|
||||
} from "../models/PropertyMappingTestResult";
|
||||
import { type RACPropertyMapping, RACPropertyMappingFromJSON } from "../models/RACPropertyMapping";
|
||||
import {
|
||||
type RACPropertyMappingRequest,
|
||||
RACPropertyMappingRequestToJSON,
|
||||
} from "../models/RACPropertyMappingRequest";
|
||||
import {
|
||||
type RadiusProviderPropertyMapping,
|
||||
RadiusProviderPropertyMappingFromJSON,
|
||||
} from "../models/RadiusProviderPropertyMapping";
|
||||
import {
|
||||
type RadiusProviderPropertyMappingRequest,
|
||||
RadiusProviderPropertyMappingRequestToJSON,
|
||||
} from "../models/RadiusProviderPropertyMappingRequest";
|
||||
import {
|
||||
type SAMLPropertyMapping,
|
||||
SAMLPropertyMappingFromJSON,
|
||||
} from "../models/SAMLPropertyMapping";
|
||||
import {
|
||||
type SAMLPropertyMappingRequest,
|
||||
SAMLPropertyMappingRequestToJSON,
|
||||
} from "../models/SAMLPropertyMappingRequest";
|
||||
import {
|
||||
type SAMLSourcePropertyMapping,
|
||||
SAMLSourcePropertyMappingFromJSON,
|
||||
} from "../models/SAMLSourcePropertyMapping";
|
||||
import {
|
||||
type SAMLSourcePropertyMappingRequest,
|
||||
SAMLSourcePropertyMappingRequestToJSON,
|
||||
SCIMMappingFromJSON,
|
||||
SCIMMappingRequestToJSON,
|
||||
} from "../models/SAMLSourcePropertyMappingRequest";
|
||||
import { type SCIMMapping, SCIMMappingFromJSON } from "../models/SCIMMapping";
|
||||
import { type SCIMMappingRequest, SCIMMappingRequestToJSON } from "../models/SCIMMappingRequest";
|
||||
import {
|
||||
type SCIMSourcePropertyMapping,
|
||||
SCIMSourcePropertyMappingFromJSON,
|
||||
} from "../models/SCIMSourcePropertyMapping";
|
||||
import {
|
||||
type SCIMSourcePropertyMappingRequest,
|
||||
SCIMSourcePropertyMappingRequestToJSON,
|
||||
ScopeMappingFromJSON,
|
||||
ScopeMappingRequestToJSON,
|
||||
} from "../models/SCIMSourcePropertyMappingRequest";
|
||||
import { type ScopeMapping, ScopeMappingFromJSON } from "../models/ScopeMapping";
|
||||
import { type ScopeMappingRequest, ScopeMappingRequestToJSON } from "../models/ScopeMappingRequest";
|
||||
import {
|
||||
type TelegramSourcePropertyMapping,
|
||||
TelegramSourcePropertyMappingFromJSON,
|
||||
} from "../models/TelegramSourcePropertyMapping";
|
||||
import {
|
||||
type TelegramSourcePropertyMappingRequest,
|
||||
TelegramSourcePropertyMappingRequestToJSON,
|
||||
TypeCreateFromJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/TelegramSourcePropertyMappingRequest";
|
||||
import { type TypeCreate, TypeCreateFromJSON } from "../models/TypeCreate";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface PropertymappingsAllDestroyRequest {
|
||||
@@ -752,7 +856,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/all/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -898,7 +1002,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/all/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -973,7 +1077,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/all/{pm_uuid}/test/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1095,7 +1199,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/all/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1234,7 +1338,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/notification/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1379,7 +1483,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/notification/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1452,7 +1556,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/notification/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1531,7 +1635,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/notification/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1604,7 +1708,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/notification/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1743,7 +1847,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/google_workspace/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1903,7 +2007,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/google_workspace/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -1978,7 +2082,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/google_workspace/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2059,7 +2163,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/google_workspace/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2132,7 +2236,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/google_workspace/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2273,7 +2377,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/microsoft_entra/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2433,7 +2537,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/microsoft_entra/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2508,7 +2612,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/microsoft_entra/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2587,7 +2691,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/microsoft_entra/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2660,7 +2764,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/microsoft_entra/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2799,7 +2903,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/rac/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -2948,7 +3052,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/rac/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3021,7 +3125,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/rac/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3100,7 +3204,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/rac/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3171,7 +3275,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/rac/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3310,7 +3414,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/radius/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3463,7 +3567,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/radius/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3536,7 +3640,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/radius/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3615,7 +3719,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/radius/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3688,7 +3792,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/radius/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3825,7 +3929,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -3986,7 +4090,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4059,7 +4163,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4138,7 +4242,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4209,7 +4313,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/saml/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4344,7 +4448,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4497,7 +4601,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4566,7 +4670,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4643,7 +4747,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4712,7 +4816,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scim/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -4849,7 +4953,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scope/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5006,7 +5110,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scope/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5077,7 +5181,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scope/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5156,7 +5260,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scope/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5227,7 +5331,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/provider/scope/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5366,7 +5470,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/kerberos/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5519,7 +5623,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/kerberos/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5592,7 +5696,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/kerberos/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5671,7 +5775,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/kerberos/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5744,7 +5848,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/kerberos/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -5883,7 +5987,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/ldap/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6036,7 +6140,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/ldap/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6109,7 +6213,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/ldap/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6188,7 +6292,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/ldap/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6261,7 +6365,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/ldap/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6400,7 +6504,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/oauth/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6553,7 +6657,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/oauth/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6626,7 +6730,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/oauth/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6705,7 +6809,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/oauth/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6778,7 +6882,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/oauth/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -6917,7 +7021,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/plex/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7070,7 +7174,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/plex/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7143,7 +7247,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/plex/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7222,7 +7326,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/plex/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7295,7 +7399,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/plex/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7434,7 +7538,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7587,7 +7691,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7660,7 +7764,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7739,7 +7843,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/saml/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7812,7 +7916,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/saml/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -7951,7 +8055,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8104,7 +8208,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8177,7 +8281,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8256,7 +8360,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/scim/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8329,7 +8433,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/scim/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8468,7 +8572,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/telegram/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8621,7 +8725,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/telegram/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8694,7 +8798,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/telegram/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8773,7 +8877,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/telegram/{pm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
@@ -8846,7 +8950,7 @@ export class PropertymappingsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/propertymappings/source/telegram/{pm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pm_uuid"}}`,
|
||||
"{pm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pmUuid"])),
|
||||
);
|
||||
|
||||
|
||||
+268
-194
File diff suppressed because it is too large
Load Diff
Generated
+28
-26
@@ -12,28 +12,30 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
ConnectionToken,
|
||||
ConnectionTokenRequest,
|
||||
Endpoint,
|
||||
EndpointRequest,
|
||||
PaginatedConnectionTokenList,
|
||||
PaginatedEndpointList,
|
||||
PatchedConnectionTokenRequest,
|
||||
PatchedEndpointRequest,
|
||||
UsedBy,
|
||||
} from "../models/index";
|
||||
import { type ConnectionToken, ConnectionTokenFromJSON } from "../models/ConnectionToken";
|
||||
import {
|
||||
ConnectionTokenFromJSON,
|
||||
type ConnectionTokenRequest,
|
||||
ConnectionTokenRequestToJSON,
|
||||
EndpointFromJSON,
|
||||
EndpointRequestToJSON,
|
||||
} from "../models/ConnectionTokenRequest";
|
||||
import { type Endpoint, EndpointFromJSON } from "../models/Endpoint";
|
||||
import { type EndpointRequest, EndpointRequestToJSON } from "../models/EndpointRequest";
|
||||
import {
|
||||
type PaginatedConnectionTokenList,
|
||||
PaginatedConnectionTokenListFromJSON,
|
||||
} from "../models/PaginatedConnectionTokenList";
|
||||
import {
|
||||
type PaginatedEndpointList,
|
||||
PaginatedEndpointListFromJSON,
|
||||
} from "../models/PaginatedEndpointList";
|
||||
import {
|
||||
type PatchedConnectionTokenRequest,
|
||||
PatchedConnectionTokenRequestToJSON,
|
||||
} from "../models/PatchedConnectionTokenRequest";
|
||||
import {
|
||||
type PatchedEndpointRequest,
|
||||
PatchedEndpointRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedEndpointRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface RacConnectionTokensDestroyRequest {
|
||||
@@ -136,7 +138,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/connection_tokens/{connection_token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connection_token_uuid"}}`,
|
||||
"{connection_token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectionTokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -284,7 +286,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/connection_tokens/{connection_token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connection_token_uuid"}}`,
|
||||
"{connection_token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectionTokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -357,7 +359,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/connection_tokens/{connection_token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connection_token_uuid"}}`,
|
||||
"{connection_token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectionTokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -435,7 +437,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/connection_tokens/{connection_token_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connection_token_uuid"}}`,
|
||||
"{connection_token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectionTokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -502,7 +504,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/connection_tokens/{connection_token_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"connection_token_uuid"}}`,
|
||||
"{connection_token_uuid}",
|
||||
encodeURIComponent(String(requestParameters["connectionTokenUuid"])),
|
||||
);
|
||||
|
||||
@@ -633,7 +635,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/endpoints/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -781,7 +783,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/endpoints/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -846,7 +848,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/endpoints/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -919,7 +921,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/endpoints/{pbm_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
@@ -984,7 +986,7 @@ export class RacApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/rac/endpoints/{pbm_uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"pbm_uuid"}}`,
|
||||
"{pbm_uuid}",
|
||||
encodeURIComponent(String(requestParameters["pbmUuid"])),
|
||||
);
|
||||
|
||||
|
||||
Generated
+51
-69
@@ -12,44 +12,53 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
InitialPermissions,
|
||||
InitialPermissionsRequest,
|
||||
PaginatedExtraRoleObjectPermissionList,
|
||||
PaginatedInitialPermissionsList,
|
||||
PaginatedPermissionList,
|
||||
PaginatedRoleAssignedObjectPermissionList,
|
||||
PaginatedRoleList,
|
||||
PatchedInitialPermissionsRequest,
|
||||
PatchedPermissionAssignRequest,
|
||||
PatchedRoleRequest,
|
||||
Permission,
|
||||
PermissionAssignRequest,
|
||||
PermissionAssignResult,
|
||||
Role,
|
||||
RoleRequest,
|
||||
UsedBy,
|
||||
UserAccountSerializerForRoleRequest,
|
||||
} from "../models/index";
|
||||
import { type InitialPermissions, InitialPermissionsFromJSON } from "../models/InitialPermissions";
|
||||
import {
|
||||
InitialPermissionsFromJSON,
|
||||
type InitialPermissionsRequest,
|
||||
InitialPermissionsRequestToJSON,
|
||||
} from "../models/InitialPermissionsRequest";
|
||||
import {
|
||||
type PaginatedExtraRoleObjectPermissionList,
|
||||
PaginatedExtraRoleObjectPermissionListFromJSON,
|
||||
} from "../models/PaginatedExtraRoleObjectPermissionList";
|
||||
import {
|
||||
type PaginatedInitialPermissionsList,
|
||||
PaginatedInitialPermissionsListFromJSON,
|
||||
} from "../models/PaginatedInitialPermissionsList";
|
||||
import {
|
||||
type PaginatedPermissionList,
|
||||
PaginatedPermissionListFromJSON,
|
||||
} from "../models/PaginatedPermissionList";
|
||||
import {
|
||||
type PaginatedRoleAssignedObjectPermissionList,
|
||||
PaginatedRoleAssignedObjectPermissionListFromJSON,
|
||||
PaginatedRoleListFromJSON,
|
||||
} from "../models/PaginatedRoleAssignedObjectPermissionList";
|
||||
import { type PaginatedRoleList, PaginatedRoleListFromJSON } from "../models/PaginatedRoleList";
|
||||
import {
|
||||
type PatchedInitialPermissionsRequest,
|
||||
PatchedInitialPermissionsRequestToJSON,
|
||||
} from "../models/PatchedInitialPermissionsRequest";
|
||||
import {
|
||||
type PatchedPermissionAssignRequest,
|
||||
PatchedPermissionAssignRequestToJSON,
|
||||
PatchedRoleRequestToJSON,
|
||||
} from "../models/PatchedPermissionAssignRequest";
|
||||
import { type PatchedRoleRequest, PatchedRoleRequestToJSON } from "../models/PatchedRoleRequest";
|
||||
import { type Permission, PermissionFromJSON } from "../models/Permission";
|
||||
import {
|
||||
type PermissionAssignRequest,
|
||||
PermissionAssignRequestToJSON,
|
||||
} from "../models/PermissionAssignRequest";
|
||||
import {
|
||||
type PermissionAssignResult,
|
||||
PermissionAssignResultFromJSON,
|
||||
PermissionFromJSON,
|
||||
RoleFromJSON,
|
||||
RoleRequestToJSON,
|
||||
UsedByFromJSON,
|
||||
} from "../models/PermissionAssignResult";
|
||||
import { type Role, RoleFromJSON } from "../models/Role";
|
||||
import { type RoleRequest, RoleRequestToJSON } from "../models/RoleRequest";
|
||||
import { type UsedBy, UsedByFromJSON } from "../models/UsedBy";
|
||||
import {
|
||||
type UserAccountSerializerForRoleRequest,
|
||||
UserAccountSerializerForRoleRequestToJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/UserAccountSerializerForRoleRequest";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface RbacInitialPermissionsCreateRequest {
|
||||
@@ -277,7 +286,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/initial_permissions/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -415,7 +424,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/initial_permissions/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -485,7 +494,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/initial_permissions/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -561,7 +570,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/initial_permissions/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -629,7 +638,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/initial_permissions/{id}/used_by/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -703,10 +712,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/permissions/assigned_by_roles/{uuid}/assign/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -866,10 +872,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/permissions/assigned_by_roles/{uuid}/unassign/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1025,7 +1028,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/permissions/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1170,10 +1173,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/add_user/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1299,10 +1299,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1459,10 +1456,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1533,10 +1527,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/remove_user/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1599,10 +1590,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1672,10 +1660,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -1737,10 +1722,7 @@ export class RbacApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/rbac/roles/{uuid}/used_by/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
+7
-4
@@ -12,8 +12,11 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type { DataExport, PaginatedDataExportList } from "../models/index";
|
||||
import { DataExportFromJSON, PaginatedDataExportListFromJSON } from "../models/index";
|
||||
import { type DataExport, DataExportFromJSON } from "../models/DataExport";
|
||||
import {
|
||||
type PaginatedDataExportList,
|
||||
PaginatedDataExportListFromJSON,
|
||||
} from "../models/PaginatedDataExportList";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface ReportsExportsDestroyRequest {
|
||||
@@ -62,7 +65,7 @@ export class ReportsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/reports/exports/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -189,7 +192,7 @@ export class ReportsApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/reports/exports/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
Generated
+1
-2
@@ -12,8 +12,7 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type { Config } from "../models/index";
|
||||
import { ConfigFromJSON } from "../models/index";
|
||||
import { type Config, ConfigFromJSON } from "../models/Config";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
/**
|
||||
|
||||
Generated
+2
-1
@@ -12,7 +12,8 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type { FormatEnum, LangEnum } from "../models/index";
|
||||
import { type FormatEnum } from "../models/FormatEnum";
|
||||
import { type LangEnum } from "../models/LangEnum";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface SchemaRetrieveRequest {
|
||||
|
||||
+394
-391
File diff suppressed because it is too large
Load Diff
Generated
+8
-10
@@ -12,8 +12,12 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type { DeliveryMethodEnum, PaginatedSSFStreamList, SSFStream } from "../models/index";
|
||||
import { PaginatedSSFStreamListFromJSON, SSFStreamFromJSON } from "../models/index";
|
||||
import { type DeliveryMethodEnum } from "../models/DeliveryMethodEnum";
|
||||
import {
|
||||
type PaginatedSSFStreamList,
|
||||
PaginatedSSFStreamListFromJSON,
|
||||
} from "../models/PaginatedSSFStreamList";
|
||||
import { type SSFStream, SSFStreamFromJSON } from "../models/SSFStream";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface SsfStreamsDestroyRequest {
|
||||
@@ -65,10 +69,7 @@ export class SsfApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/ssf/streams/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -211,10 +212,7 @@ export class SsfApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/ssf/streams/{uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"uuid"}}`,
|
||||
encodeURIComponent(String(requestParameters["uuid"])),
|
||||
);
|
||||
urlPath = urlPath.replace("{uuid}", encodeURIComponent(String(requestParameters["uuid"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
|
||||
Generated
+467
-325
File diff suppressed because it is too large
Load Diff
Generated
+19
-25
@@ -12,28 +12,22 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
GlobalTaskStatus,
|
||||
PaginatedScheduleList,
|
||||
PaginatedTaskList,
|
||||
PatchedScheduleRequest,
|
||||
Schedule,
|
||||
ScheduleRequest,
|
||||
Task,
|
||||
TaskAggregatedStatusEnum,
|
||||
TaskStatusEnum,
|
||||
Worker,
|
||||
} from "../models/index";
|
||||
import { type GlobalTaskStatus, GlobalTaskStatusFromJSON } from "../models/GlobalTaskStatus";
|
||||
import {
|
||||
GlobalTaskStatusFromJSON,
|
||||
type PaginatedScheduleList,
|
||||
PaginatedScheduleListFromJSON,
|
||||
PaginatedTaskListFromJSON,
|
||||
} from "../models/PaginatedScheduleList";
|
||||
import { type PaginatedTaskList, PaginatedTaskListFromJSON } from "../models/PaginatedTaskList";
|
||||
import {
|
||||
type PatchedScheduleRequest,
|
||||
PatchedScheduleRequestToJSON,
|
||||
ScheduleFromJSON,
|
||||
ScheduleRequestToJSON,
|
||||
TaskFromJSON,
|
||||
WorkerFromJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/PatchedScheduleRequest";
|
||||
import { type Schedule, ScheduleFromJSON } from "../models/Schedule";
|
||||
import { type ScheduleRequest, ScheduleRequestToJSON } from "../models/ScheduleRequest";
|
||||
import { type Task, TaskFromJSON } from "../models/Task";
|
||||
import { type TaskAggregatedStatusEnum } from "../models/TaskAggregatedStatusEnum";
|
||||
import { type TaskStatusEnum } from "../models/TaskStatusEnum";
|
||||
import { type Worker, WorkerFromJSON } from "../models/Worker";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface TasksSchedulesListRequest {
|
||||
@@ -218,7 +212,7 @@ export class TasksApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/tasks/schedules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -281,7 +275,7 @@ export class TasksApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/tasks/schedules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -340,7 +334,7 @@ export class TasksApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/tasks/schedules/{id}/send/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -409,7 +403,7 @@ export class TasksApi extends runtime.BaseAPI {
|
||||
}
|
||||
|
||||
let urlPath = `/tasks/schedules/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -573,7 +567,7 @@ export class TasksApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tasks/tasks/{message_id}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"message_id"}}`,
|
||||
"{message_id}",
|
||||
encodeURIComponent(String(requestParameters["messageId"])),
|
||||
);
|
||||
|
||||
@@ -635,7 +629,7 @@ export class TasksApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tasks/tasks/{message_id}/retry/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"message_id"}}`,
|
||||
"{message_id}",
|
||||
encodeURIComponent(String(requestParameters["messageId"])),
|
||||
);
|
||||
|
||||
|
||||
+34
-28
@@ -12,32 +12,38 @@
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
import type {
|
||||
Domain,
|
||||
DomainRequest,
|
||||
PaginatedDomainList,
|
||||
PaginatedTenantList,
|
||||
PatchedDomainRequest,
|
||||
PatchedTenantRequest,
|
||||
Tenant,
|
||||
TenantAdminGroupRequestRequest,
|
||||
TenantRecoveryKeyRequestRequest,
|
||||
TenantRecoveryKeyResponse,
|
||||
TenantRequest,
|
||||
} from "../models/index";
|
||||
import { type Domain, DomainFromJSON } from "../models/Domain";
|
||||
import { type DomainRequest, DomainRequestToJSON } from "../models/DomainRequest";
|
||||
import {
|
||||
DomainFromJSON,
|
||||
DomainRequestToJSON,
|
||||
type PaginatedDomainList,
|
||||
PaginatedDomainListFromJSON,
|
||||
} from "../models/PaginatedDomainList";
|
||||
import {
|
||||
type PaginatedTenantList,
|
||||
PaginatedTenantListFromJSON,
|
||||
} from "../models/PaginatedTenantList";
|
||||
import {
|
||||
type PatchedDomainRequest,
|
||||
PatchedDomainRequestToJSON,
|
||||
} from "../models/PatchedDomainRequest";
|
||||
import {
|
||||
type PatchedTenantRequest,
|
||||
PatchedTenantRequestToJSON,
|
||||
} from "../models/PatchedTenantRequest";
|
||||
import { type Tenant, TenantFromJSON } from "../models/Tenant";
|
||||
import {
|
||||
type TenantAdminGroupRequestRequest,
|
||||
TenantAdminGroupRequestRequestToJSON,
|
||||
TenantFromJSON,
|
||||
} from "../models/TenantAdminGroupRequestRequest";
|
||||
import {
|
||||
type TenantRecoveryKeyRequestRequest,
|
||||
TenantRecoveryKeyRequestRequestToJSON,
|
||||
} from "../models/TenantRecoveryKeyRequestRequest";
|
||||
import {
|
||||
type TenantRecoveryKeyResponse,
|
||||
TenantRecoveryKeyResponseFromJSON,
|
||||
TenantRequestToJSON,
|
||||
} from "../models/index";
|
||||
} from "../models/TenantRecoveryKeyResponse";
|
||||
import { type TenantRequest, TenantRequestToJSON } from "../models/TenantRequest";
|
||||
import * as runtime from "../runtime";
|
||||
|
||||
export interface TenantsDomainsCreateRequest {
|
||||
@@ -184,7 +190,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
const headerParameters: runtime.HTTPHeaders = {};
|
||||
|
||||
let urlPath = `/tenants/domains/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -299,7 +305,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
headerParameters["Content-Type"] = "application/json";
|
||||
|
||||
let urlPath = `/tenants/domains/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -355,7 +361,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
const headerParameters: runtime.HTTPHeaders = {};
|
||||
|
||||
let urlPath = `/tenants/domains/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -416,7 +422,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
headerParameters["Content-Type"] = "application/json";
|
||||
|
||||
let urlPath = `/tenants/domains/{id}/`;
|
||||
urlPath = urlPath.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters["id"])));
|
||||
urlPath = urlPath.replace("{id}", encodeURIComponent(String(requestParameters["id"])));
|
||||
|
||||
return {
|
||||
path: urlPath,
|
||||
@@ -533,7 +539,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tenants/tenants/{tenant_uuid}/create_admin_group/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"tenant_uuid"}}`,
|
||||
"{tenant_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tenantUuid"])),
|
||||
);
|
||||
|
||||
@@ -600,7 +606,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tenants/tenants/{tenant_uuid}/create_recovery_key/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"tenant_uuid"}}`,
|
||||
"{tenant_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tenantUuid"])),
|
||||
);
|
||||
|
||||
@@ -664,7 +670,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tenants/tenants/{tenant_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"tenant_uuid"}}`,
|
||||
"{tenant_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tenantUuid"])),
|
||||
);
|
||||
|
||||
@@ -782,7 +788,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tenants/tenants/{tenant_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"tenant_uuid"}}`,
|
||||
"{tenant_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tenantUuid"])),
|
||||
);
|
||||
|
||||
@@ -841,7 +847,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tenants/tenants/{tenant_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"tenant_uuid"}}`,
|
||||
"{tenant_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tenantUuid"])),
|
||||
);
|
||||
|
||||
@@ -905,7 +911,7 @@ export class TenantsApi extends runtime.BaseAPI {
|
||||
|
||||
let urlPath = `/tenants/tenants/{tenant_uuid}/`;
|
||||
urlPath = urlPath.replace(
|
||||
`{${"tenant_uuid"}}`,
|
||||
"{tenant_uuid}",
|
||||
encodeURIComponent(String(requestParameters["tenantUuid"])),
|
||||
);
|
||||
|
||||
|
||||
Generated
+2
-4
@@ -94,10 +94,8 @@ export const DefaultConfig = new Configuration();
|
||||
* This is the base class for all generated API classes.
|
||||
*/
|
||||
export class BaseAPI {
|
||||
private static readonly jsonRegex = new RegExp(
|
||||
"^(:?application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(:?;.*)?$",
|
||||
"i",
|
||||
);
|
||||
private static readonly jsonRegex =
|
||||
/^(:?application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(:?;.*)?$/i;
|
||||
private middleware: Middleware[];
|
||||
|
||||
constructor(protected configuration = DefaultConfig) {
|
||||
|
||||
Reference in New Issue
Block a user