vercel-api-js 1.7.2 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.cjs +129 -145
- package/dist/components.d.mts +99 -111
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +128 -144
- package/dist/effect.cjs +111 -115
- package/dist/effect.d.mts +90 -94
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +111 -115
- package/dist/index.cjs +429 -206
- package/dist/index.d.ts +618 -229
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +406 -186
- package/dist/schemas.cjs +236 -63
- package/dist/schemas.d.mts +198 -29
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +216 -43
- package/dist/types.cjs +66 -0
- package/dist/types.d.mts +303 -71
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +64 -1
- package/package.json +1 -1
package/dist/components.mjs
CHANGED
|
@@ -2132,14 +2132,14 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2132
2132
|
return data;
|
|
2133
2133
|
}
|
|
2134
2134
|
/**
|
|
2135
|
-
* @summary Get
|
|
2136
|
-
* @description Returns all
|
|
2137
|
-
* @link /v1/
|
|
2135
|
+
* @summary Get Global Configs
|
|
2136
|
+
* @description Returns all Global Configs.
|
|
2137
|
+
* @link /v1/global-config
|
|
2138
2138
|
*/ async function getEdgeConfigs({ queryParams, config } = {}) {
|
|
2139
2139
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2140
2140
|
const data = await request({
|
|
2141
2141
|
method: "GET",
|
|
2142
|
-
url: `/v1/
|
|
2142
|
+
url: `/v1/global-config`,
|
|
2143
2143
|
queryParams,
|
|
2144
2144
|
...requestConfig,
|
|
2145
2145
|
headers: {
|
|
@@ -2149,14 +2149,14 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2149
2149
|
return data;
|
|
2150
2150
|
}
|
|
2151
2151
|
/**
|
|
2152
|
-
* @summary Create
|
|
2153
|
-
* @description Creates
|
|
2154
|
-
* @link /v1/
|
|
2152
|
+
* @summary Create a Global Config
|
|
2153
|
+
* @description Creates a Global Config.
|
|
2154
|
+
* @link /v1/global-config
|
|
2155
2155
|
*/ async function createEdgeConfig({ queryParams, config } = {}) {
|
|
2156
2156
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2157
2157
|
const data = await request({
|
|
2158
2158
|
method: "POST",
|
|
2159
|
-
url: `/v1/
|
|
2159
|
+
url: `/v1/global-config`,
|
|
2160
2160
|
queryParams,
|
|
2161
2161
|
...requestConfig,
|
|
2162
2162
|
headers: {
|
|
@@ -2166,9 +2166,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2166
2166
|
return data;
|
|
2167
2167
|
}
|
|
2168
2168
|
/**
|
|
2169
|
-
* @summary Get
|
|
2170
|
-
* @description Returns
|
|
2171
|
-
* @link /v1/
|
|
2169
|
+
* @summary Get a Global Config
|
|
2170
|
+
* @description Returns a Global Config.
|
|
2171
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
2172
2172
|
*/ async function getEdgeConfig({ pathParams, queryParams, config } = {}) {
|
|
2173
2173
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2174
2174
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2176,7 +2176,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2176
2176
|
}
|
|
2177
2177
|
const data = await request({
|
|
2178
2178
|
method: "GET",
|
|
2179
|
-
url: `/v1/
|
|
2179
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}`,
|
|
2180
2180
|
queryParams,
|
|
2181
2181
|
...requestConfig,
|
|
2182
2182
|
headers: {
|
|
@@ -2186,9 +2186,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2186
2186
|
return data;
|
|
2187
2187
|
}
|
|
2188
2188
|
/**
|
|
2189
|
-
* @summary Update
|
|
2190
|
-
* @description Updates
|
|
2191
|
-
* @link /v1/
|
|
2189
|
+
* @summary Update a Global Config
|
|
2190
|
+
* @description Updates a Global Config.
|
|
2191
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
2192
2192
|
*/ async function updateEdgeConfig({ pathParams, queryParams, config } = {}) {
|
|
2193
2193
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2194
2194
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2196,7 +2196,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2196
2196
|
}
|
|
2197
2197
|
const data = await request({
|
|
2198
2198
|
method: "PUT",
|
|
2199
|
-
url: `/v1/
|
|
2199
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}`,
|
|
2200
2200
|
queryParams,
|
|
2201
2201
|
...requestConfig,
|
|
2202
2202
|
headers: {
|
|
@@ -2206,9 +2206,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2206
2206
|
return data;
|
|
2207
2207
|
}
|
|
2208
2208
|
/**
|
|
2209
|
-
* @summary Delete
|
|
2210
|
-
* @description Delete
|
|
2211
|
-
* @link /v1/
|
|
2209
|
+
* @summary Delete a Global Config
|
|
2210
|
+
* @description Delete a Global Config by id.
|
|
2211
|
+
* @link /v1/global-config/{edgeConfigId}
|
|
2212
2212
|
*/ async function deleteEdgeConfig({ pathParams, queryParams, config } = {}) {
|
|
2213
2213
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2214
2214
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2216,7 +2216,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2216
2216
|
}
|
|
2217
2217
|
const data = await request({
|
|
2218
2218
|
method: "DELETE",
|
|
2219
|
-
url: `/v1/
|
|
2219
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}`,
|
|
2220
2220
|
queryParams,
|
|
2221
2221
|
...requestConfig,
|
|
2222
2222
|
headers: {
|
|
@@ -2226,9 +2226,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2226
2226
|
return data;
|
|
2227
2227
|
}
|
|
2228
2228
|
/**
|
|
2229
|
-
* @summary Get
|
|
2230
|
-
* @description Returns all items of
|
|
2231
|
-
* @link /v1/
|
|
2229
|
+
* @summary Get Global Config items
|
|
2230
|
+
* @description Returns all items of a Global Config.
|
|
2231
|
+
* @link /v1/global-config/{edgeConfigId}/items
|
|
2232
2232
|
*/ async function getEdgeConfigItems({ pathParams, queryParams, config } = {}) {
|
|
2233
2233
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2234
2234
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2236,7 +2236,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2236
2236
|
}
|
|
2237
2237
|
const data = await request({
|
|
2238
2238
|
method: "GET",
|
|
2239
|
-
url: `/v1/
|
|
2239
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/items`,
|
|
2240
2240
|
queryParams,
|
|
2241
2241
|
...requestConfig,
|
|
2242
2242
|
headers: {
|
|
@@ -2246,9 +2246,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2246
2246
|
return data;
|
|
2247
2247
|
}
|
|
2248
2248
|
/**
|
|
2249
|
-
* @summary Update
|
|
2250
|
-
* @description Update multiple
|
|
2251
|
-
* @link /v1/
|
|
2249
|
+
* @summary Update Global Config items in batch
|
|
2250
|
+
* @description Update multiple Global Config Items in batch.
|
|
2251
|
+
* @link /v1/global-config/{edgeConfigId}/items
|
|
2252
2252
|
*/ async function patchEdgeConfigItems({ pathParams, queryParams, config } = {}) {
|
|
2253
2253
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2254
2254
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2256,7 +2256,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2256
2256
|
}
|
|
2257
2257
|
const data = await request({
|
|
2258
2258
|
method: "PATCH",
|
|
2259
|
-
url: `/v1/
|
|
2259
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/items`,
|
|
2260
2260
|
queryParams,
|
|
2261
2261
|
...requestConfig,
|
|
2262
2262
|
headers: {
|
|
@@ -2266,9 +2266,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2266
2266
|
return data;
|
|
2267
2267
|
}
|
|
2268
2268
|
/**
|
|
2269
|
-
* @summary Get
|
|
2270
|
-
* @description Returns the schema of
|
|
2271
|
-
* @link /v1/
|
|
2269
|
+
* @summary Get Global Config schema
|
|
2270
|
+
* @description Returns the schema of a Global Config.
|
|
2271
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
2272
2272
|
*/ async function getEdgeConfigSchema({ pathParams, queryParams, config } = {}) {
|
|
2273
2273
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2274
2274
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2276,7 +2276,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2276
2276
|
}
|
|
2277
2277
|
const data = await request({
|
|
2278
2278
|
method: "GET",
|
|
2279
|
-
url: `/v1/
|
|
2279
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/schema`,
|
|
2280
2280
|
queryParams,
|
|
2281
2281
|
...requestConfig,
|
|
2282
2282
|
headers: {
|
|
@@ -2286,9 +2286,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2286
2286
|
return data;
|
|
2287
2287
|
}
|
|
2288
2288
|
/**
|
|
2289
|
-
* @summary Update
|
|
2290
|
-
* @description Update
|
|
2291
|
-
* @link /v1/
|
|
2289
|
+
* @summary Update Global Config schema
|
|
2290
|
+
* @description Update a Global Config's schema.
|
|
2291
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
2292
2292
|
*/ async function patchEdgeConfigSchema({ pathParams, queryParams, config } = {}) {
|
|
2293
2293
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2294
2294
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2296,7 +2296,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2296
2296
|
}
|
|
2297
2297
|
const data = await request({
|
|
2298
2298
|
method: "POST",
|
|
2299
|
-
url: `/v1/
|
|
2299
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/schema`,
|
|
2300
2300
|
queryParams,
|
|
2301
2301
|
...requestConfig,
|
|
2302
2302
|
headers: {
|
|
@@ -2306,9 +2306,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2306
2306
|
return data;
|
|
2307
2307
|
}
|
|
2308
2308
|
/**
|
|
2309
|
-
* @summary Delete
|
|
2310
|
-
* @description Deletes the schema of existing
|
|
2311
|
-
* @link /v1/
|
|
2309
|
+
* @summary Delete a Global Config's schema
|
|
2310
|
+
* @description Deletes the schema of existing Global Config.
|
|
2311
|
+
* @link /v1/global-config/{edgeConfigId}/schema
|
|
2312
2312
|
*/ async function deleteEdgeConfigSchema({ pathParams, queryParams, config } = {}) {
|
|
2313
2313
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2314
2314
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2316,7 +2316,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2316
2316
|
}
|
|
2317
2317
|
const data = await request({
|
|
2318
2318
|
method: "DELETE",
|
|
2319
|
-
url: `/v1/
|
|
2319
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/schema`,
|
|
2320
2320
|
queryParams,
|
|
2321
2321
|
...requestConfig,
|
|
2322
2322
|
headers: {
|
|
@@ -2326,9 +2326,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2326
2326
|
return data;
|
|
2327
2327
|
}
|
|
2328
2328
|
/**
|
|
2329
|
-
* @summary Get
|
|
2330
|
-
* @description Returns a specific
|
|
2331
|
-
* @link /v1/
|
|
2329
|
+
* @summary Get a Global Config item
|
|
2330
|
+
* @description Returns a specific Global Config Item.
|
|
2331
|
+
* @link /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}
|
|
2332
2332
|
*/ async function getEdgeConfigItem({ pathParams, queryParams, config } = {}) {
|
|
2333
2333
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2334
2334
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2339,7 +2339,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2339
2339
|
}
|
|
2340
2340
|
const data = await request({
|
|
2341
2341
|
method: "GET",
|
|
2342
|
-
url: `/v1/
|
|
2342
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/item/${pathParams.edgeConfigItemKey}`,
|
|
2343
2343
|
queryParams,
|
|
2344
2344
|
...requestConfig,
|
|
2345
2345
|
headers: {
|
|
@@ -2349,9 +2349,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2349
2349
|
return data;
|
|
2350
2350
|
}
|
|
2351
2351
|
/**
|
|
2352
|
-
* @summary Get all tokens of
|
|
2353
|
-
* @description Returns all tokens of
|
|
2354
|
-
* @link /v1/
|
|
2352
|
+
* @summary Get all tokens of a Global Config
|
|
2353
|
+
* @description Returns all tokens of a Global Config.
|
|
2354
|
+
* @link /v1/global-config/{edgeConfigId}/tokens
|
|
2355
2355
|
*/ async function getEdgeConfigTokens({ pathParams, queryParams, config } = {}) {
|
|
2356
2356
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2357
2357
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2359,7 +2359,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2359
2359
|
}
|
|
2360
2360
|
const data = await request({
|
|
2361
2361
|
method: "GET",
|
|
2362
|
-
url: `/v1/
|
|
2362
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/tokens`,
|
|
2363
2363
|
queryParams,
|
|
2364
2364
|
...requestConfig,
|
|
2365
2365
|
headers: {
|
|
@@ -2369,9 +2369,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2369
2369
|
return data;
|
|
2370
2370
|
}
|
|
2371
2371
|
/**
|
|
2372
|
-
* @summary Delete one or more
|
|
2373
|
-
* @description Deletes one or more tokens of an existing
|
|
2374
|
-
* @link /v1/
|
|
2372
|
+
* @summary Delete one or more Global Config tokens
|
|
2373
|
+
* @description Deletes one or more tokens of an existing Global Config.
|
|
2374
|
+
* @link /v1/global-config/{edgeConfigId}/tokens
|
|
2375
2375
|
*/ async function deleteEdgeConfigTokens({ pathParams, queryParams, config } = {}) {
|
|
2376
2376
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2377
2377
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2379,7 +2379,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2379
2379
|
}
|
|
2380
2380
|
const data = await request({
|
|
2381
2381
|
method: "DELETE",
|
|
2382
|
-
url: `/v1/
|
|
2382
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/tokens`,
|
|
2383
2383
|
queryParams,
|
|
2384
2384
|
...requestConfig,
|
|
2385
2385
|
headers: {
|
|
@@ -2389,9 +2389,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2389
2389
|
return data;
|
|
2390
2390
|
}
|
|
2391
2391
|
/**
|
|
2392
|
-
* @summary Get
|
|
2393
|
-
* @description Return meta data about
|
|
2394
|
-
* @link /v1/
|
|
2392
|
+
* @summary Get Global Config token meta data
|
|
2393
|
+
* @description Return meta data about a Global Config token.
|
|
2394
|
+
* @link /v1/global-config/{edgeConfigId}/token/{token}
|
|
2395
2395
|
*/ async function getEdgeConfigToken({ pathParams, queryParams, config } = {}) {
|
|
2396
2396
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2397
2397
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2402,7 +2402,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2402
2402
|
}
|
|
2403
2403
|
const data = await request({
|
|
2404
2404
|
method: "GET",
|
|
2405
|
-
url: `/v1/
|
|
2405
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/token/${pathParams.token}`,
|
|
2406
2406
|
queryParams,
|
|
2407
2407
|
...requestConfig,
|
|
2408
2408
|
headers: {
|
|
@@ -2412,9 +2412,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2412
2412
|
return data;
|
|
2413
2413
|
}
|
|
2414
2414
|
/**
|
|
2415
|
-
* @summary Create
|
|
2416
|
-
* @description Adds a token to an existing
|
|
2417
|
-
* @link /v1/
|
|
2415
|
+
* @summary Create a Global Config token
|
|
2416
|
+
* @description Adds a token to an existing Global Config.
|
|
2417
|
+
* @link /v1/global-config/{edgeConfigId}/token
|
|
2418
2418
|
*/ async function createEdgeConfigToken({ pathParams, queryParams, config } = {}) {
|
|
2419
2419
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2420
2420
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2422,7 +2422,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2422
2422
|
}
|
|
2423
2423
|
const data = await request({
|
|
2424
2424
|
method: "POST",
|
|
2425
|
-
url: `/v1/
|
|
2425
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/token`,
|
|
2426
2426
|
queryParams,
|
|
2427
2427
|
...requestConfig,
|
|
2428
2428
|
headers: {
|
|
@@ -2432,9 +2432,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2432
2432
|
return data;
|
|
2433
2433
|
}
|
|
2434
2434
|
/**
|
|
2435
|
-
* @summary Get
|
|
2436
|
-
* @description Retrieves a specific version of
|
|
2437
|
-
* @link /v1/
|
|
2435
|
+
* @summary Get Global Config backup
|
|
2436
|
+
* @description Retrieves a specific version of a Global Config from backup storage.
|
|
2437
|
+
* @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}
|
|
2438
2438
|
*/ async function getEdgeConfigBackup({ pathParams, queryParams, config } = {}) {
|
|
2439
2439
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2440
2440
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2445,7 +2445,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2445
2445
|
}
|
|
2446
2446
|
const data = await request({
|
|
2447
2447
|
method: "GET",
|
|
2448
|
-
url: `/v1/
|
|
2448
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/backups/${pathParams.edgeConfigBackupVersionId}`,
|
|
2449
2449
|
queryParams,
|
|
2450
2450
|
...requestConfig,
|
|
2451
2451
|
headers: {
|
|
@@ -2455,9 +2455,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2455
2455
|
return data;
|
|
2456
2456
|
}
|
|
2457
2457
|
/**
|
|
2458
|
-
* @summary Restore
|
|
2459
|
-
* @description Restores
|
|
2460
|
-
* @link /v1/
|
|
2458
|
+
* @summary Restore Global Config backup
|
|
2459
|
+
* @description Restores a Global Config backup.
|
|
2460
|
+
* @link /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore
|
|
2461
2461
|
*/ async function restoreEdgeConfigBackup({ pathParams, queryParams, config } = {}) {
|
|
2462
2462
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2463
2463
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2468,7 +2468,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2468
2468
|
}
|
|
2469
2469
|
const data = await request({
|
|
2470
2470
|
method: "POST",
|
|
2471
|
-
url: `/v1/
|
|
2471
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/backups/${pathParams.edgeConfigBackupVersionId}/restore`,
|
|
2472
2472
|
queryParams,
|
|
2473
2473
|
...requestConfig,
|
|
2474
2474
|
headers: {
|
|
@@ -2478,9 +2478,9 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2478
2478
|
return data;
|
|
2479
2479
|
}
|
|
2480
2480
|
/**
|
|
2481
|
-
* @summary Get
|
|
2482
|
-
* @description Returns backups of
|
|
2483
|
-
* @link /v1/
|
|
2481
|
+
* @summary Get Global Config backups
|
|
2482
|
+
* @description Returns backups of a Global Config.
|
|
2483
|
+
* @link /v1/global-config/{edgeConfigId}/backups
|
|
2484
2484
|
*/ async function getEdgeConfigBackups({ pathParams, queryParams, config } = {}) {
|
|
2485
2485
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
2486
2486
|
if (!pathParams.edgeConfigId) {
|
|
@@ -2488,7 +2488,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
2488
2488
|
}
|
|
2489
2489
|
const data = await request({
|
|
2490
2490
|
method: "GET",
|
|
2491
|
-
url: `/v1/
|
|
2491
|
+
url: `/v1/global-config/${pathParams.edgeConfigId}/backups`,
|
|
2492
2492
|
queryParams,
|
|
2493
2493
|
...requestConfig,
|
|
2494
2494
|
headers: {
|
|
@@ -3777,10 +3777,10 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
3777
3777
|
return data;
|
|
3778
3778
|
}
|
|
3779
3779
|
/**
|
|
3780
|
-
* @summary Get the data of a user-provided
|
|
3781
|
-
* @description When the user enabled
|
|
3782
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3783
|
-
*/ async function
|
|
3780
|
+
* @summary Get the data of a user-provided Global Config
|
|
3781
|
+
* @description When the user enabled Global Config syncing, then this endpoint can be used by the partner to fetch the contents of the Global Config.
|
|
3782
|
+
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
|
|
3783
|
+
*/ async function getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config } = {}) {
|
|
3784
3784
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3785
3785
|
if (!pathParams.integrationConfigurationId) {
|
|
3786
3786
|
throw new Error(`Missing required path parameter: integrationConfigurationId`);
|
|
@@ -3790,7 +3790,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
3790
3790
|
}
|
|
3791
3791
|
const data = await request({
|
|
3792
3792
|
method: "GET",
|
|
3793
|
-
url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/
|
|
3793
|
+
url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/global-config`,
|
|
3794
3794
|
...requestConfig,
|
|
3795
3795
|
headers: {
|
|
3796
3796
|
...requestConfig.headers
|
|
@@ -3799,10 +3799,10 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
3799
3799
|
return data;
|
|
3800
3800
|
}
|
|
3801
3801
|
/**
|
|
3802
|
-
* @summary Push data into a user-provided
|
|
3803
|
-
* @description When the user enabled
|
|
3804
|
-
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
3805
|
-
*/ async function
|
|
3802
|
+
* @summary Push data into a user-provided Global Config
|
|
3803
|
+
* @description When the user enabled Global Config syncing, then this endpoint can be used by the partner to push their configuration data into the relevant Global Config.
|
|
3804
|
+
* @link /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config
|
|
3805
|
+
*/ async function replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig({ pathParams, config } = {}) {
|
|
3806
3806
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3807
3807
|
if (!pathParams.integrationConfigurationId) {
|
|
3808
3808
|
throw new Error(`Missing required path parameter: integrationConfigurationId`);
|
|
@@ -3812,7 +3812,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
3812
3812
|
}
|
|
3813
3813
|
const data = await request({
|
|
3814
3814
|
method: "PUT",
|
|
3815
|
-
url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/
|
|
3815
|
+
url: `/v1/installations/${pathParams.integrationConfigurationId}/resources/${pathParams.resourceId}/experimentation/global-config`,
|
|
3816
3816
|
...requestConfig,
|
|
3817
3817
|
headers: {
|
|
3818
3818
|
...requestConfig.headers
|
|
@@ -7177,24 +7177,24 @@ const operationsByPath = {
|
|
|
7177
7177
|
"POST /v1/edge-cache/dangerously-delete-by-tags": dangerouslyDeleteByTags,
|
|
7178
7178
|
"POST /v1/edge-cache/invalidate-by-src-images": invalidateBySrcImages,
|
|
7179
7179
|
"POST /v1/edge-cache/dangerously-delete-by-src-images": dangerouslyDeleteBySrcImages,
|
|
7180
|
-
"GET /v1/
|
|
7181
|
-
"POST /v1/
|
|
7182
|
-
"GET /v1/
|
|
7183
|
-
"PUT /v1/
|
|
7184
|
-
"DELETE /v1/
|
|
7185
|
-
"GET /v1/
|
|
7186
|
-
"PATCH /v1/
|
|
7187
|
-
"GET /v1/
|
|
7188
|
-
"POST /v1/
|
|
7189
|
-
"DELETE /v1/
|
|
7190
|
-
"GET /v1/
|
|
7191
|
-
"GET /v1/
|
|
7192
|
-
"DELETE /v1/
|
|
7193
|
-
"GET /v1/
|
|
7194
|
-
"POST /v1/
|
|
7195
|
-
"GET /v1/
|
|
7196
|
-
"POST /v1/
|
|
7197
|
-
"GET /v1/
|
|
7180
|
+
"GET /v1/global-config": getEdgeConfigs,
|
|
7181
|
+
"POST /v1/global-config": createEdgeConfig,
|
|
7182
|
+
"GET /v1/global-config/{edgeConfigId}": getEdgeConfig,
|
|
7183
|
+
"PUT /v1/global-config/{edgeConfigId}": updateEdgeConfig,
|
|
7184
|
+
"DELETE /v1/global-config/{edgeConfigId}": deleteEdgeConfig,
|
|
7185
|
+
"GET /v1/global-config/{edgeConfigId}/items": getEdgeConfigItems,
|
|
7186
|
+
"PATCH /v1/global-config/{edgeConfigId}/items": patchEdgeConfigItems,
|
|
7187
|
+
"GET /v1/global-config/{edgeConfigId}/schema": getEdgeConfigSchema,
|
|
7188
|
+
"POST /v1/global-config/{edgeConfigId}/schema": patchEdgeConfigSchema,
|
|
7189
|
+
"DELETE /v1/global-config/{edgeConfigId}/schema": deleteEdgeConfigSchema,
|
|
7190
|
+
"GET /v1/global-config/{edgeConfigId}/item/{edgeConfigItemKey}": getEdgeConfigItem,
|
|
7191
|
+
"GET /v1/global-config/{edgeConfigId}/tokens": getEdgeConfigTokens,
|
|
7192
|
+
"DELETE /v1/global-config/{edgeConfigId}/tokens": deleteEdgeConfigTokens,
|
|
7193
|
+
"GET /v1/global-config/{edgeConfigId}/token/{token}": getEdgeConfigToken,
|
|
7194
|
+
"POST /v1/global-config/{edgeConfigId}/token": createEdgeConfigToken,
|
|
7195
|
+
"GET /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}": getEdgeConfigBackup,
|
|
7196
|
+
"POST /v1/global-config/{edgeConfigId}/backups/{edgeConfigBackupVersionId}/restore": restoreEdgeConfigBackup,
|
|
7197
|
+
"GET /v1/global-config/{edgeConfigId}/backups": getEdgeConfigBackups,
|
|
7198
7198
|
"POST /v1/env": createSharedEnvVariable,
|
|
7199
7199
|
"GET /v1/env": listSharedEnvVariable,
|
|
7200
7200
|
"PATCH /v1/env": updateSharedEnvVariable,
|
|
@@ -7258,8 +7258,8 @@ const operationsByPath = {
|
|
|
7258
7258
|
"POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items": createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems,
|
|
7259
7259
|
"PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
|
|
7260
7260
|
"DELETE /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
|
|
7261
|
-
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
7262
|
-
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/
|
|
7261
|
+
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig,
|
|
7262
|
+
"PUT /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/global-config": replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig,
|
|
7263
7263
|
"GET /v1/microfrontends/groups": getMicrofrontendsGroups,
|
|
7264
7264
|
"GET /v1/microfrontends/groups/{groupId}/projects": getMicrofrontendsInGroup,
|
|
7265
7265
|
"GET /v1/microfrontends/{deploymentId}/config": getMicrofrontendsConfig,
|
|
@@ -7442,7 +7442,7 @@ const operationsByTag = {
|
|
|
7442
7442
|
updateAccessGroupProject,
|
|
7443
7443
|
deleteAccessGroupProject
|
|
7444
7444
|
},
|
|
7445
|
-
|
|
7445
|
+
aiGateway: {
|
|
7446
7446
|
createAiGatewayRule,
|
|
7447
7447
|
listAiGatewayRules,
|
|
7448
7448
|
updateAiGatewayRule,
|
|
@@ -7587,7 +7587,7 @@ const operationsByTag = {
|
|
|
7587
7587
|
invalidateBySrcImages,
|
|
7588
7588
|
dangerouslyDeleteBySrcImages
|
|
7589
7589
|
},
|
|
7590
|
-
|
|
7590
|
+
globalConfig: {
|
|
7591
7591
|
getEdgeConfigs,
|
|
7592
7592
|
createEdgeConfig,
|
|
7593
7593
|
getEdgeConfig,
|
|
@@ -7671,8 +7671,8 @@ const operationsByTag = {
|
|
|
7671
7671
|
createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems,
|
|
7672
7672
|
updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
|
|
7673
7673
|
deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
|
|
7674
|
-
|
|
7675
|
-
|
|
7674
|
+
getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig,
|
|
7675
|
+
replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig
|
|
7676
7676
|
},
|
|
7677
7677
|
authentication: {
|
|
7678
7678
|
exchangeSsoToken,
|
|
@@ -7691,7 +7691,7 @@ const operationsByTag = {
|
|
|
7691
7691
|
getMicrofrontendsConfigForProject,
|
|
7692
7692
|
createMicrofrontendsGroupWithApplications
|
|
7693
7693
|
},
|
|
7694
|
-
|
|
7694
|
+
observability: {
|
|
7695
7695
|
getObservabilityConfigurationProjects,
|
|
7696
7696
|
updateObservabilityConfigurationProject
|
|
7697
7697
|
},
|
|
@@ -7787,21 +7787,17 @@ const operationsByTag = {
|
|
|
7787
7787
|
},
|
|
7788
7788
|
security: {
|
|
7789
7789
|
updateAttackChallengeMode,
|
|
7790
|
+
getSecurityFirewallConfig,
|
|
7790
7791
|
putFirewallConfig,
|
|
7791
7792
|
updateFirewallConfig,
|
|
7792
7793
|
getFirewallConfig,
|
|
7794
|
+
deleteSecurityFirewallConfigByConfigVersion,
|
|
7795
|
+
createSecurityFirewallConfigByConfigVersionActivate,
|
|
7793
7796
|
getActiveAttackStatus,
|
|
7794
7797
|
getBypassIp,
|
|
7795
7798
|
addBypassIp,
|
|
7796
7799
|
removeBypassIp,
|
|
7797
|
-
getSecurityFirewallEvents
|
|
7798
|
-
},
|
|
7799
|
-
apiSecurity: {
|
|
7800
|
-
getSecurityFirewallConfig,
|
|
7801
|
-
deleteSecurityFirewallConfigByConfigVersion,
|
|
7802
|
-
createSecurityFirewallConfigByConfigVersionActivate
|
|
7803
|
-
},
|
|
7804
|
-
firewall: {
|
|
7800
|
+
getSecurityFirewallEvents,
|
|
7805
7801
|
generateFirewallRule
|
|
7806
7802
|
},
|
|
7807
7803
|
teams: {
|
|
@@ -7883,7 +7879,7 @@ const tagDictionary = {
|
|
|
7883
7879
|
"updateAccessGroupProject"
|
|
7884
7880
|
]
|
|
7885
7881
|
},
|
|
7886
|
-
|
|
7882
|
+
aiGateway: {
|
|
7887
7883
|
POST: [
|
|
7888
7884
|
"createAiGatewayRule"
|
|
7889
7885
|
],
|
|
@@ -8136,7 +8132,7 @@ const tagDictionary = {
|
|
|
8136
8132
|
"dangerouslyDeleteBySrcImages"
|
|
8137
8133
|
]
|
|
8138
8134
|
},
|
|
8139
|
-
|
|
8135
|
+
globalConfig: {
|
|
8140
8136
|
GET: [
|
|
8141
8137
|
"getEdgeConfigs",
|
|
8142
8138
|
"getEdgeConfig",
|
|
@@ -8240,7 +8236,7 @@ const tagDictionary = {
|
|
|
8240
8236
|
"getIntegrationResources",
|
|
8241
8237
|
"getIntegrationResource",
|
|
8242
8238
|
"getInvoice",
|
|
8243
|
-
"
|
|
8239
|
+
"getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
|
|
8244
8240
|
],
|
|
8245
8241
|
POST: [
|
|
8246
8242
|
"createEvent",
|
|
@@ -8260,7 +8256,7 @@ const tagDictionary = {
|
|
|
8260
8256
|
"importResource",
|
|
8261
8257
|
"updateResourceSecrets",
|
|
8262
8258
|
"updateResourceSecretsById",
|
|
8263
|
-
"
|
|
8259
|
+
"replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig"
|
|
8264
8260
|
]
|
|
8265
8261
|
},
|
|
8266
8262
|
authentication: {
|
|
@@ -8292,7 +8288,7 @@ const tagDictionary = {
|
|
|
8292
8288
|
"createMicrofrontendsGroupWithApplications"
|
|
8293
8289
|
]
|
|
8294
8290
|
},
|
|
8295
|
-
|
|
8291
|
+
observability: {
|
|
8296
8292
|
GET: [
|
|
8297
8293
|
"getObservabilityConfigurationProjects"
|
|
8298
8294
|
],
|
|
@@ -8437,38 +8433,26 @@ const tagDictionary = {
|
|
|
8437
8433
|
security: {
|
|
8438
8434
|
POST: [
|
|
8439
8435
|
"updateAttackChallengeMode",
|
|
8440
|
-
"
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
"putFirewallConfig"
|
|
8444
|
-
],
|
|
8445
|
-
PATCH: [
|
|
8446
|
-
"updateFirewallConfig"
|
|
8436
|
+
"createSecurityFirewallConfigByConfigVersionActivate",
|
|
8437
|
+
"addBypassIp",
|
|
8438
|
+
"generateFirewallRule"
|
|
8447
8439
|
],
|
|
8448
8440
|
GET: [
|
|
8441
|
+
"getSecurityFirewallConfig",
|
|
8449
8442
|
"getFirewallConfig",
|
|
8450
8443
|
"getActiveAttackStatus",
|
|
8451
8444
|
"getBypassIp",
|
|
8452
8445
|
"getSecurityFirewallEvents"
|
|
8453
8446
|
],
|
|
8454
|
-
|
|
8455
|
-
"
|
|
8456
|
-
]
|
|
8457
|
-
},
|
|
8458
|
-
apiSecurity: {
|
|
8459
|
-
GET: [
|
|
8460
|
-
"getSecurityFirewallConfig"
|
|
8447
|
+
PUT: [
|
|
8448
|
+
"putFirewallConfig"
|
|
8461
8449
|
],
|
|
8462
|
-
|
|
8463
|
-
"
|
|
8450
|
+
PATCH: [
|
|
8451
|
+
"updateFirewallConfig"
|
|
8464
8452
|
],
|
|
8465
|
-
|
|
8466
|
-
"
|
|
8467
|
-
|
|
8468
|
-
},
|
|
8469
|
-
firewall: {
|
|
8470
|
-
POST: [
|
|
8471
|
-
"generateFirewallRule"
|
|
8453
|
+
DELETE: [
|
|
8454
|
+
"deleteSecurityFirewallConfigByConfigVersion",
|
|
8455
|
+
"removeBypassIp"
|
|
8472
8456
|
]
|
|
8473
8457
|
},
|
|
8474
8458
|
teams: {
|
|
@@ -8567,4 +8551,4 @@ const tagDictionary = {
|
|
|
8567
8551
|
}
|
|
8568
8552
|
};
|
|
8569
8553
|
|
|
8570
|
-
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxes, createSandboxesByNameFork, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings,
|
|
8554
|
+
export { acceptProjectTransferRequest, addBypassIp, addProjectDomain, addProjectMember, addRoute, aggregateEvents, aggregatePageviews, approveRollingReleaseStage, artifactQuery, assignAlias, batchRemoveProjectEnv, buyCredits, buyDomains, buySingleDomain, cancelDeployment, claimDomainOwnership, completeRollingRelease, connectIntegrationResourceToProject, countEvents, countPageviews, createAccessGroup, createAccessGroupProject, createAiGatewayRule, createApiKeys, createAuthToken, createCheck, createConfigurableLogDrain, createConnector, createConnectorAuthorizationRequest, createConnectorInstallationRequest, createCustomEnvironment, createDeployment, createDeploymentCheckRun, createDrain, createEdgeConfig, createEdgeConfigToken, createEvent, createFlag, createFlagSegment, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems, createIntegrationStoreDirect, createLogDrain, createMicrofrontendsGroupWithApplications, createNetwork, createObservabilityQuery, createOrTransferDomain, createProject, createProjectCheck, createProjectEnv, createProjectTransferRequest, createRecord, createRepository, createSandboxes, createSandboxesByNameFork, createSdkKey, createSecurityFirewallConfigByConfigVersionActivate, createSessionDirectory, createSessionSnapshot, createSharedEnvVariable, createSpeedInsightsToggle, createStorageStoresBlob, createTeam, createTraceSession, createWebInsightsToggle, createWebhook, dangerouslyDeleteBySrcImages, dangerouslyDeleteByTags, deleteAccessGroup, deleteAccessGroupProject, deleteAiGatewayRule, deleteAlias, deleteAllArtifacts, deleteAuthToken, deleteConfigurableLogDrain, deleteConfiguration, deleteDeployment, deleteDomain, deleteDrain, deleteDrive, deleteEdgeConfig, deleteEdgeConfigSchema, deleteEdgeConfigTokens, deleteFlag, deleteFlagSegment, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, deleteIntegrationLogDrain, deleteIntegrationResource, deleteMicrofrontendsGroup, deleteNetwork, deleteProject, deleteProjectCheck, deleteRedirects, deleteRepository, deleteRepositoryImage, deleteRollingReleaseConfig, deleteRoutes, deleteSandbox, deleteSdkKey, deleteSecurityFirewallConfigByConfigVersion, deleteSessionSnapshot, deleteSharedEnvVariable, deleteStorageStoresBlobById, deleteTeam, deleteTeamInviteCode, deleteWebhook, downloadArtifact, editProjectEnv, editRedirect, editRoute, exchangeSsoToken, extendSessionTimeout, filterProjectEnvs, finalizeInstallation, generateFirewallRule, generateRoute, getAccountInfo, getActiveAttackStatus, getAlias, getAllChecks, getAllLogDrains, getAuthToken, getAuthUser, getBillingPlans, getBulkAvailability, getBypassIp, getCertById, getCerts, getCheck, getConfigurableLogDrain, getConfiguration, getConfigurationProducts, getConfigurations, getConnectorToken, getContactInfoSchema, getCustomEnvironment, getDeployment, getDeploymentCheckRun, getDeploymentEvents, getDeploymentFeatureFlags, getDeploymentFileContents, getDeployments, getDomain, getDomainAuthCode, getDomainAvailability, getDomainConfig, getDomainContactVerification, getDomainPrice, getDomainProjectDomains, getDomainTransferIn, getDomainVerificationRecord, getDomains, getDomainsRecordsByRecordId, getDrain, getDrains, getEdgeConfig, getEdgeConfigBackup, getEdgeConfigBackups, getEdgeConfigItem, getEdgeConfigItems, getEdgeConfigSchema, getEdgeConfigToken, getEdgeConfigTokens, getEdgeConfigs, getFirewallConfig, getFlag, getFlagSegment, getFlagSettings, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, getIntegrationLogDrains, getIntegrationResource, getIntegrationResources, getInvoice, getMember, getMicrofrontendsConfig, getMicrofrontendsConfigForProject, getMicrofrontendsGroups, getMicrofrontendsInGroup, getNamedSandbox, getObservabilityConfigurationProjects, getObservabilitySchema, getObservabilitySchemaByMetricId, getOrCreateDrive, getOrder, getProject, getProjectCheck, getProjectDomain, getProjectDomains, getProjectEnv, getProjectMembers, getProjectToken, getProjectTrace, getProjects, getProjectsByIdOrNameCustomEnvironments, getRecords, getRedirects, getRepository, getRepositoryImage, getRepositoryTag, getRollingRelease, getRollingReleaseBillingStatus, getRollingReleaseConfig, getRouteVersions, getRoutes, getRuntimeLogs, getSdkKeys, getSecurityFirewallConfig, getSecurityFirewallEvents, getSession, getSessionCommand, getSessionCommandLogs, getSessionSnapshot, getSharedEnvVar, getStorageStoresById, getSupportedTlds, getTeam, getTeamAccessRequest, getTeamMembers, getTeams, getTld, getTldPrice, getVersions, getWebhook, getWebhooks, gitNamespaces, importConnectorTokens, importResource, invalidateBySrcImages, invalidateByTags, inviteUserToTeam, issueCert, joinTeam, killSessionCommand, listAccessGroupMembers, listAccessGroupProjects, listAccessGroups, listAiGatewayRules, listAliases, listAuthTokens, listBillingCharges, listCheckRuns, listContractCommitments, listDeploymentAliases, listDeploymentCheckRuns, listDeploymentFiles, listDrives, listEventTypes, listFlagSegments, listFlagVersions, listFlags, listFlagsV2, listNetworks, listProjectChecks, listPromoteAliases, listRepositories, listRepositoryImages, listRepositoryTags, listSandboxes, listSessionCommands, listSessionSnapshots, listSessions, listSharedEnvVariable, listTeamFlagSettings, listTeamFlags, listTeamFlagsV2, listUserEvents, moveProjectDomain, operationsByPath, operationsByTag, patchDomain, patchEdgeConfigItems, patchEdgeConfigSchema, patchTeam, patchUrlProtectionBypass, pauseProject, postTeamDsyncRoles, putFirewallConfig, readAccessGroup, readAccessGroupProject, readNetwork, readSessionFile, recordEvents, removeBypassIp, removeCert, removeCustomEnvironment, removeProjectDomain, removeProjectEnv, removeProjectMember, removeRecord, removeTeamMember, renewDomain, replaceDomainsByDomainRecords, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig, requestAccessToTeam, requestDelete, requestPromote, requestRollback, rerequestCheck, restoreEdgeConfigBackup, restoreRedirects, runSessionCommand, searchRepo, stageRedirects, stageRoutes, startRollingRelease, status, stopSession, submitBillingData, submitInvoice, submitPrepaymentBalances, tagDictionary, testDrain, transferInDomain, unlinkSharedEnvVariable, unpauseProject, updateAccessGroup, updateAccessGroupProject, updateAiGatewayRule, updateAttackChallengeMode, updateCheck, updateCustomEnvironment, updateDeploymentCheckRun, updateDomainAutoRenew, updateDomainNameservers, updateDrain, updateEdgeConfig, updateFirewallConfig, updateFlag, updateFlagSegment, updateFlagSettings, updateInstallation, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId, updateIntegrationDeploymentAction, updateInvoice, updateMicrofrontends, updateMicrofrontendsGroup, updateNetwork, updateObservabilityConfigurationProject, updateProject, updateProjectCheck, updateProjectDomain, updateProjectProtectionBypass, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription, updateRecord, updateResource, updateResourceSecrets, updateResourceSecretsById, updateRollingReleaseConfig, updateRouteVersions, updateSandbox, updateSessionNetworkPolicy, updateSharedEnvVariable, updateStaticIps, updateTeamMember, updateVersion, uploadArtifact, uploadCert, uploadFile, uploadProjectAvatar, verifyProjectDomain, writeSessionFiles };
|