waldur-js-client 7.7.5-dev.6 → 7.7.5-dev.8
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/sdk.gen.d.ts +285 -277
- package/dist/sdk.gen.js +1492 -1397
- package/dist/types.gen.d.ts +1105 -927
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1303,15 +1303,22 @@ export type CategorySerializerForForNestedFields = {
|
|
|
1303
1303
|
export type CategorySerializerForForNestedFieldsRequest = {
|
|
1304
1304
|
title: string;
|
|
1305
1305
|
};
|
|
1306
|
-
export type
|
|
1306
|
+
export type Checklist = {
|
|
1307
1307
|
readonly uuid: string;
|
|
1308
1308
|
readonly url: string;
|
|
1309
1309
|
name: string;
|
|
1310
1310
|
description?: string;
|
|
1311
|
+
/**
|
|
1312
|
+
* Type of compliance this checklist addresses
|
|
1313
|
+
*/
|
|
1314
|
+
checklist_type?: ChecklistTypeEnum;
|
|
1311
1315
|
readonly questions_count: number;
|
|
1312
1316
|
readonly category_name: string;
|
|
1313
1317
|
readonly category_uuid: string;
|
|
1314
|
-
|
|
1318
|
+
/**
|
|
1319
|
+
* Category of the checklist
|
|
1320
|
+
*/
|
|
1321
|
+
category?: string | null;
|
|
1315
1322
|
};
|
|
1316
1323
|
export type ChecklistCategory = {
|
|
1317
1324
|
readonly uuid: string;
|
|
@@ -1321,6 +1328,11 @@ export type ChecklistCategory = {
|
|
|
1321
1328
|
description?: string;
|
|
1322
1329
|
readonly checklists_count: number;
|
|
1323
1330
|
};
|
|
1331
|
+
export type ChecklistCategoryRequest = {
|
|
1332
|
+
icon?: (Blob | File) | null;
|
|
1333
|
+
name: string;
|
|
1334
|
+
description?: string;
|
|
1335
|
+
};
|
|
1324
1336
|
export type ChecklistCompletion = {
|
|
1325
1337
|
readonly uuid: string;
|
|
1326
1338
|
/**
|
|
@@ -1362,6 +1374,19 @@ export type ChecklistCompletionReviewer = {
|
|
|
1362
1374
|
review_notes?: string;
|
|
1363
1375
|
readonly review_trigger_summary: Array<unknown>;
|
|
1364
1376
|
};
|
|
1377
|
+
export type ChecklistOperators = 'equals' | 'not_equals' | 'contains' | 'in' | 'not_in';
|
|
1378
|
+
export type ChecklistRequest = {
|
|
1379
|
+
name: string;
|
|
1380
|
+
description?: string;
|
|
1381
|
+
/**
|
|
1382
|
+
* Type of compliance this checklist addresses
|
|
1383
|
+
*/
|
|
1384
|
+
checklist_type?: ChecklistTypeEnum;
|
|
1385
|
+
/**
|
|
1386
|
+
* Category of the checklist
|
|
1387
|
+
*/
|
|
1388
|
+
category?: string | null;
|
|
1389
|
+
};
|
|
1365
1390
|
export type ChecklistResponse = {
|
|
1366
1391
|
readonly checklist: {
|
|
1367
1392
|
[key: string]: unknown;
|
|
@@ -1871,21 +1896,6 @@ export type CountryEnum = 'AL' | 'AT' | 'BE' | 'BG' | 'BA' | 'CH' | 'CY' | 'CZ'
|
|
|
1871
1896
|
export type CreateAttachmentsRequest = {
|
|
1872
1897
|
attachments: Array<Blob | File>;
|
|
1873
1898
|
};
|
|
1874
|
-
export type CreateChecklist = {
|
|
1875
|
-
readonly uuid: string;
|
|
1876
|
-
readonly url: string;
|
|
1877
|
-
name: string;
|
|
1878
|
-
description?: string;
|
|
1879
|
-
readonly questions_count: number;
|
|
1880
|
-
readonly category_name: string;
|
|
1881
|
-
readonly category_uuid: string;
|
|
1882
|
-
checklist_type: ChecklistTypeEnum;
|
|
1883
|
-
};
|
|
1884
|
-
export type CreateChecklistRequest = {
|
|
1885
|
-
name: string;
|
|
1886
|
-
description?: string;
|
|
1887
|
-
checklist_type: ChecklistTypeEnum;
|
|
1888
|
-
};
|
|
1889
1899
|
export type CreateCustomerCredit = {
|
|
1890
1900
|
readonly uuid: string;
|
|
1891
1901
|
readonly url: string;
|
|
@@ -6189,7 +6199,6 @@ export type OpenStackVolumeType = {
|
|
|
6189
6199
|
description?: string;
|
|
6190
6200
|
settings: string;
|
|
6191
6201
|
};
|
|
6192
|
-
export type OperatorEnum = 'equals' | 'not_equals' | 'contains' | 'in' | 'not_in';
|
|
6193
6202
|
export type OptionField = {
|
|
6194
6203
|
type: OptionFieldTypeEnum;
|
|
6195
6204
|
label: string;
|
|
@@ -6525,6 +6534,23 @@ export type PatchedCategoryHelpArticlesRequest = {
|
|
|
6525
6534
|
url?: string;
|
|
6526
6535
|
categories?: Array<CategorySerializerForForNestedFieldsRequest>;
|
|
6527
6536
|
};
|
|
6537
|
+
export type PatchedChecklistCategoryRequest = {
|
|
6538
|
+
icon?: (Blob | File) | null;
|
|
6539
|
+
name?: string;
|
|
6540
|
+
description?: string;
|
|
6541
|
+
};
|
|
6542
|
+
export type PatchedChecklistRequest = {
|
|
6543
|
+
name?: string;
|
|
6544
|
+
description?: string;
|
|
6545
|
+
/**
|
|
6546
|
+
* Type of compliance this checklist addresses
|
|
6547
|
+
*/
|
|
6548
|
+
checklist_type?: ChecklistTypeEnum;
|
|
6549
|
+
/**
|
|
6550
|
+
* Category of the checklist
|
|
6551
|
+
*/
|
|
6552
|
+
category?: string | null;
|
|
6553
|
+
};
|
|
6528
6554
|
export type PatchedClusterSecurityGroupRequest = {
|
|
6529
6555
|
rules?: Array<RancherClusterSecurityGroupRuleRequest>;
|
|
6530
6556
|
};
|
|
@@ -6538,11 +6564,6 @@ export type PatchedComponentUserUsageLimitRequest = {
|
|
|
6538
6564
|
user?: string;
|
|
6539
6565
|
limit?: string;
|
|
6540
6566
|
};
|
|
6541
|
-
export type PatchedCreateChecklistRequest = {
|
|
6542
|
-
name?: string;
|
|
6543
|
-
description?: string;
|
|
6544
|
-
checklist_type?: ChecklistTypeEnum;
|
|
6545
|
-
};
|
|
6546
6567
|
export type PatchedCreateCustomerCreditRequest = {
|
|
6547
6568
|
value?: string;
|
|
6548
6569
|
customer?: string;
|
|
@@ -7031,7 +7052,10 @@ export type PatchedProviderPlanDetailsRequest = {
|
|
|
7031
7052
|
};
|
|
7032
7053
|
export type PatchedQuestionAdminRequest = {
|
|
7033
7054
|
description?: string;
|
|
7034
|
-
|
|
7055
|
+
/**
|
|
7056
|
+
* Additional guidance text visible to users when answering and reviewing
|
|
7057
|
+
*/
|
|
7058
|
+
user_guidance?: string;
|
|
7035
7059
|
checklist?: string;
|
|
7036
7060
|
order?: number;
|
|
7037
7061
|
required?: boolean;
|
|
@@ -7039,7 +7063,7 @@ export type PatchedQuestionAdminRequest = {
|
|
|
7039
7063
|
* Type of question and expected answer format
|
|
7040
7064
|
*/
|
|
7041
7065
|
question_type?: QuestionTypeEnum;
|
|
7042
|
-
operator?:
|
|
7066
|
+
operator?: ChecklistOperators | BlankEnum;
|
|
7043
7067
|
/**
|
|
7044
7068
|
* Answer value that trigger review.
|
|
7045
7069
|
*/
|
|
@@ -7048,6 +7072,26 @@ export type PatchedQuestionAdminRequest = {
|
|
|
7048
7072
|
* This question always requires review regardless of answer
|
|
7049
7073
|
*/
|
|
7050
7074
|
always_requires_review?: boolean;
|
|
7075
|
+
/**
|
|
7076
|
+
* Answer value that triggers display of user guidance.
|
|
7077
|
+
*/
|
|
7078
|
+
guidance_answer_value?: unknown;
|
|
7079
|
+
/**
|
|
7080
|
+
* Operator to use when comparing answer with guidance_answer_value
|
|
7081
|
+
*/
|
|
7082
|
+
guidance_operator?: ChecklistOperators | BlankEnum;
|
|
7083
|
+
/**
|
|
7084
|
+
* Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
|
|
7085
|
+
*/
|
|
7086
|
+
always_show_guidance?: boolean;
|
|
7087
|
+
/**
|
|
7088
|
+
* Minimum value allowed for NUMBER type questions
|
|
7089
|
+
*/
|
|
7090
|
+
min_value?: string | null;
|
|
7091
|
+
/**
|
|
7092
|
+
* Maximum value allowed for NUMBER type questions
|
|
7093
|
+
*/
|
|
7094
|
+
max_value?: string | null;
|
|
7051
7095
|
};
|
|
7052
7096
|
export type PatchedQuestionDependencyRequest = {
|
|
7053
7097
|
question?: string;
|
|
@@ -7056,7 +7100,7 @@ export type PatchedQuestionDependencyRequest = {
|
|
|
7056
7100
|
* The answer value(s) that make this question visible
|
|
7057
7101
|
*/
|
|
7058
7102
|
required_answer_value?: unknown;
|
|
7059
|
-
operator?:
|
|
7103
|
+
operator?: ChecklistOperators;
|
|
7060
7104
|
};
|
|
7061
7105
|
export type PatchedQuestionOptionsAdminRequest = {
|
|
7062
7106
|
label?: string;
|
|
@@ -8390,7 +8434,10 @@ export type QueryRequest = {
|
|
|
8390
8434
|
export type QuestionAdmin = {
|
|
8391
8435
|
readonly uuid: string;
|
|
8392
8436
|
description?: string;
|
|
8393
|
-
|
|
8437
|
+
/**
|
|
8438
|
+
* Additional guidance text visible to users when answering and reviewing
|
|
8439
|
+
*/
|
|
8440
|
+
user_guidance?: string;
|
|
8394
8441
|
readonly question_options: Array<QuestionOptionsAdmin>;
|
|
8395
8442
|
readonly url: string;
|
|
8396
8443
|
readonly checklist_name: string;
|
|
@@ -8402,7 +8449,7 @@ export type QuestionAdmin = {
|
|
|
8402
8449
|
* Type of question and expected answer format
|
|
8403
8450
|
*/
|
|
8404
8451
|
question_type?: QuestionTypeEnum;
|
|
8405
|
-
operator?:
|
|
8452
|
+
operator?: ChecklistOperators | BlankEnum;
|
|
8406
8453
|
/**
|
|
8407
8454
|
* Answer value that trigger review.
|
|
8408
8455
|
*/
|
|
@@ -8411,10 +8458,33 @@ export type QuestionAdmin = {
|
|
|
8411
8458
|
* This question always requires review regardless of answer
|
|
8412
8459
|
*/
|
|
8413
8460
|
always_requires_review?: boolean;
|
|
8461
|
+
/**
|
|
8462
|
+
* Answer value that triggers display of user guidance.
|
|
8463
|
+
*/
|
|
8464
|
+
guidance_answer_value?: unknown;
|
|
8465
|
+
/**
|
|
8466
|
+
* Operator to use when comparing answer with guidance_answer_value
|
|
8467
|
+
*/
|
|
8468
|
+
guidance_operator?: ChecklistOperators | BlankEnum;
|
|
8469
|
+
/**
|
|
8470
|
+
* Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
|
|
8471
|
+
*/
|
|
8472
|
+
always_show_guidance?: boolean;
|
|
8473
|
+
/**
|
|
8474
|
+
* Minimum value allowed for NUMBER type questions
|
|
8475
|
+
*/
|
|
8476
|
+
min_value?: string | null;
|
|
8477
|
+
/**
|
|
8478
|
+
* Maximum value allowed for NUMBER type questions
|
|
8479
|
+
*/
|
|
8480
|
+
max_value?: string | null;
|
|
8414
8481
|
};
|
|
8415
8482
|
export type QuestionAdminRequest = {
|
|
8416
8483
|
description?: string;
|
|
8417
|
-
|
|
8484
|
+
/**
|
|
8485
|
+
* Additional guidance text visible to users when answering and reviewing
|
|
8486
|
+
*/
|
|
8487
|
+
user_guidance?: string;
|
|
8418
8488
|
checklist: string;
|
|
8419
8489
|
order?: number;
|
|
8420
8490
|
required?: boolean;
|
|
@@ -8422,7 +8492,7 @@ export type QuestionAdminRequest = {
|
|
|
8422
8492
|
* Type of question and expected answer format
|
|
8423
8493
|
*/
|
|
8424
8494
|
question_type?: QuestionTypeEnum;
|
|
8425
|
-
operator?:
|
|
8495
|
+
operator?: ChecklistOperators | BlankEnum;
|
|
8426
8496
|
/**
|
|
8427
8497
|
* Answer value that trigger review.
|
|
8428
8498
|
*/
|
|
@@ -8431,6 +8501,26 @@ export type QuestionAdminRequest = {
|
|
|
8431
8501
|
* This question always requires review regardless of answer
|
|
8432
8502
|
*/
|
|
8433
8503
|
always_requires_review?: boolean;
|
|
8504
|
+
/**
|
|
8505
|
+
* Answer value that triggers display of user guidance.
|
|
8506
|
+
*/
|
|
8507
|
+
guidance_answer_value?: unknown;
|
|
8508
|
+
/**
|
|
8509
|
+
* Operator to use when comparing answer with guidance_answer_value
|
|
8510
|
+
*/
|
|
8511
|
+
guidance_operator?: ChecklistOperators | BlankEnum;
|
|
8512
|
+
/**
|
|
8513
|
+
* Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
|
|
8514
|
+
*/
|
|
8515
|
+
always_show_guidance?: boolean;
|
|
8516
|
+
/**
|
|
8517
|
+
* Minimum value allowed for NUMBER type questions
|
|
8518
|
+
*/
|
|
8519
|
+
min_value?: string | null;
|
|
8520
|
+
/**
|
|
8521
|
+
* Maximum value allowed for NUMBER type questions
|
|
8522
|
+
*/
|
|
8523
|
+
max_value?: string | null;
|
|
8434
8524
|
};
|
|
8435
8525
|
export type QuestionDependency = {
|
|
8436
8526
|
readonly uuid: string;
|
|
@@ -8443,7 +8533,7 @@ export type QuestionDependency = {
|
|
|
8443
8533
|
* The answer value(s) that make this question visible
|
|
8444
8534
|
*/
|
|
8445
8535
|
required_answer_value: unknown;
|
|
8446
|
-
operator?:
|
|
8536
|
+
operator?: ChecklistOperators;
|
|
8447
8537
|
};
|
|
8448
8538
|
export type QuestionDependencyRequest = {
|
|
8449
8539
|
question: string;
|
|
@@ -8452,7 +8542,7 @@ export type QuestionDependencyRequest = {
|
|
|
8452
8542
|
* The answer value(s) that make this question visible
|
|
8453
8543
|
*/
|
|
8454
8544
|
required_answer_value: unknown;
|
|
8455
|
-
operator?:
|
|
8545
|
+
operator?: ChecklistOperators;
|
|
8456
8546
|
};
|
|
8457
8547
|
export type QuestionOptionsAdmin = {
|
|
8458
8548
|
readonly uuid: string;
|
|
@@ -8471,6 +8561,7 @@ export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 't
|
|
|
8471
8561
|
export type QuestionWithAnswer = {
|
|
8472
8562
|
readonly uuid: string;
|
|
8473
8563
|
readonly description: string;
|
|
8564
|
+
readonly user_guidance: string | null;
|
|
8474
8565
|
/**
|
|
8475
8566
|
* Type of question and expected answer format
|
|
8476
8567
|
*/
|
|
@@ -8481,10 +8572,19 @@ export type QuestionWithAnswer = {
|
|
|
8481
8572
|
[key: string]: unknown;
|
|
8482
8573
|
} | null;
|
|
8483
8574
|
readonly question_options: Array<unknown> | null;
|
|
8575
|
+
/**
|
|
8576
|
+
* Minimum value allowed for NUMBER type questions
|
|
8577
|
+
*/
|
|
8578
|
+
readonly min_value: string | null;
|
|
8579
|
+
/**
|
|
8580
|
+
* Maximum value allowed for NUMBER type questions
|
|
8581
|
+
*/
|
|
8582
|
+
readonly max_value: string | null;
|
|
8484
8583
|
};
|
|
8485
8584
|
export type QuestionWithAnswerReviewer = {
|
|
8486
8585
|
readonly uuid: string;
|
|
8487
8586
|
readonly description: string;
|
|
8587
|
+
readonly user_guidance: string | null;
|
|
8488
8588
|
/**
|
|
8489
8589
|
* Type of question and expected answer format
|
|
8490
8590
|
*/
|
|
@@ -8495,7 +8595,15 @@ export type QuestionWithAnswerReviewer = {
|
|
|
8495
8595
|
[key: string]: unknown;
|
|
8496
8596
|
} | null;
|
|
8497
8597
|
readonly question_options: Array<unknown> | null;
|
|
8498
|
-
|
|
8598
|
+
/**
|
|
8599
|
+
* Minimum value allowed for NUMBER type questions
|
|
8600
|
+
*/
|
|
8601
|
+
readonly min_value: string | null;
|
|
8602
|
+
/**
|
|
8603
|
+
* Maximum value allowed for NUMBER type questions
|
|
8604
|
+
*/
|
|
8605
|
+
readonly max_value: string | null;
|
|
8606
|
+
operator?: ChecklistOperators | BlankEnum;
|
|
8499
8607
|
/**
|
|
8500
8608
|
* Answer value that trigger review.
|
|
8501
8609
|
*/
|
|
@@ -11137,7 +11245,7 @@ export type AccessSubnetsListResponses = {
|
|
|
11137
11245
|
200: Array<AccessSubnet>;
|
|
11138
11246
|
};
|
|
11139
11247
|
export type AccessSubnetsListResponse = AccessSubnetsListResponses[keyof AccessSubnetsListResponses];
|
|
11140
|
-
export type
|
|
11248
|
+
export type AccessSubnetsCountData = {
|
|
11141
11249
|
body?: never;
|
|
11142
11250
|
path?: never;
|
|
11143
11251
|
query?: {
|
|
@@ -11156,7 +11264,7 @@ export type AccessSubnetsHeadData = {
|
|
|
11156
11264
|
};
|
|
11157
11265
|
url: '/api/access-subnets/';
|
|
11158
11266
|
};
|
|
11159
|
-
export type
|
|
11267
|
+
export type AccessSubnetsCountResponses = {
|
|
11160
11268
|
/**
|
|
11161
11269
|
* No response body
|
|
11162
11270
|
*/
|
|
@@ -11252,7 +11360,7 @@ export type AdminAnnouncementsListResponses = {
|
|
|
11252
11360
|
200: Array<AdminAnnouncement>;
|
|
11253
11361
|
};
|
|
11254
11362
|
export type AdminAnnouncementsListResponse = AdminAnnouncementsListResponses[keyof AdminAnnouncementsListResponses];
|
|
11255
|
-
export type
|
|
11363
|
+
export type AdminAnnouncementsCountData = {
|
|
11256
11364
|
body?: never;
|
|
11257
11365
|
path?: never;
|
|
11258
11366
|
query?: {
|
|
@@ -11276,7 +11384,7 @@ export type AdminAnnouncementsHeadData = {
|
|
|
11276
11384
|
};
|
|
11277
11385
|
url: '/api/admin-announcements/';
|
|
11278
11386
|
};
|
|
11279
|
-
export type
|
|
11387
|
+
export type AdminAnnouncementsCountResponses = {
|
|
11280
11388
|
/**
|
|
11281
11389
|
* No response body
|
|
11282
11390
|
*/
|
|
@@ -11364,7 +11472,7 @@ export type AuthTokensListResponses = {
|
|
|
11364
11472
|
200: Array<AuthToken>;
|
|
11365
11473
|
};
|
|
11366
11474
|
export type AuthTokensListResponse = AuthTokensListResponses[keyof AuthTokensListResponses];
|
|
11367
|
-
export type
|
|
11475
|
+
export type AuthTokensCountData = {
|
|
11368
11476
|
body?: never;
|
|
11369
11477
|
path?: never;
|
|
11370
11478
|
query?: {
|
|
@@ -11379,7 +11487,7 @@ export type AuthTokensHeadData = {
|
|
|
11379
11487
|
};
|
|
11380
11488
|
url: '/api/auth-tokens/';
|
|
11381
11489
|
};
|
|
11382
|
-
export type
|
|
11490
|
+
export type AuthTokensCountResponses = {
|
|
11383
11491
|
/**
|
|
11384
11492
|
* No response body
|
|
11385
11493
|
*/
|
|
@@ -11451,7 +11559,7 @@ export type AutoprovisioningRulesListResponses = {
|
|
|
11451
11559
|
200: Array<Rule>;
|
|
11452
11560
|
};
|
|
11453
11561
|
export type AutoprovisioningRulesListResponse = AutoprovisioningRulesListResponses[keyof AutoprovisioningRulesListResponses];
|
|
11454
|
-
export type
|
|
11562
|
+
export type AutoprovisioningRulesCountData = {
|
|
11455
11563
|
body?: never;
|
|
11456
11564
|
path?: never;
|
|
11457
11565
|
query?: {
|
|
@@ -11466,7 +11574,7 @@ export type AutoprovisioningRulesHeadData = {
|
|
|
11466
11574
|
};
|
|
11467
11575
|
url: '/api/autoprovisioning-rules/';
|
|
11468
11576
|
};
|
|
11469
|
-
export type
|
|
11577
|
+
export type AutoprovisioningRulesCountResponses = {
|
|
11470
11578
|
/**
|
|
11471
11579
|
* No response body
|
|
11472
11580
|
*/
|
|
@@ -11555,7 +11663,7 @@ export type AwsImagesListResponses = {
|
|
|
11555
11663
|
200: Array<AwsImage>;
|
|
11556
11664
|
};
|
|
11557
11665
|
export type AwsImagesListResponse = AwsImagesListResponses[keyof AwsImagesListResponses];
|
|
11558
|
-
export type
|
|
11666
|
+
export type AwsImagesCountData = {
|
|
11559
11667
|
body?: never;
|
|
11560
11668
|
path?: never;
|
|
11561
11669
|
query?: {
|
|
@@ -11573,7 +11681,7 @@ export type AwsImagesHeadData = {
|
|
|
11573
11681
|
};
|
|
11574
11682
|
url: '/api/aws-images/';
|
|
11575
11683
|
};
|
|
11576
|
-
export type
|
|
11684
|
+
export type AwsImagesCountResponses = {
|
|
11577
11685
|
/**
|
|
11578
11686
|
* No response body
|
|
11579
11687
|
*/
|
|
@@ -11632,7 +11740,7 @@ export type AwsInstancesListResponses = {
|
|
|
11632
11740
|
200: Array<AwsInstance>;
|
|
11633
11741
|
};
|
|
11634
11742
|
export type AwsInstancesListResponse = AwsInstancesListResponses[keyof AwsInstancesListResponses];
|
|
11635
|
-
export type
|
|
11743
|
+
export type AwsInstancesCountData = {
|
|
11636
11744
|
body?: never;
|
|
11637
11745
|
path?: never;
|
|
11638
11746
|
query?: {
|
|
@@ -11668,7 +11776,7 @@ export type AwsInstancesHeadData = {
|
|
|
11668
11776
|
};
|
|
11669
11777
|
url: '/api/aws-instances/';
|
|
11670
11778
|
};
|
|
11671
|
-
export type
|
|
11779
|
+
export type AwsInstancesCountResponses = {
|
|
11672
11780
|
/**
|
|
11673
11781
|
* No response body
|
|
11674
11782
|
*/
|
|
@@ -11840,7 +11948,7 @@ export type AwsRegionsListResponses = {
|
|
|
11840
11948
|
200: Array<AwsRegion>;
|
|
11841
11949
|
};
|
|
11842
11950
|
export type AwsRegionsListResponse = AwsRegionsListResponses[keyof AwsRegionsListResponses];
|
|
11843
|
-
export type
|
|
11951
|
+
export type AwsRegionsCountData = {
|
|
11844
11952
|
body?: never;
|
|
11845
11953
|
path?: never;
|
|
11846
11954
|
query?: {
|
|
@@ -11857,7 +11965,7 @@ export type AwsRegionsHeadData = {
|
|
|
11857
11965
|
};
|
|
11858
11966
|
url: '/api/aws-regions/';
|
|
11859
11967
|
};
|
|
11860
|
-
export type
|
|
11968
|
+
export type AwsRegionsCountResponses = {
|
|
11861
11969
|
/**
|
|
11862
11970
|
* No response body
|
|
11863
11971
|
*/
|
|
@@ -11897,7 +12005,7 @@ export type AwsSizesListResponses = {
|
|
|
11897
12005
|
200: Array<AwsSize>;
|
|
11898
12006
|
};
|
|
11899
12007
|
export type AwsSizesListResponse = AwsSizesListResponses[keyof AwsSizesListResponses];
|
|
11900
|
-
export type
|
|
12008
|
+
export type AwsSizesCountData = {
|
|
11901
12009
|
body?: never;
|
|
11902
12010
|
path?: never;
|
|
11903
12011
|
query?: {
|
|
@@ -11915,7 +12023,7 @@ export type AwsSizesHeadData = {
|
|
|
11915
12023
|
};
|
|
11916
12024
|
url: '/api/aws-sizes/';
|
|
11917
12025
|
};
|
|
11918
|
-
export type
|
|
12026
|
+
export type AwsSizesCountResponses = {
|
|
11919
12027
|
/**
|
|
11920
12028
|
* No response body
|
|
11921
12029
|
*/
|
|
@@ -11953,7 +12061,7 @@ export type AwsVolumesListResponses = {
|
|
|
11953
12061
|
200: Array<AwsVolume>;
|
|
11954
12062
|
};
|
|
11955
12063
|
export type AwsVolumesListResponse = AwsVolumesListResponses[keyof AwsVolumesListResponses];
|
|
11956
|
-
export type
|
|
12064
|
+
export type AwsVolumesCountData = {
|
|
11957
12065
|
body?: never;
|
|
11958
12066
|
path?: never;
|
|
11959
12067
|
query?: {
|
|
@@ -11968,7 +12076,7 @@ export type AwsVolumesHeadData = {
|
|
|
11968
12076
|
};
|
|
11969
12077
|
url: '/api/aws-volumes/';
|
|
11970
12078
|
};
|
|
11971
|
-
export type
|
|
12079
|
+
export type AwsVolumesCountResponses = {
|
|
11972
12080
|
/**
|
|
11973
12081
|
* No response body
|
|
11974
12082
|
*/
|
|
@@ -12116,7 +12224,7 @@ export type AzureImagesListResponses = {
|
|
|
12116
12224
|
200: Array<AzureImage>;
|
|
12117
12225
|
};
|
|
12118
12226
|
export type AzureImagesListResponse = AzureImagesListResponses[keyof AzureImagesListResponses];
|
|
12119
|
-
export type
|
|
12227
|
+
export type AzureImagesCountData = {
|
|
12120
12228
|
body?: never;
|
|
12121
12229
|
path?: never;
|
|
12122
12230
|
query?: {
|
|
@@ -12137,7 +12245,7 @@ export type AzureImagesHeadData = {
|
|
|
12137
12245
|
};
|
|
12138
12246
|
url: '/api/azure-images/';
|
|
12139
12247
|
};
|
|
12140
|
-
export type
|
|
12248
|
+
export type AzureImagesCountResponses = {
|
|
12141
12249
|
/**
|
|
12142
12250
|
* No response body
|
|
12143
12251
|
*/
|
|
@@ -12179,7 +12287,7 @@ export type AzureLocationsListResponses = {
|
|
|
12179
12287
|
200: Array<AzureLocation>;
|
|
12180
12288
|
};
|
|
12181
12289
|
export type AzureLocationsListResponse = AzureLocationsListResponses[keyof AzureLocationsListResponses];
|
|
12182
|
-
export type
|
|
12290
|
+
export type AzureLocationsCountData = {
|
|
12183
12291
|
body?: never;
|
|
12184
12292
|
path?: never;
|
|
12185
12293
|
query?: {
|
|
@@ -12199,7 +12307,7 @@ export type AzureLocationsHeadData = {
|
|
|
12199
12307
|
};
|
|
12200
12308
|
url: '/api/azure-locations/';
|
|
12201
12309
|
};
|
|
12202
|
-
export type
|
|
12310
|
+
export type AzureLocationsCountResponses = {
|
|
12203
12311
|
/**
|
|
12204
12312
|
* No response body
|
|
12205
12313
|
*/
|
|
@@ -12260,7 +12368,7 @@ export type AzurePublicIpsListResponses = {
|
|
|
12260
12368
|
200: Array<AzurePublicIp>;
|
|
12261
12369
|
};
|
|
12262
12370
|
export type AzurePublicIpsListResponse = AzurePublicIpsListResponses[keyof AzurePublicIpsListResponses];
|
|
12263
|
-
export type
|
|
12371
|
+
export type AzurePublicIpsCountData = {
|
|
12264
12372
|
body?: never;
|
|
12265
12373
|
path?: never;
|
|
12266
12374
|
query?: {
|
|
@@ -12298,7 +12406,7 @@ export type AzurePublicIpsHeadData = {
|
|
|
12298
12406
|
};
|
|
12299
12407
|
url: '/api/azure-public-ips/';
|
|
12300
12408
|
};
|
|
12301
|
-
export type
|
|
12409
|
+
export type AzurePublicIpsCountResponses = {
|
|
12302
12410
|
/**
|
|
12303
12411
|
* No response body
|
|
12304
12412
|
*/
|
|
@@ -12415,7 +12523,7 @@ export type AzureResourceGroupsListResponses = {
|
|
|
12415
12523
|
200: Array<AzureResourceGroup>;
|
|
12416
12524
|
};
|
|
12417
12525
|
export type AzureResourceGroupsListResponse = AzureResourceGroupsListResponses[keyof AzureResourceGroupsListResponses];
|
|
12418
|
-
export type
|
|
12526
|
+
export type AzureResourceGroupsCountData = {
|
|
12419
12527
|
body?: never;
|
|
12420
12528
|
path?: never;
|
|
12421
12529
|
query?: {
|
|
@@ -12430,7 +12538,7 @@ export type AzureResourceGroupsHeadData = {
|
|
|
12430
12538
|
};
|
|
12431
12539
|
url: '/api/azure-resource-groups/';
|
|
12432
12540
|
};
|
|
12433
|
-
export type
|
|
12541
|
+
export type AzureResourceGroupsCountResponses = {
|
|
12434
12542
|
/**
|
|
12435
12543
|
* No response body
|
|
12436
12544
|
*/
|
|
@@ -12476,7 +12584,7 @@ export type AzureSizesListResponses = {
|
|
|
12476
12584
|
200: Array<AzureSize>;
|
|
12477
12585
|
};
|
|
12478
12586
|
export type AzureSizesListResponse = AzureSizesListResponses[keyof AzureSizesListResponses];
|
|
12479
|
-
export type
|
|
12587
|
+
export type AzureSizesCountData = {
|
|
12480
12588
|
body?: never;
|
|
12481
12589
|
path?: never;
|
|
12482
12590
|
query?: {
|
|
@@ -12498,7 +12606,7 @@ export type AzureSizesHeadData = {
|
|
|
12498
12606
|
};
|
|
12499
12607
|
url: '/api/azure-sizes/';
|
|
12500
12608
|
};
|
|
12501
|
-
export type
|
|
12609
|
+
export type AzureSizesCountResponses = {
|
|
12502
12610
|
/**
|
|
12503
12611
|
* No response body
|
|
12504
12612
|
*/
|
|
@@ -12561,7 +12669,7 @@ export type AzureSqlDatabasesListResponses = {
|
|
|
12561
12669
|
200: Array<AzureSqlDatabase>;
|
|
12562
12670
|
};
|
|
12563
12671
|
export type AzureSqlDatabasesListResponse = AzureSqlDatabasesListResponses[keyof AzureSqlDatabasesListResponses];
|
|
12564
|
-
export type
|
|
12672
|
+
export type AzureSqlDatabasesCountData = {
|
|
12565
12673
|
body?: never;
|
|
12566
12674
|
path?: never;
|
|
12567
12675
|
query?: {
|
|
@@ -12601,7 +12709,7 @@ export type AzureSqlDatabasesHeadData = {
|
|
|
12601
12709
|
};
|
|
12602
12710
|
url: '/api/azure-sql-databases/';
|
|
12603
12711
|
};
|
|
12604
|
-
export type
|
|
12712
|
+
export type AzureSqlDatabasesCountResponses = {
|
|
12605
12713
|
/**
|
|
12606
12714
|
* No response body
|
|
12607
12715
|
*/
|
|
@@ -12741,7 +12849,7 @@ export type AzureSqlServersListResponses = {
|
|
|
12741
12849
|
200: Array<AzureSqlServer>;
|
|
12742
12850
|
};
|
|
12743
12851
|
export type AzureSqlServersListResponse = AzureSqlServersListResponses[keyof AzureSqlServersListResponses];
|
|
12744
|
-
export type
|
|
12852
|
+
export type AzureSqlServersCountData = {
|
|
12745
12853
|
body?: never;
|
|
12746
12854
|
path?: never;
|
|
12747
12855
|
query?: {
|
|
@@ -12779,7 +12887,7 @@ export type AzureSqlServersHeadData = {
|
|
|
12779
12887
|
};
|
|
12780
12888
|
url: '/api/azure-sql-servers/';
|
|
12781
12889
|
};
|
|
12782
|
-
export type
|
|
12890
|
+
export type AzureSqlServersCountResponses = {
|
|
12783
12891
|
/**
|
|
12784
12892
|
* No response body
|
|
12785
12893
|
*/
|
|
@@ -12931,7 +13039,7 @@ export type AzureVirtualmachinesListResponses = {
|
|
|
12931
13039
|
200: Array<AzureVirtualMachine>;
|
|
12932
13040
|
};
|
|
12933
13041
|
export type AzureVirtualmachinesListResponse = AzureVirtualmachinesListResponses[keyof AzureVirtualmachinesListResponses];
|
|
12934
|
-
export type
|
|
13042
|
+
export type AzureVirtualmachinesCountData = {
|
|
12935
13043
|
body?: never;
|
|
12936
13044
|
path?: never;
|
|
12937
13045
|
query?: {
|
|
@@ -12969,7 +13077,7 @@ export type AzureVirtualmachinesHeadData = {
|
|
|
12969
13077
|
};
|
|
12970
13078
|
url: '/api/azure-virtualmachines/';
|
|
12971
13079
|
};
|
|
12972
|
-
export type
|
|
13080
|
+
export type AzureVirtualmachinesCountResponses = {
|
|
12973
13081
|
/**
|
|
12974
13082
|
* No response body
|
|
12975
13083
|
*/
|
|
@@ -13151,7 +13259,7 @@ export type BackendResourceRequestsListResponses = {
|
|
|
13151
13259
|
200: Array<BackendResourceReq>;
|
|
13152
13260
|
};
|
|
13153
13261
|
export type BackendResourceRequestsListResponse = BackendResourceRequestsListResponses[keyof BackendResourceRequestsListResponses];
|
|
13154
|
-
export type
|
|
13262
|
+
export type BackendResourceRequestsCountData = {
|
|
13155
13263
|
body?: never;
|
|
13156
13264
|
path?: never;
|
|
13157
13265
|
query?: {
|
|
@@ -13190,7 +13298,7 @@ export type BackendResourceRequestsHeadData = {
|
|
|
13190
13298
|
};
|
|
13191
13299
|
url: '/api/backend-resource-requests/';
|
|
13192
13300
|
};
|
|
13193
|
-
export type
|
|
13301
|
+
export type BackendResourceRequestsCountResponses = {
|
|
13194
13302
|
/**
|
|
13195
13303
|
* No response body
|
|
13196
13304
|
*/
|
|
@@ -13301,7 +13409,7 @@ export type BackendResourcesListResponses = {
|
|
|
13301
13409
|
200: Array<BackendResource>;
|
|
13302
13410
|
};
|
|
13303
13411
|
export type BackendResourcesListResponse = BackendResourcesListResponses[keyof BackendResourcesListResponses];
|
|
13304
|
-
export type
|
|
13412
|
+
export type BackendResourcesCountData = {
|
|
13305
13413
|
body?: never;
|
|
13306
13414
|
path?: never;
|
|
13307
13415
|
query?: {
|
|
@@ -13338,7 +13446,7 @@ export type BackendResourcesHeadData = {
|
|
|
13338
13446
|
};
|
|
13339
13447
|
url: '/api/backend-resources/';
|
|
13340
13448
|
};
|
|
13341
|
-
export type
|
|
13449
|
+
export type BackendResourcesCountResponses = {
|
|
13342
13450
|
/**
|
|
13343
13451
|
* No response body
|
|
13344
13452
|
*/
|
|
@@ -13429,7 +13537,7 @@ export type BookingOfferingsListResponses = {
|
|
|
13429
13537
|
200: Array<Offering>;
|
|
13430
13538
|
};
|
|
13431
13539
|
export type BookingOfferingsListResponse = BookingOfferingsListResponses[keyof BookingOfferingsListResponses];
|
|
13432
|
-
export type
|
|
13540
|
+
export type BookingOfferingsCountData = {
|
|
13433
13541
|
body?: never;
|
|
13434
13542
|
path?: never;
|
|
13435
13543
|
query?: {
|
|
@@ -13444,7 +13552,7 @@ export type BookingOfferingsHeadData = {
|
|
|
13444
13552
|
};
|
|
13445
13553
|
url: '/api/booking-offerings/';
|
|
13446
13554
|
};
|
|
13447
|
-
export type
|
|
13555
|
+
export type BookingOfferingsCountResponses = {
|
|
13448
13556
|
/**
|
|
13449
13557
|
* No response body
|
|
13450
13558
|
*/
|
|
@@ -13590,7 +13698,7 @@ export type BookingResourcesListResponses = {
|
|
|
13590
13698
|
200: Array<BookingResource>;
|
|
13591
13699
|
};
|
|
13592
13700
|
export type BookingResourcesListResponse = BookingResourcesListResponses[keyof BookingResourcesListResponses];
|
|
13593
|
-
export type
|
|
13701
|
+
export type BookingResourcesCountData = {
|
|
13594
13702
|
body?: never;
|
|
13595
13703
|
path?: never;
|
|
13596
13704
|
query?: {
|
|
@@ -13669,7 +13777,7 @@ export type BookingResourcesHeadData = {
|
|
|
13669
13777
|
};
|
|
13670
13778
|
url: '/api/booking-resources/';
|
|
13671
13779
|
};
|
|
13672
|
-
export type
|
|
13780
|
+
export type BookingResourcesCountResponses = {
|
|
13673
13781
|
/**
|
|
13674
13782
|
* No response body
|
|
13675
13783
|
*/
|
|
@@ -13737,7 +13845,7 @@ export type BroadcastMessageTemplatesListResponses = {
|
|
|
13737
13845
|
200: Array<MessageTemplate>;
|
|
13738
13846
|
};
|
|
13739
13847
|
export type BroadcastMessageTemplatesListResponse = BroadcastMessageTemplatesListResponses[keyof BroadcastMessageTemplatesListResponses];
|
|
13740
|
-
export type
|
|
13848
|
+
export type BroadcastMessageTemplatesCountData = {
|
|
13741
13849
|
body?: never;
|
|
13742
13850
|
path?: never;
|
|
13743
13851
|
query?: {
|
|
@@ -13753,7 +13861,7 @@ export type BroadcastMessageTemplatesHeadData = {
|
|
|
13753
13861
|
};
|
|
13754
13862
|
url: '/api/broadcast-message-templates/';
|
|
13755
13863
|
};
|
|
13756
|
-
export type
|
|
13864
|
+
export type BroadcastMessageTemplatesCountResponses = {
|
|
13757
13865
|
/**
|
|
13758
13866
|
* No response body
|
|
13759
13867
|
*/
|
|
@@ -13848,7 +13956,7 @@ export type BroadcastMessagesListResponses = {
|
|
|
13848
13956
|
200: Array<BroadcastMessage>;
|
|
13849
13957
|
};
|
|
13850
13958
|
export type BroadcastMessagesListResponse = BroadcastMessagesListResponses[keyof BroadcastMessagesListResponses];
|
|
13851
|
-
export type
|
|
13959
|
+
export type BroadcastMessagesCountData = {
|
|
13852
13960
|
body?: never;
|
|
13853
13961
|
path?: never;
|
|
13854
13962
|
query?: {
|
|
@@ -13871,7 +13979,7 @@ export type BroadcastMessagesHeadData = {
|
|
|
13871
13979
|
};
|
|
13872
13980
|
url: '/api/broadcast-messages/';
|
|
13873
13981
|
};
|
|
13874
|
-
export type
|
|
13982
|
+
export type BroadcastMessagesCountResponses = {
|
|
13875
13983
|
/**
|
|
13876
13984
|
* No response body
|
|
13877
13985
|
*/
|
|
@@ -13980,13 +14088,13 @@ export type BroadcastMessagesRecipientsRetrieveResponses = {
|
|
|
13980
14088
|
200: BroadcastMessage;
|
|
13981
14089
|
};
|
|
13982
14090
|
export type BroadcastMessagesRecipientsRetrieveResponse = BroadcastMessagesRecipientsRetrieveResponses[keyof BroadcastMessagesRecipientsRetrieveResponses];
|
|
13983
|
-
export type
|
|
14091
|
+
export type BroadcastMessagesRecipientsCountData = {
|
|
13984
14092
|
body?: never;
|
|
13985
14093
|
path?: never;
|
|
13986
14094
|
query?: never;
|
|
13987
14095
|
url: '/api/broadcast-messages/recipients/';
|
|
13988
14096
|
};
|
|
13989
|
-
export type
|
|
14097
|
+
export type BroadcastMessagesRecipientsCountResponses = {
|
|
13990
14098
|
/**
|
|
13991
14099
|
* No response body
|
|
13992
14100
|
*/
|
|
@@ -14020,7 +14128,7 @@ export type CallManagingOrganisationsListResponses = {
|
|
|
14020
14128
|
200: Array<CallManagingOrganisation>;
|
|
14021
14129
|
};
|
|
14022
14130
|
export type CallManagingOrganisationsListResponse = CallManagingOrganisationsListResponses[keyof CallManagingOrganisationsListResponses];
|
|
14023
|
-
export type
|
|
14131
|
+
export type CallManagingOrganisationsCountData = {
|
|
14024
14132
|
body?: never;
|
|
14025
14133
|
path?: never;
|
|
14026
14134
|
query?: {
|
|
@@ -14044,7 +14152,7 @@ export type CallManagingOrganisationsHeadData = {
|
|
|
14044
14152
|
};
|
|
14045
14153
|
url: '/api/call-managing-organisations/';
|
|
14046
14154
|
};
|
|
14047
|
-
export type
|
|
14155
|
+
export type CallManagingOrganisationsCountResponses = {
|
|
14048
14156
|
/**
|
|
14049
14157
|
* No response body
|
|
14050
14158
|
*/
|
|
@@ -14242,7 +14350,7 @@ export type CallProposalProjectRoleMappingsListResponses = {
|
|
|
14242
14350
|
200: Array<ProposalProjectRoleMapping>;
|
|
14243
14351
|
};
|
|
14244
14352
|
export type CallProposalProjectRoleMappingsListResponse = CallProposalProjectRoleMappingsListResponses[keyof CallProposalProjectRoleMappingsListResponses];
|
|
14245
|
-
export type
|
|
14353
|
+
export type CallProposalProjectRoleMappingsCountData = {
|
|
14246
14354
|
body?: never;
|
|
14247
14355
|
path?: never;
|
|
14248
14356
|
query?: {
|
|
@@ -14258,7 +14366,7 @@ export type CallProposalProjectRoleMappingsHeadData = {
|
|
|
14258
14366
|
};
|
|
14259
14367
|
url: '/api/call-proposal-project-role-mappings/';
|
|
14260
14368
|
};
|
|
14261
|
-
export type
|
|
14369
|
+
export type CallProposalProjectRoleMappingsCountResponses = {
|
|
14262
14370
|
/**
|
|
14263
14371
|
* No response body
|
|
14264
14372
|
*/
|
|
@@ -14344,7 +14452,7 @@ export type CallRoundsListResponses = {
|
|
|
14344
14452
|
200: Array<CallRound>;
|
|
14345
14453
|
};
|
|
14346
14454
|
export type CallRoundsListResponse = CallRoundsListResponses[keyof CallRoundsListResponses];
|
|
14347
|
-
export type
|
|
14455
|
+
export type CallRoundsCountData = {
|
|
14348
14456
|
body?: never;
|
|
14349
14457
|
path?: never;
|
|
14350
14458
|
query?: {
|
|
@@ -14359,7 +14467,7 @@ export type CallRoundsHeadData = {
|
|
|
14359
14467
|
};
|
|
14360
14468
|
url: '/api/call-rounds/';
|
|
14361
14469
|
};
|
|
14362
|
-
export type
|
|
14470
|
+
export type CallRoundsCountResponses = {
|
|
14363
14471
|
/**
|
|
14364
14472
|
* No response body
|
|
14365
14473
|
*/
|
|
@@ -14410,6 +14518,540 @@ export type CeleryStatsRetrieveResponses = {
|
|
|
14410
14518
|
*/
|
|
14411
14519
|
200: unknown;
|
|
14412
14520
|
};
|
|
14521
|
+
export type ChecklistsAdminListData = {
|
|
14522
|
+
body?: never;
|
|
14523
|
+
path?: never;
|
|
14524
|
+
query?: {
|
|
14525
|
+
/**
|
|
14526
|
+
* A page number within the paginated result set.
|
|
14527
|
+
*/
|
|
14528
|
+
page?: number;
|
|
14529
|
+
/**
|
|
14530
|
+
* Number of results to return per page.
|
|
14531
|
+
*/
|
|
14532
|
+
page_size?: number;
|
|
14533
|
+
};
|
|
14534
|
+
url: '/api/checklists-admin/';
|
|
14535
|
+
};
|
|
14536
|
+
export type ChecklistsAdminListResponses = {
|
|
14537
|
+
200: Array<Checklist>;
|
|
14538
|
+
};
|
|
14539
|
+
export type ChecklistsAdminListResponse = ChecklistsAdminListResponses[keyof ChecklistsAdminListResponses];
|
|
14540
|
+
export type ChecklistsAdminCountData = {
|
|
14541
|
+
body?: never;
|
|
14542
|
+
path?: never;
|
|
14543
|
+
query?: {
|
|
14544
|
+
/**
|
|
14545
|
+
* A page number within the paginated result set.
|
|
14546
|
+
*/
|
|
14547
|
+
page?: number;
|
|
14548
|
+
/**
|
|
14549
|
+
* Number of results to return per page.
|
|
14550
|
+
*/
|
|
14551
|
+
page_size?: number;
|
|
14552
|
+
};
|
|
14553
|
+
url: '/api/checklists-admin/';
|
|
14554
|
+
};
|
|
14555
|
+
export type ChecklistsAdminCountResponses = {
|
|
14556
|
+
/**
|
|
14557
|
+
* No response body
|
|
14558
|
+
*/
|
|
14559
|
+
200: unknown;
|
|
14560
|
+
};
|
|
14561
|
+
export type ChecklistsAdminCreateData = {
|
|
14562
|
+
body: ChecklistRequest;
|
|
14563
|
+
path?: never;
|
|
14564
|
+
query?: never;
|
|
14565
|
+
url: '/api/checklists-admin/';
|
|
14566
|
+
};
|
|
14567
|
+
export type ChecklistsAdminCreateResponses = {
|
|
14568
|
+
201: Checklist;
|
|
14569
|
+
};
|
|
14570
|
+
export type ChecklistsAdminCreateResponse = ChecklistsAdminCreateResponses[keyof ChecklistsAdminCreateResponses];
|
|
14571
|
+
export type ChecklistsAdminCategoriesListData = {
|
|
14572
|
+
body?: never;
|
|
14573
|
+
path?: never;
|
|
14574
|
+
query?: {
|
|
14575
|
+
/**
|
|
14576
|
+
* A page number within the paginated result set.
|
|
14577
|
+
*/
|
|
14578
|
+
page?: number;
|
|
14579
|
+
/**
|
|
14580
|
+
* Number of results to return per page.
|
|
14581
|
+
*/
|
|
14582
|
+
page_size?: number;
|
|
14583
|
+
};
|
|
14584
|
+
url: '/api/checklists-admin-categories/';
|
|
14585
|
+
};
|
|
14586
|
+
export type ChecklistsAdminCategoriesListResponses = {
|
|
14587
|
+
200: Array<ChecklistCategory>;
|
|
14588
|
+
};
|
|
14589
|
+
export type ChecklistsAdminCategoriesListResponse = ChecklistsAdminCategoriesListResponses[keyof ChecklistsAdminCategoriesListResponses];
|
|
14590
|
+
export type ChecklistsAdminCategoriesCountData = {
|
|
14591
|
+
body?: never;
|
|
14592
|
+
path?: never;
|
|
14593
|
+
query?: {
|
|
14594
|
+
/**
|
|
14595
|
+
* A page number within the paginated result set.
|
|
14596
|
+
*/
|
|
14597
|
+
page?: number;
|
|
14598
|
+
/**
|
|
14599
|
+
* Number of results to return per page.
|
|
14600
|
+
*/
|
|
14601
|
+
page_size?: number;
|
|
14602
|
+
};
|
|
14603
|
+
url: '/api/checklists-admin-categories/';
|
|
14604
|
+
};
|
|
14605
|
+
export type ChecklistsAdminCategoriesCountResponses = {
|
|
14606
|
+
/**
|
|
14607
|
+
* No response body
|
|
14608
|
+
*/
|
|
14609
|
+
200: unknown;
|
|
14610
|
+
};
|
|
14611
|
+
export type ChecklistsAdminCategoriesCreateData = {
|
|
14612
|
+
body: ChecklistCategoryRequest;
|
|
14613
|
+
path?: never;
|
|
14614
|
+
query?: never;
|
|
14615
|
+
url: '/api/checklists-admin-categories/';
|
|
14616
|
+
};
|
|
14617
|
+
export type ChecklistsAdminCategoriesCreateResponses = {
|
|
14618
|
+
201: ChecklistCategory;
|
|
14619
|
+
};
|
|
14620
|
+
export type ChecklistsAdminCategoriesCreateResponse = ChecklistsAdminCategoriesCreateResponses[keyof ChecklistsAdminCategoriesCreateResponses];
|
|
14621
|
+
export type ChecklistsAdminCategoriesDestroyData = {
|
|
14622
|
+
body?: never;
|
|
14623
|
+
path: {
|
|
14624
|
+
uuid: string;
|
|
14625
|
+
};
|
|
14626
|
+
query?: never;
|
|
14627
|
+
url: '/api/checklists-admin-categories/{uuid}/';
|
|
14628
|
+
};
|
|
14629
|
+
export type ChecklistsAdminCategoriesDestroyResponses = {
|
|
14630
|
+
/**
|
|
14631
|
+
* No response body
|
|
14632
|
+
*/
|
|
14633
|
+
204: void;
|
|
14634
|
+
};
|
|
14635
|
+
export type ChecklistsAdminCategoriesDestroyResponse = ChecklistsAdminCategoriesDestroyResponses[keyof ChecklistsAdminCategoriesDestroyResponses];
|
|
14636
|
+
export type ChecklistsAdminCategoriesRetrieveData = {
|
|
14637
|
+
body?: never;
|
|
14638
|
+
path: {
|
|
14639
|
+
uuid: string;
|
|
14640
|
+
};
|
|
14641
|
+
query?: never;
|
|
14642
|
+
url: '/api/checklists-admin-categories/{uuid}/';
|
|
14643
|
+
};
|
|
14644
|
+
export type ChecklistsAdminCategoriesRetrieveResponses = {
|
|
14645
|
+
200: ChecklistCategory;
|
|
14646
|
+
};
|
|
14647
|
+
export type ChecklistsAdminCategoriesRetrieveResponse = ChecklistsAdminCategoriesRetrieveResponses[keyof ChecklistsAdminCategoriesRetrieveResponses];
|
|
14648
|
+
export type ChecklistsAdminCategoriesPartialUpdateData = {
|
|
14649
|
+
body?: PatchedChecklistCategoryRequest;
|
|
14650
|
+
path: {
|
|
14651
|
+
uuid: string;
|
|
14652
|
+
};
|
|
14653
|
+
query?: never;
|
|
14654
|
+
url: '/api/checklists-admin-categories/{uuid}/';
|
|
14655
|
+
};
|
|
14656
|
+
export type ChecklistsAdminCategoriesPartialUpdateResponses = {
|
|
14657
|
+
200: ChecklistCategory;
|
|
14658
|
+
};
|
|
14659
|
+
export type ChecklistsAdminCategoriesPartialUpdateResponse = ChecklistsAdminCategoriesPartialUpdateResponses[keyof ChecklistsAdminCategoriesPartialUpdateResponses];
|
|
14660
|
+
export type ChecklistsAdminCategoriesUpdateData = {
|
|
14661
|
+
body: ChecklistCategoryRequest;
|
|
14662
|
+
path: {
|
|
14663
|
+
uuid: string;
|
|
14664
|
+
};
|
|
14665
|
+
query?: never;
|
|
14666
|
+
url: '/api/checklists-admin-categories/{uuid}/';
|
|
14667
|
+
};
|
|
14668
|
+
export type ChecklistsAdminCategoriesUpdateResponses = {
|
|
14669
|
+
200: ChecklistCategory;
|
|
14670
|
+
};
|
|
14671
|
+
export type ChecklistsAdminCategoriesUpdateResponse = ChecklistsAdminCategoriesUpdateResponses[keyof ChecklistsAdminCategoriesUpdateResponses];
|
|
14672
|
+
export type ChecklistsAdminQuestionDependenciesListData = {
|
|
14673
|
+
body?: never;
|
|
14674
|
+
path?: never;
|
|
14675
|
+
query?: {
|
|
14676
|
+
depends_on_question_uuid?: string;
|
|
14677
|
+
/**
|
|
14678
|
+
* A page number within the paginated result set.
|
|
14679
|
+
*/
|
|
14680
|
+
page?: number;
|
|
14681
|
+
/**
|
|
14682
|
+
* Number of results to return per page.
|
|
14683
|
+
*/
|
|
14684
|
+
page_size?: number;
|
|
14685
|
+
question_uuid?: string;
|
|
14686
|
+
};
|
|
14687
|
+
url: '/api/checklists-admin-question-dependencies/';
|
|
14688
|
+
};
|
|
14689
|
+
export type ChecklistsAdminQuestionDependenciesListResponses = {
|
|
14690
|
+
200: Array<QuestionDependency>;
|
|
14691
|
+
};
|
|
14692
|
+
export type ChecklistsAdminQuestionDependenciesListResponse = ChecklistsAdminQuestionDependenciesListResponses[keyof ChecklistsAdminQuestionDependenciesListResponses];
|
|
14693
|
+
export type ChecklistsAdminQuestionDependenciesCountData = {
|
|
14694
|
+
body?: never;
|
|
14695
|
+
path?: never;
|
|
14696
|
+
query?: {
|
|
14697
|
+
depends_on_question_uuid?: string;
|
|
14698
|
+
/**
|
|
14699
|
+
* A page number within the paginated result set.
|
|
14700
|
+
*/
|
|
14701
|
+
page?: number;
|
|
14702
|
+
/**
|
|
14703
|
+
* Number of results to return per page.
|
|
14704
|
+
*/
|
|
14705
|
+
page_size?: number;
|
|
14706
|
+
question_uuid?: string;
|
|
14707
|
+
};
|
|
14708
|
+
url: '/api/checklists-admin-question-dependencies/';
|
|
14709
|
+
};
|
|
14710
|
+
export type ChecklistsAdminQuestionDependenciesCountResponses = {
|
|
14711
|
+
/**
|
|
14712
|
+
* No response body
|
|
14713
|
+
*/
|
|
14714
|
+
200: unknown;
|
|
14715
|
+
};
|
|
14716
|
+
export type ChecklistsAdminQuestionDependenciesCreateData = {
|
|
14717
|
+
body: QuestionDependencyRequest;
|
|
14718
|
+
path?: never;
|
|
14719
|
+
query?: never;
|
|
14720
|
+
url: '/api/checklists-admin-question-dependencies/';
|
|
14721
|
+
};
|
|
14722
|
+
export type ChecklistsAdminQuestionDependenciesCreateResponses = {
|
|
14723
|
+
201: QuestionDependency;
|
|
14724
|
+
};
|
|
14725
|
+
export type ChecklistsAdminQuestionDependenciesCreateResponse = ChecklistsAdminQuestionDependenciesCreateResponses[keyof ChecklistsAdminQuestionDependenciesCreateResponses];
|
|
14726
|
+
export type ChecklistsAdminQuestionDependenciesDestroyData = {
|
|
14727
|
+
body?: never;
|
|
14728
|
+
path: {
|
|
14729
|
+
uuid: string;
|
|
14730
|
+
};
|
|
14731
|
+
query?: never;
|
|
14732
|
+
url: '/api/checklists-admin-question-dependencies/{uuid}/';
|
|
14733
|
+
};
|
|
14734
|
+
export type ChecklistsAdminQuestionDependenciesDestroyResponses = {
|
|
14735
|
+
/**
|
|
14736
|
+
* No response body
|
|
14737
|
+
*/
|
|
14738
|
+
204: void;
|
|
14739
|
+
};
|
|
14740
|
+
export type ChecklistsAdminQuestionDependenciesDestroyResponse = ChecklistsAdminQuestionDependenciesDestroyResponses[keyof ChecklistsAdminQuestionDependenciesDestroyResponses];
|
|
14741
|
+
export type ChecklistsAdminQuestionDependenciesRetrieveData = {
|
|
14742
|
+
body?: never;
|
|
14743
|
+
path: {
|
|
14744
|
+
uuid: string;
|
|
14745
|
+
};
|
|
14746
|
+
query?: never;
|
|
14747
|
+
url: '/api/checklists-admin-question-dependencies/{uuid}/';
|
|
14748
|
+
};
|
|
14749
|
+
export type ChecklistsAdminQuestionDependenciesRetrieveResponses = {
|
|
14750
|
+
200: QuestionDependency;
|
|
14751
|
+
};
|
|
14752
|
+
export type ChecklistsAdminQuestionDependenciesRetrieveResponse = ChecklistsAdminQuestionDependenciesRetrieveResponses[keyof ChecklistsAdminQuestionDependenciesRetrieveResponses];
|
|
14753
|
+
export type ChecklistsAdminQuestionDependenciesPartialUpdateData = {
|
|
14754
|
+
body?: PatchedQuestionDependencyRequest;
|
|
14755
|
+
path: {
|
|
14756
|
+
uuid: string;
|
|
14757
|
+
};
|
|
14758
|
+
query?: never;
|
|
14759
|
+
url: '/api/checklists-admin-question-dependencies/{uuid}/';
|
|
14760
|
+
};
|
|
14761
|
+
export type ChecklistsAdminQuestionDependenciesPartialUpdateResponses = {
|
|
14762
|
+
200: QuestionDependency;
|
|
14763
|
+
};
|
|
14764
|
+
export type ChecklistsAdminQuestionDependenciesPartialUpdateResponse = ChecklistsAdminQuestionDependenciesPartialUpdateResponses[keyof ChecklistsAdminQuestionDependenciesPartialUpdateResponses];
|
|
14765
|
+
export type ChecklistsAdminQuestionDependenciesUpdateData = {
|
|
14766
|
+
body: QuestionDependencyRequest;
|
|
14767
|
+
path: {
|
|
14768
|
+
uuid: string;
|
|
14769
|
+
};
|
|
14770
|
+
query?: never;
|
|
14771
|
+
url: '/api/checklists-admin-question-dependencies/{uuid}/';
|
|
14772
|
+
};
|
|
14773
|
+
export type ChecklistsAdminQuestionDependenciesUpdateResponses = {
|
|
14774
|
+
200: QuestionDependency;
|
|
14775
|
+
};
|
|
14776
|
+
export type ChecklistsAdminQuestionDependenciesUpdateResponse = ChecklistsAdminQuestionDependenciesUpdateResponses[keyof ChecklistsAdminQuestionDependenciesUpdateResponses];
|
|
14777
|
+
export type ChecklistsAdminQuestionOptionsListData = {
|
|
14778
|
+
body?: never;
|
|
14779
|
+
path?: never;
|
|
14780
|
+
query?: {
|
|
14781
|
+
/**
|
|
14782
|
+
* A page number within the paginated result set.
|
|
14783
|
+
*/
|
|
14784
|
+
page?: number;
|
|
14785
|
+
/**
|
|
14786
|
+
* Number of results to return per page.
|
|
14787
|
+
*/
|
|
14788
|
+
page_size?: number;
|
|
14789
|
+
question_uuid?: string;
|
|
14790
|
+
};
|
|
14791
|
+
url: '/api/checklists-admin-question-options/';
|
|
14792
|
+
};
|
|
14793
|
+
export type ChecklistsAdminQuestionOptionsListResponses = {
|
|
14794
|
+
200: Array<QuestionOptionsAdmin>;
|
|
14795
|
+
};
|
|
14796
|
+
export type ChecklistsAdminQuestionOptionsListResponse = ChecklistsAdminQuestionOptionsListResponses[keyof ChecklistsAdminQuestionOptionsListResponses];
|
|
14797
|
+
export type ChecklistsAdminQuestionOptionsCountData = {
|
|
14798
|
+
body?: never;
|
|
14799
|
+
path?: never;
|
|
14800
|
+
query?: {
|
|
14801
|
+
/**
|
|
14802
|
+
* A page number within the paginated result set.
|
|
14803
|
+
*/
|
|
14804
|
+
page?: number;
|
|
14805
|
+
/**
|
|
14806
|
+
* Number of results to return per page.
|
|
14807
|
+
*/
|
|
14808
|
+
page_size?: number;
|
|
14809
|
+
question_uuid?: string;
|
|
14810
|
+
};
|
|
14811
|
+
url: '/api/checklists-admin-question-options/';
|
|
14812
|
+
};
|
|
14813
|
+
export type ChecklistsAdminQuestionOptionsCountResponses = {
|
|
14814
|
+
/**
|
|
14815
|
+
* No response body
|
|
14816
|
+
*/
|
|
14817
|
+
200: unknown;
|
|
14818
|
+
};
|
|
14819
|
+
export type ChecklistsAdminQuestionOptionsCreateData = {
|
|
14820
|
+
body: QuestionOptionsAdminRequest;
|
|
14821
|
+
path?: never;
|
|
14822
|
+
query?: never;
|
|
14823
|
+
url: '/api/checklists-admin-question-options/';
|
|
14824
|
+
};
|
|
14825
|
+
export type ChecklistsAdminQuestionOptionsCreateResponses = {
|
|
14826
|
+
201: QuestionOptionsAdmin;
|
|
14827
|
+
};
|
|
14828
|
+
export type ChecklistsAdminQuestionOptionsCreateResponse = ChecklistsAdminQuestionOptionsCreateResponses[keyof ChecklistsAdminQuestionOptionsCreateResponses];
|
|
14829
|
+
export type ChecklistsAdminQuestionOptionsDestroyData = {
|
|
14830
|
+
body?: never;
|
|
14831
|
+
path: {
|
|
14832
|
+
uuid: string;
|
|
14833
|
+
};
|
|
14834
|
+
query?: never;
|
|
14835
|
+
url: '/api/checklists-admin-question-options/{uuid}/';
|
|
14836
|
+
};
|
|
14837
|
+
export type ChecklistsAdminQuestionOptionsDestroyResponses = {
|
|
14838
|
+
/**
|
|
14839
|
+
* No response body
|
|
14840
|
+
*/
|
|
14841
|
+
204: void;
|
|
14842
|
+
};
|
|
14843
|
+
export type ChecklistsAdminQuestionOptionsDestroyResponse = ChecklistsAdminQuestionOptionsDestroyResponses[keyof ChecklistsAdminQuestionOptionsDestroyResponses];
|
|
14844
|
+
export type ChecklistsAdminQuestionOptionsRetrieveData = {
|
|
14845
|
+
body?: never;
|
|
14846
|
+
path: {
|
|
14847
|
+
uuid: string;
|
|
14848
|
+
};
|
|
14849
|
+
query?: never;
|
|
14850
|
+
url: '/api/checklists-admin-question-options/{uuid}/';
|
|
14851
|
+
};
|
|
14852
|
+
export type ChecklistsAdminQuestionOptionsRetrieveResponses = {
|
|
14853
|
+
200: QuestionOptionsAdmin;
|
|
14854
|
+
};
|
|
14855
|
+
export type ChecklistsAdminQuestionOptionsRetrieveResponse = ChecklistsAdminQuestionOptionsRetrieveResponses[keyof ChecklistsAdminQuestionOptionsRetrieveResponses];
|
|
14856
|
+
export type ChecklistsAdminQuestionOptionsPartialUpdateData = {
|
|
14857
|
+
body?: PatchedQuestionOptionsAdminRequest;
|
|
14858
|
+
path: {
|
|
14859
|
+
uuid: string;
|
|
14860
|
+
};
|
|
14861
|
+
query?: never;
|
|
14862
|
+
url: '/api/checklists-admin-question-options/{uuid}/';
|
|
14863
|
+
};
|
|
14864
|
+
export type ChecklistsAdminQuestionOptionsPartialUpdateResponses = {
|
|
14865
|
+
200: QuestionOptionsAdmin;
|
|
14866
|
+
};
|
|
14867
|
+
export type ChecklistsAdminQuestionOptionsPartialUpdateResponse = ChecklistsAdminQuestionOptionsPartialUpdateResponses[keyof ChecklistsAdminQuestionOptionsPartialUpdateResponses];
|
|
14868
|
+
export type ChecklistsAdminQuestionOptionsUpdateData = {
|
|
14869
|
+
body: QuestionOptionsAdminRequest;
|
|
14870
|
+
path: {
|
|
14871
|
+
uuid: string;
|
|
14872
|
+
};
|
|
14873
|
+
query?: never;
|
|
14874
|
+
url: '/api/checklists-admin-question-options/{uuid}/';
|
|
14875
|
+
};
|
|
14876
|
+
export type ChecklistsAdminQuestionOptionsUpdateResponses = {
|
|
14877
|
+
200: QuestionOptionsAdmin;
|
|
14878
|
+
};
|
|
14879
|
+
export type ChecklistsAdminQuestionOptionsUpdateResponse = ChecklistsAdminQuestionOptionsUpdateResponses[keyof ChecklistsAdminQuestionOptionsUpdateResponses];
|
|
14880
|
+
export type ChecklistsAdminQuestionsListData = {
|
|
14881
|
+
body?: never;
|
|
14882
|
+
path?: never;
|
|
14883
|
+
query?: {
|
|
14884
|
+
checklist_uuid?: string;
|
|
14885
|
+
/**
|
|
14886
|
+
* A page number within the paginated result set.
|
|
14887
|
+
*/
|
|
14888
|
+
page?: number;
|
|
14889
|
+
/**
|
|
14890
|
+
* Number of results to return per page.
|
|
14891
|
+
*/
|
|
14892
|
+
page_size?: number;
|
|
14893
|
+
};
|
|
14894
|
+
url: '/api/checklists-admin-questions/';
|
|
14895
|
+
};
|
|
14896
|
+
export type ChecklistsAdminQuestionsListResponses = {
|
|
14897
|
+
200: Array<QuestionAdmin>;
|
|
14898
|
+
};
|
|
14899
|
+
export type ChecklistsAdminQuestionsListResponse = ChecklistsAdminQuestionsListResponses[keyof ChecklistsAdminQuestionsListResponses];
|
|
14900
|
+
export type ChecklistsAdminQuestionsCountData = {
|
|
14901
|
+
body?: never;
|
|
14902
|
+
path?: never;
|
|
14903
|
+
query?: {
|
|
14904
|
+
checklist_uuid?: string;
|
|
14905
|
+
/**
|
|
14906
|
+
* A page number within the paginated result set.
|
|
14907
|
+
*/
|
|
14908
|
+
page?: number;
|
|
14909
|
+
/**
|
|
14910
|
+
* Number of results to return per page.
|
|
14911
|
+
*/
|
|
14912
|
+
page_size?: number;
|
|
14913
|
+
};
|
|
14914
|
+
url: '/api/checklists-admin-questions/';
|
|
14915
|
+
};
|
|
14916
|
+
export type ChecklistsAdminQuestionsCountResponses = {
|
|
14917
|
+
/**
|
|
14918
|
+
* No response body
|
|
14919
|
+
*/
|
|
14920
|
+
200: unknown;
|
|
14921
|
+
};
|
|
14922
|
+
export type ChecklistsAdminQuestionsCreateData = {
|
|
14923
|
+
body: QuestionAdminRequest;
|
|
14924
|
+
path?: never;
|
|
14925
|
+
query?: never;
|
|
14926
|
+
url: '/api/checklists-admin-questions/';
|
|
14927
|
+
};
|
|
14928
|
+
export type ChecklistsAdminQuestionsCreateResponses = {
|
|
14929
|
+
201: QuestionAdmin;
|
|
14930
|
+
};
|
|
14931
|
+
export type ChecklistsAdminQuestionsCreateResponse = ChecklistsAdminQuestionsCreateResponses[keyof ChecklistsAdminQuestionsCreateResponses];
|
|
14932
|
+
export type ChecklistsAdminQuestionsDestroyData = {
|
|
14933
|
+
body?: never;
|
|
14934
|
+
path: {
|
|
14935
|
+
uuid: string;
|
|
14936
|
+
};
|
|
14937
|
+
query?: never;
|
|
14938
|
+
url: '/api/checklists-admin-questions/{uuid}/';
|
|
14939
|
+
};
|
|
14940
|
+
export type ChecklistsAdminQuestionsDestroyResponses = {
|
|
14941
|
+
/**
|
|
14942
|
+
* No response body
|
|
14943
|
+
*/
|
|
14944
|
+
204: void;
|
|
14945
|
+
};
|
|
14946
|
+
export type ChecklistsAdminQuestionsDestroyResponse = ChecklistsAdminQuestionsDestroyResponses[keyof ChecklistsAdminQuestionsDestroyResponses];
|
|
14947
|
+
export type ChecklistsAdminQuestionsRetrieveData = {
|
|
14948
|
+
body?: never;
|
|
14949
|
+
path: {
|
|
14950
|
+
uuid: string;
|
|
14951
|
+
};
|
|
14952
|
+
query?: never;
|
|
14953
|
+
url: '/api/checklists-admin-questions/{uuid}/';
|
|
14954
|
+
};
|
|
14955
|
+
export type ChecklistsAdminQuestionsRetrieveResponses = {
|
|
14956
|
+
200: QuestionAdmin;
|
|
14957
|
+
};
|
|
14958
|
+
export type ChecklistsAdminQuestionsRetrieveResponse = ChecklistsAdminQuestionsRetrieveResponses[keyof ChecklistsAdminQuestionsRetrieveResponses];
|
|
14959
|
+
export type ChecklistsAdminQuestionsPartialUpdateData = {
|
|
14960
|
+
body?: PatchedQuestionAdminRequest;
|
|
14961
|
+
path: {
|
|
14962
|
+
uuid: string;
|
|
14963
|
+
};
|
|
14964
|
+
query?: never;
|
|
14965
|
+
url: '/api/checklists-admin-questions/{uuid}/';
|
|
14966
|
+
};
|
|
14967
|
+
export type ChecklistsAdminQuestionsPartialUpdateResponses = {
|
|
14968
|
+
200: QuestionAdmin;
|
|
14969
|
+
};
|
|
14970
|
+
export type ChecklistsAdminQuestionsPartialUpdateResponse = ChecklistsAdminQuestionsPartialUpdateResponses[keyof ChecklistsAdminQuestionsPartialUpdateResponses];
|
|
14971
|
+
export type ChecklistsAdminQuestionsUpdateData = {
|
|
14972
|
+
body: QuestionAdminRequest;
|
|
14973
|
+
path: {
|
|
14974
|
+
uuid: string;
|
|
14975
|
+
};
|
|
14976
|
+
query?: never;
|
|
14977
|
+
url: '/api/checklists-admin-questions/{uuid}/';
|
|
14978
|
+
};
|
|
14979
|
+
export type ChecklistsAdminQuestionsUpdateResponses = {
|
|
14980
|
+
200: QuestionAdmin;
|
|
14981
|
+
};
|
|
14982
|
+
export type ChecklistsAdminQuestionsUpdateResponse = ChecklistsAdminQuestionsUpdateResponses[keyof ChecklistsAdminQuestionsUpdateResponses];
|
|
14983
|
+
export type ChecklistsAdminDestroyData = {
|
|
14984
|
+
body?: never;
|
|
14985
|
+
path: {
|
|
14986
|
+
uuid: string;
|
|
14987
|
+
};
|
|
14988
|
+
query?: never;
|
|
14989
|
+
url: '/api/checklists-admin/{uuid}/';
|
|
14990
|
+
};
|
|
14991
|
+
export type ChecklistsAdminDestroyResponses = {
|
|
14992
|
+
/**
|
|
14993
|
+
* No response body
|
|
14994
|
+
*/
|
|
14995
|
+
204: void;
|
|
14996
|
+
};
|
|
14997
|
+
export type ChecklistsAdminDestroyResponse = ChecklistsAdminDestroyResponses[keyof ChecklistsAdminDestroyResponses];
|
|
14998
|
+
export type ChecklistsAdminRetrieveData = {
|
|
14999
|
+
body?: never;
|
|
15000
|
+
path: {
|
|
15001
|
+
uuid: string;
|
|
15002
|
+
};
|
|
15003
|
+
query?: never;
|
|
15004
|
+
url: '/api/checklists-admin/{uuid}/';
|
|
15005
|
+
};
|
|
15006
|
+
export type ChecklistsAdminRetrieveResponses = {
|
|
15007
|
+
200: Checklist;
|
|
15008
|
+
};
|
|
15009
|
+
export type ChecklistsAdminRetrieveResponse = ChecklistsAdminRetrieveResponses[keyof ChecklistsAdminRetrieveResponses];
|
|
15010
|
+
export type ChecklistsAdminPartialUpdateData = {
|
|
15011
|
+
body?: PatchedChecklistRequest;
|
|
15012
|
+
path: {
|
|
15013
|
+
uuid: string;
|
|
15014
|
+
};
|
|
15015
|
+
query?: never;
|
|
15016
|
+
url: '/api/checklists-admin/{uuid}/';
|
|
15017
|
+
};
|
|
15018
|
+
export type ChecklistsAdminPartialUpdateResponses = {
|
|
15019
|
+
200: Checklist;
|
|
15020
|
+
};
|
|
15021
|
+
export type ChecklistsAdminPartialUpdateResponse = ChecklistsAdminPartialUpdateResponses[keyof ChecklistsAdminPartialUpdateResponses];
|
|
15022
|
+
export type ChecklistsAdminUpdateData = {
|
|
15023
|
+
body: ChecklistRequest;
|
|
15024
|
+
path: {
|
|
15025
|
+
uuid: string;
|
|
15026
|
+
};
|
|
15027
|
+
query?: never;
|
|
15028
|
+
url: '/api/checklists-admin/{uuid}/';
|
|
15029
|
+
};
|
|
15030
|
+
export type ChecklistsAdminUpdateResponses = {
|
|
15031
|
+
200: Checklist;
|
|
15032
|
+
};
|
|
15033
|
+
export type ChecklistsAdminUpdateResponse = ChecklistsAdminUpdateResponses[keyof ChecklistsAdminUpdateResponses];
|
|
15034
|
+
export type ChecklistsAdminChecklistQuestionsData = {
|
|
15035
|
+
body?: never;
|
|
15036
|
+
path: {
|
|
15037
|
+
uuid: string;
|
|
15038
|
+
};
|
|
15039
|
+
query?: {
|
|
15040
|
+
/**
|
|
15041
|
+
* A page number within the paginated result set.
|
|
15042
|
+
*/
|
|
15043
|
+
page?: number;
|
|
15044
|
+
/**
|
|
15045
|
+
* Number of results to return per page.
|
|
15046
|
+
*/
|
|
15047
|
+
page_size?: number;
|
|
15048
|
+
};
|
|
15049
|
+
url: '/api/checklists-admin/{uuid}/questions/';
|
|
15050
|
+
};
|
|
15051
|
+
export type ChecklistsAdminChecklistQuestionsResponses = {
|
|
15052
|
+
200: Array<QuestionAdmin>;
|
|
15053
|
+
};
|
|
15054
|
+
export type ChecklistsAdminChecklistQuestionsResponse = ChecklistsAdminChecklistQuestionsResponses[keyof ChecklistsAdminChecklistQuestionsResponses];
|
|
14413
15055
|
export type ComponentUserUsageLimitsListData = {
|
|
14414
15056
|
body?: never;
|
|
14415
15057
|
path?: never;
|
|
@@ -14437,7 +15079,7 @@ export type ComponentUserUsageLimitsListResponses = {
|
|
|
14437
15079
|
200: Array<ComponentUserUsageLimit>;
|
|
14438
15080
|
};
|
|
14439
15081
|
export type ComponentUserUsageLimitsListResponse = ComponentUserUsageLimitsListResponses[keyof ComponentUserUsageLimitsListResponses];
|
|
14440
|
-
export type
|
|
15082
|
+
export type ComponentUserUsageLimitsCountData = {
|
|
14441
15083
|
body?: never;
|
|
14442
15084
|
path?: never;
|
|
14443
15085
|
query?: {
|
|
@@ -14460,7 +15102,7 @@ export type ComponentUserUsageLimitsHeadData = {
|
|
|
14460
15102
|
};
|
|
14461
15103
|
url: '/api/component-user-usage-limits/';
|
|
14462
15104
|
};
|
|
14463
|
-
export type
|
|
15105
|
+
export type ComponentUserUsageLimitsCountResponses = {
|
|
14464
15106
|
/**
|
|
14465
15107
|
* No response body
|
|
14466
15108
|
*/
|
|
@@ -14567,7 +15209,7 @@ export type CustomerCreditsListResponses = {
|
|
|
14567
15209
|
200: Array<CustomerCredit>;
|
|
14568
15210
|
};
|
|
14569
15211
|
export type CustomerCreditsListResponse = CustomerCreditsListResponses[keyof CustomerCreditsListResponses];
|
|
14570
|
-
export type
|
|
15212
|
+
export type CustomerCreditsCountData = {
|
|
14571
15213
|
body?: never;
|
|
14572
15214
|
path?: never;
|
|
14573
15215
|
query?: {
|
|
@@ -14591,7 +15233,7 @@ export type CustomerCreditsHeadData = {
|
|
|
14591
15233
|
};
|
|
14592
15234
|
url: '/api/customer-credits/';
|
|
14593
15235
|
};
|
|
14594
|
-
export type
|
|
15236
|
+
export type CustomerCreditsCountResponses = {
|
|
14595
15237
|
/**
|
|
14596
15238
|
* No response body
|
|
14597
15239
|
*/
|
|
@@ -14740,7 +15382,7 @@ export type CustomerPermissionsReviewsListResponses = {
|
|
|
14740
15382
|
200: Array<CustomerPermissionReview>;
|
|
14741
15383
|
};
|
|
14742
15384
|
export type CustomerPermissionsReviewsListResponse = CustomerPermissionsReviewsListResponses[keyof CustomerPermissionsReviewsListResponses];
|
|
14743
|
-
export type
|
|
15385
|
+
export type CustomerPermissionsReviewsCountData = {
|
|
14744
15386
|
body?: never;
|
|
14745
15387
|
path?: never;
|
|
14746
15388
|
query?: {
|
|
@@ -14764,7 +15406,7 @@ export type CustomerPermissionsReviewsHeadData = {
|
|
|
14764
15406
|
};
|
|
14765
15407
|
url: '/api/customer-permissions-reviews/';
|
|
14766
15408
|
};
|
|
14767
|
-
export type
|
|
15409
|
+
export type CustomerPermissionsReviewsCountResponses = {
|
|
14768
15410
|
/**
|
|
14769
15411
|
* No response body
|
|
14770
15412
|
*/
|
|
@@ -14815,7 +15457,7 @@ export type CustomerQuotasListResponses = {
|
|
|
14815
15457
|
200: Array<CustomerQuotas>;
|
|
14816
15458
|
};
|
|
14817
15459
|
export type CustomerQuotasListResponse = CustomerQuotasListResponses[keyof CustomerQuotasListResponses];
|
|
14818
|
-
export type
|
|
15460
|
+
export type CustomerQuotasCountData = {
|
|
14819
15461
|
body?: never;
|
|
14820
15462
|
path?: never;
|
|
14821
15463
|
query?: {
|
|
@@ -14830,7 +15472,7 @@ export type CustomerQuotasHeadData = {
|
|
|
14830
15472
|
};
|
|
14831
15473
|
url: '/api/customer-quotas/';
|
|
14832
15474
|
};
|
|
14833
|
-
export type
|
|
15475
|
+
export type CustomerQuotasCountResponses = {
|
|
14834
15476
|
/**
|
|
14835
15477
|
* No response body
|
|
14836
15478
|
*/
|
|
@@ -14879,7 +15521,7 @@ export type CustomersListResponses = {
|
|
|
14879
15521
|
200: Array<Customer>;
|
|
14880
15522
|
};
|
|
14881
15523
|
export type CustomersListResponse = CustomersListResponses[keyof CustomersListResponses];
|
|
14882
|
-
export type
|
|
15524
|
+
export type CustomersCountData = {
|
|
14883
15525
|
body?: never;
|
|
14884
15526
|
path?: never;
|
|
14885
15527
|
query?: {
|
|
@@ -14917,7 +15559,7 @@ export type CustomersHeadData = {
|
|
|
14917
15559
|
};
|
|
14918
15560
|
url: '/api/customers/';
|
|
14919
15561
|
};
|
|
14920
|
-
export type
|
|
15562
|
+
export type CustomersCountResponses = {
|
|
14921
15563
|
/**
|
|
14922
15564
|
* No response body
|
|
14923
15565
|
*/
|
|
@@ -15192,7 +15834,7 @@ export type CustomersCountriesListResponses = {
|
|
|
15192
15834
|
200: Array<Country>;
|
|
15193
15835
|
};
|
|
15194
15836
|
export type CustomersCountriesListResponse = CustomersCountriesListResponses[keyof CustomersCountriesListResponses];
|
|
15195
|
-
export type
|
|
15837
|
+
export type CustomersCountriesCountData = {
|
|
15196
15838
|
body?: never;
|
|
15197
15839
|
path?: never;
|
|
15198
15840
|
query?: {
|
|
@@ -15230,7 +15872,7 @@ export type CustomersCountriesHeadData = {
|
|
|
15230
15872
|
};
|
|
15231
15873
|
url: '/api/customers/countries/';
|
|
15232
15874
|
};
|
|
15233
|
-
export type
|
|
15875
|
+
export type CustomersCountriesCountResponses = {
|
|
15234
15876
|
/**
|
|
15235
15877
|
* No response body
|
|
15236
15878
|
*/
|
|
@@ -15316,7 +15958,7 @@ export type DigitaloceanDropletsListResponses = {
|
|
|
15316
15958
|
200: Array<DigitalOceanDroplet>;
|
|
15317
15959
|
};
|
|
15318
15960
|
export type DigitaloceanDropletsListResponse = DigitaloceanDropletsListResponses[keyof DigitaloceanDropletsListResponses];
|
|
15319
|
-
export type
|
|
15961
|
+
export type DigitaloceanDropletsCountData = {
|
|
15320
15962
|
body?: never;
|
|
15321
15963
|
path?: never;
|
|
15322
15964
|
query?: {
|
|
@@ -15352,7 +15994,7 @@ export type DigitaloceanDropletsHeadData = {
|
|
|
15352
15994
|
};
|
|
15353
15995
|
url: '/api/digitalocean-droplets/';
|
|
15354
15996
|
};
|
|
15355
|
-
export type
|
|
15997
|
+
export type DigitaloceanDropletsCountResponses = {
|
|
15356
15998
|
/**
|
|
15357
15999
|
* No response body
|
|
15358
16000
|
*/
|
|
@@ -15532,7 +16174,7 @@ export type DigitaloceanImagesListResponses = {
|
|
|
15532
16174
|
200: Array<DigitalOceanImage>;
|
|
15533
16175
|
};
|
|
15534
16176
|
export type DigitaloceanImagesListResponse = DigitaloceanImagesListResponses[keyof DigitaloceanImagesListResponses];
|
|
15535
|
-
export type
|
|
16177
|
+
export type DigitaloceanImagesCountData = {
|
|
15536
16178
|
body?: never;
|
|
15537
16179
|
path?: never;
|
|
15538
16180
|
query?: {
|
|
@@ -15557,7 +16199,7 @@ export type DigitaloceanImagesHeadData = {
|
|
|
15557
16199
|
};
|
|
15558
16200
|
url: '/api/digitalocean-images/';
|
|
15559
16201
|
};
|
|
15560
|
-
export type
|
|
16202
|
+
export type DigitaloceanImagesCountResponses = {
|
|
15561
16203
|
/**
|
|
15562
16204
|
* No response body
|
|
15563
16205
|
*/
|
|
@@ -15596,7 +16238,7 @@ export type DigitaloceanRegionsListResponses = {
|
|
|
15596
16238
|
200: Array<DigitalOceanRegion>;
|
|
15597
16239
|
};
|
|
15598
16240
|
export type DigitaloceanRegionsListResponse = DigitaloceanRegionsListResponses[keyof DigitaloceanRegionsListResponses];
|
|
15599
|
-
export type
|
|
16241
|
+
export type DigitaloceanRegionsCountData = {
|
|
15600
16242
|
body?: never;
|
|
15601
16243
|
path?: never;
|
|
15602
16244
|
query?: {
|
|
@@ -15613,7 +16255,7 @@ export type DigitaloceanRegionsHeadData = {
|
|
|
15613
16255
|
};
|
|
15614
16256
|
url: '/api/digitalocean-regions/';
|
|
15615
16257
|
};
|
|
15616
|
-
export type
|
|
16258
|
+
export type DigitaloceanRegionsCountResponses = {
|
|
15617
16259
|
/**
|
|
15618
16260
|
* No response body
|
|
15619
16261
|
*/
|
|
@@ -15655,7 +16297,7 @@ export type DigitaloceanSizesListResponses = {
|
|
|
15655
16297
|
200: Array<DigitalOceanSize>;
|
|
15656
16298
|
};
|
|
15657
16299
|
export type DigitaloceanSizesListResponse = DigitaloceanSizesListResponses[keyof DigitaloceanSizesListResponses];
|
|
15658
|
-
export type
|
|
16300
|
+
export type DigitaloceanSizesCountData = {
|
|
15659
16301
|
body?: never;
|
|
15660
16302
|
path?: never;
|
|
15661
16303
|
query?: {
|
|
@@ -15675,7 +16317,7 @@ export type DigitaloceanSizesHeadData = {
|
|
|
15675
16317
|
};
|
|
15676
16318
|
url: '/api/digitalocean-sizes/';
|
|
15677
16319
|
};
|
|
15678
|
-
export type
|
|
16320
|
+
export type DigitaloceanSizesCountResponses = {
|
|
15679
16321
|
/**
|
|
15680
16322
|
* No response body
|
|
15681
16323
|
*/
|
|
@@ -15722,7 +16364,7 @@ export type EmailLogsListResponses = {
|
|
|
15722
16364
|
200: Array<EmailLog>;
|
|
15723
16365
|
};
|
|
15724
16366
|
export type EmailLogsListResponse = EmailLogsListResponses[keyof EmailLogsListResponses];
|
|
15725
|
-
export type
|
|
16367
|
+
export type EmailLogsCountData = {
|
|
15726
16368
|
body?: never;
|
|
15727
16369
|
path?: never;
|
|
15728
16370
|
query?: {
|
|
@@ -15747,7 +16389,7 @@ export type EmailLogsHeadData = {
|
|
|
15747
16389
|
};
|
|
15748
16390
|
url: '/api/email-logs/';
|
|
15749
16391
|
};
|
|
15750
|
-
export type
|
|
16392
|
+
export type EmailLogsCountResponses = {
|
|
15751
16393
|
/**
|
|
15752
16394
|
* No response body
|
|
15753
16395
|
*/
|
|
@@ -15792,7 +16434,7 @@ export type EventSubscriptionsListResponses = {
|
|
|
15792
16434
|
200: Array<EventSubscription>;
|
|
15793
16435
|
};
|
|
15794
16436
|
export type EventSubscriptionsListResponse = EventSubscriptionsListResponses[keyof EventSubscriptionsListResponses];
|
|
15795
|
-
export type
|
|
16437
|
+
export type EventSubscriptionsCountData = {
|
|
15796
16438
|
body?: never;
|
|
15797
16439
|
path?: never;
|
|
15798
16440
|
query?: {
|
|
@@ -15815,7 +16457,7 @@ export type EventSubscriptionsHeadData = {
|
|
|
15815
16457
|
};
|
|
15816
16458
|
url: '/api/event-subscriptions/';
|
|
15817
16459
|
};
|
|
15818
|
-
export type
|
|
16460
|
+
export type EventSubscriptionsCountResponses = {
|
|
15819
16461
|
/**
|
|
15820
16462
|
* No response body
|
|
15821
16463
|
*/
|
|
@@ -15899,7 +16541,7 @@ export type EventsListResponses = {
|
|
|
15899
16541
|
200: Array<Event>;
|
|
15900
16542
|
};
|
|
15901
16543
|
export type EventsListResponse = EventsListResponses[keyof EventsListResponses];
|
|
15902
|
-
export type
|
|
16544
|
+
export type EventsCountData = {
|
|
15903
16545
|
body?: never;
|
|
15904
16546
|
path?: never;
|
|
15905
16547
|
query?: {
|
|
@@ -15935,7 +16577,7 @@ export type EventsHeadData = {
|
|
|
15935
16577
|
};
|
|
15936
16578
|
url: '/api/events/';
|
|
15937
16579
|
};
|
|
15938
|
-
export type
|
|
16580
|
+
export type EventsCountResponses = {
|
|
15939
16581
|
/**
|
|
15940
16582
|
* No response body
|
|
15941
16583
|
*/
|
|
@@ -15960,7 +16602,7 @@ export type EventsStatsListResponses = {
|
|
|
15960
16602
|
200: Array<EventStats>;
|
|
15961
16603
|
};
|
|
15962
16604
|
export type EventsStatsListResponse = EventsStatsListResponses[keyof EventsStatsListResponses];
|
|
15963
|
-
export type
|
|
16605
|
+
export type EventsStatsCountData = {
|
|
15964
16606
|
body?: never;
|
|
15965
16607
|
path?: never;
|
|
15966
16608
|
query?: {
|
|
@@ -15975,7 +16617,7 @@ export type EventsStatsHeadData = {
|
|
|
15975
16617
|
};
|
|
15976
16618
|
url: '/api/events-stats/';
|
|
15977
16619
|
};
|
|
15978
|
-
export type
|
|
16620
|
+
export type EventsStatsCountResponses = {
|
|
15979
16621
|
/**
|
|
15980
16622
|
* No response body
|
|
15981
16623
|
*/
|
|
@@ -16010,13 +16652,13 @@ export type EventsCountRetrieveResponses = {
|
|
|
16010
16652
|
200: Event;
|
|
16011
16653
|
};
|
|
16012
16654
|
export type EventsCountRetrieveResponse = EventsCountRetrieveResponses[keyof EventsCountRetrieveResponses];
|
|
16013
|
-
export type
|
|
16655
|
+
export type EventsCountCountData = {
|
|
16014
16656
|
body?: never;
|
|
16015
16657
|
path?: never;
|
|
16016
16658
|
query?: never;
|
|
16017
16659
|
url: '/api/events/count/';
|
|
16018
16660
|
};
|
|
16019
|
-
export type
|
|
16661
|
+
export type EventsCountCountResponses = {
|
|
16020
16662
|
/**
|
|
16021
16663
|
* No response body
|
|
16022
16664
|
*/
|
|
@@ -16034,13 +16676,13 @@ export type EventsEventGroupsRetrieveResponses = {
|
|
|
16034
16676
|
200: Event;
|
|
16035
16677
|
};
|
|
16036
16678
|
export type EventsEventGroupsRetrieveResponse = EventsEventGroupsRetrieveResponses[keyof EventsEventGroupsRetrieveResponses];
|
|
16037
|
-
export type
|
|
16679
|
+
export type EventsEventGroupsCountData = {
|
|
16038
16680
|
body?: never;
|
|
16039
16681
|
path?: never;
|
|
16040
16682
|
query?: never;
|
|
16041
16683
|
url: '/api/events/event_groups/';
|
|
16042
16684
|
};
|
|
16043
|
-
export type
|
|
16685
|
+
export type EventsEventGroupsCountResponses = {
|
|
16044
16686
|
/**
|
|
16045
16687
|
* No response body
|
|
16046
16688
|
*/
|
|
@@ -16058,13 +16700,13 @@ export type EventsScopeTypesRetrieveResponses = {
|
|
|
16058
16700
|
200: Event;
|
|
16059
16701
|
};
|
|
16060
16702
|
export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
|
|
16061
|
-
export type
|
|
16703
|
+
export type EventsScopeTypesCountData = {
|
|
16062
16704
|
body?: never;
|
|
16063
16705
|
path?: never;
|
|
16064
16706
|
query?: never;
|
|
16065
16707
|
url: '/api/events/scope_types/';
|
|
16066
16708
|
};
|
|
16067
|
-
export type
|
|
16709
|
+
export type EventsScopeTypesCountResponses = {
|
|
16068
16710
|
/**
|
|
16069
16711
|
* No response body
|
|
16070
16712
|
*/
|
|
@@ -16094,7 +16736,7 @@ export type ExternalLinksListResponses = {
|
|
|
16094
16736
|
200: Array<ExternalLink>;
|
|
16095
16737
|
};
|
|
16096
16738
|
export type ExternalLinksListResponse = ExternalLinksListResponses[keyof ExternalLinksListResponses];
|
|
16097
|
-
export type
|
|
16739
|
+
export type ExternalLinksCountData = {
|
|
16098
16740
|
body?: never;
|
|
16099
16741
|
path?: never;
|
|
16100
16742
|
query?: {
|
|
@@ -16114,7 +16756,7 @@ export type ExternalLinksHeadData = {
|
|
|
16114
16756
|
};
|
|
16115
16757
|
url: '/api/external-links/';
|
|
16116
16758
|
};
|
|
16117
|
-
export type
|
|
16759
|
+
export type ExternalLinksCountResponses = {
|
|
16118
16760
|
/**
|
|
16119
16761
|
* No response body
|
|
16120
16762
|
*/
|
|
@@ -16235,7 +16877,7 @@ export type FinancialReportsListResponses = {
|
|
|
16235
16877
|
200: Array<FinancialReport>;
|
|
16236
16878
|
};
|
|
16237
16879
|
export type FinancialReportsListResponse = FinancialReportsListResponses[keyof FinancialReportsListResponses];
|
|
16238
|
-
export type
|
|
16880
|
+
export type FinancialReportsCountData = {
|
|
16239
16881
|
body?: never;
|
|
16240
16882
|
path?: never;
|
|
16241
16883
|
query?: {
|
|
@@ -16273,7 +16915,7 @@ export type FinancialReportsHeadData = {
|
|
|
16273
16915
|
};
|
|
16274
16916
|
url: '/api/financial-reports/';
|
|
16275
16917
|
};
|
|
16276
|
-
export type
|
|
16918
|
+
export type FinancialReportsCountResponses = {
|
|
16277
16919
|
/**
|
|
16278
16920
|
* No response body
|
|
16279
16921
|
*/
|
|
@@ -16312,7 +16954,7 @@ export type FreeipaProfilesListResponses = {
|
|
|
16312
16954
|
200: Array<FreeipaProfile>;
|
|
16313
16955
|
};
|
|
16314
16956
|
export type FreeipaProfilesListResponse = FreeipaProfilesListResponses[keyof FreeipaProfilesListResponses];
|
|
16315
|
-
export type
|
|
16957
|
+
export type FreeipaProfilesCountData = {
|
|
16316
16958
|
body?: never;
|
|
16317
16959
|
path?: never;
|
|
16318
16960
|
query?: {
|
|
@@ -16329,7 +16971,7 @@ export type FreeipaProfilesHeadData = {
|
|
|
16329
16971
|
};
|
|
16330
16972
|
url: '/api/freeipa-profiles/';
|
|
16331
16973
|
};
|
|
16332
|
-
export type
|
|
16974
|
+
export type FreeipaProfilesCountResponses = {
|
|
16333
16975
|
/**
|
|
16334
16976
|
* No response body
|
|
16335
16977
|
*/
|
|
@@ -16419,7 +17061,7 @@ export type GoogleAuthListResponses = {
|
|
|
16419
17061
|
200: Array<GoogleCredentials>;
|
|
16420
17062
|
};
|
|
16421
17063
|
export type GoogleAuthListResponse = GoogleAuthListResponses[keyof GoogleAuthListResponses];
|
|
16422
|
-
export type
|
|
17064
|
+
export type GoogleAuthCountData = {
|
|
16423
17065
|
body?: never;
|
|
16424
17066
|
path?: never;
|
|
16425
17067
|
query?: {
|
|
@@ -16438,7 +17080,7 @@ export type GoogleAuthHeadData = {
|
|
|
16438
17080
|
};
|
|
16439
17081
|
url: '/api/google-auth/';
|
|
16440
17082
|
};
|
|
16441
|
-
export type
|
|
17083
|
+
export type GoogleAuthCountResponses = {
|
|
16442
17084
|
/**
|
|
16443
17085
|
* No response body
|
|
16444
17086
|
*/
|
|
@@ -16493,7 +17135,7 @@ export type GoogleAuthCallbackRetrieveResponses = {
|
|
|
16493
17135
|
*/
|
|
16494
17136
|
200: unknown;
|
|
16495
17137
|
};
|
|
16496
|
-
export type
|
|
17138
|
+
export type GoogleAuthCallbackCountData = {
|
|
16497
17139
|
body?: never;
|
|
16498
17140
|
path?: never;
|
|
16499
17141
|
query: {
|
|
@@ -16508,7 +17150,7 @@ export type GoogleAuthCallbackHeadData = {
|
|
|
16508
17150
|
};
|
|
16509
17151
|
url: '/api/google-auth/callback/';
|
|
16510
17152
|
};
|
|
16511
|
-
export type
|
|
17153
|
+
export type GoogleAuthCallbackCountResponses = {
|
|
16512
17154
|
/**
|
|
16513
17155
|
* No response body
|
|
16514
17156
|
*/
|
|
@@ -16535,7 +17177,7 @@ export type HooksListResponses = {
|
|
|
16535
17177
|
*/
|
|
16536
17178
|
200: unknown;
|
|
16537
17179
|
};
|
|
16538
|
-
export type
|
|
17180
|
+
export type HooksCountData = {
|
|
16539
17181
|
body?: never;
|
|
16540
17182
|
path?: never;
|
|
16541
17183
|
query?: {
|
|
@@ -16550,7 +17192,7 @@ export type HooksHeadData = {
|
|
|
16550
17192
|
};
|
|
16551
17193
|
url: '/api/hooks/';
|
|
16552
17194
|
};
|
|
16553
|
-
export type
|
|
17195
|
+
export type HooksCountResponses = {
|
|
16554
17196
|
/**
|
|
16555
17197
|
* No response body
|
|
16556
17198
|
*/
|
|
@@ -16586,7 +17228,7 @@ export type HooksEmailListResponses = {
|
|
|
16586
17228
|
200: Array<EmailHook>;
|
|
16587
17229
|
};
|
|
16588
17230
|
export type HooksEmailListResponse = HooksEmailListResponses[keyof HooksEmailListResponses];
|
|
16589
|
-
export type
|
|
17231
|
+
export type HooksEmailCountData = {
|
|
16590
17232
|
body?: never;
|
|
16591
17233
|
path?: never;
|
|
16592
17234
|
query?: {
|
|
@@ -16612,7 +17254,7 @@ export type HooksEmailHeadData = {
|
|
|
16612
17254
|
};
|
|
16613
17255
|
url: '/api/hooks-email/';
|
|
16614
17256
|
};
|
|
16615
|
-
export type
|
|
17257
|
+
export type HooksEmailCountResponses = {
|
|
16616
17258
|
/**
|
|
16617
17259
|
* No response body
|
|
16618
17260
|
*/
|
|
@@ -16710,7 +17352,7 @@ export type HooksWebListResponses = {
|
|
|
16710
17352
|
200: Array<WebHook>;
|
|
16711
17353
|
};
|
|
16712
17354
|
export type HooksWebListResponse = HooksWebListResponses[keyof HooksWebListResponses];
|
|
16713
|
-
export type
|
|
17355
|
+
export type HooksWebCountData = {
|
|
16714
17356
|
body?: never;
|
|
16715
17357
|
path?: never;
|
|
16716
17358
|
query?: {
|
|
@@ -16737,7 +17379,7 @@ export type HooksWebHeadData = {
|
|
|
16737
17379
|
};
|
|
16738
17380
|
url: '/api/hooks-web/';
|
|
16739
17381
|
};
|
|
16740
|
-
export type
|
|
17382
|
+
export type HooksWebCountResponses = {
|
|
16741
17383
|
/**
|
|
16742
17384
|
* No response body
|
|
16743
17385
|
*/
|
|
@@ -16823,7 +17465,7 @@ export type IdentityProvidersListResponses = {
|
|
|
16823
17465
|
200: Array<IdentityProvider>;
|
|
16824
17466
|
};
|
|
16825
17467
|
export type IdentityProvidersListResponse = IdentityProvidersListResponses[keyof IdentityProvidersListResponses];
|
|
16826
|
-
export type
|
|
17468
|
+
export type IdentityProvidersCountData = {
|
|
16827
17469
|
body?: never;
|
|
16828
17470
|
path?: never;
|
|
16829
17471
|
query?: {
|
|
@@ -16838,7 +17480,7 @@ export type IdentityProvidersHeadData = {
|
|
|
16838
17480
|
};
|
|
16839
17481
|
url: '/api/identity-providers/';
|
|
16840
17482
|
};
|
|
16841
|
-
export type
|
|
17483
|
+
export type IdentityProvidersCountResponses = {
|
|
16842
17484
|
/**
|
|
16843
17485
|
* No response body
|
|
16844
17486
|
*/
|
|
@@ -16939,7 +17581,7 @@ export type InvoiceItemsListResponses = {
|
|
|
16939
17581
|
200: Array<InvoiceItemDetail>;
|
|
16940
17582
|
};
|
|
16941
17583
|
export type InvoiceItemsListResponse = InvoiceItemsListResponses[keyof InvoiceItemsListResponses];
|
|
16942
|
-
export type
|
|
17584
|
+
export type InvoiceItemsCountData = {
|
|
16943
17585
|
body?: never;
|
|
16944
17586
|
path?: never;
|
|
16945
17587
|
query?: {
|
|
@@ -16969,7 +17611,7 @@ export type InvoiceItemsHeadData = {
|
|
|
16969
17611
|
};
|
|
16970
17612
|
url: '/api/invoice-items/';
|
|
16971
17613
|
};
|
|
16972
|
-
export type
|
|
17614
|
+
export type InvoiceItemsCountResponses = {
|
|
16973
17615
|
/**
|
|
16974
17616
|
* No response body
|
|
16975
17617
|
*/
|
|
@@ -17085,7 +17727,7 @@ export type InvoiceItemsCostsListResponses = {
|
|
|
17085
17727
|
200: Array<InvoiceCost>;
|
|
17086
17728
|
};
|
|
17087
17729
|
export type InvoiceItemsCostsListResponse = InvoiceItemsCostsListResponses[keyof InvoiceItemsCostsListResponses];
|
|
17088
|
-
export type
|
|
17730
|
+
export type InvoiceItemsCostsCountData = {
|
|
17089
17731
|
body?: never;
|
|
17090
17732
|
path?: never;
|
|
17091
17733
|
query?: {
|
|
@@ -17104,7 +17746,7 @@ export type InvoiceItemsCostsHeadData = {
|
|
|
17104
17746
|
};
|
|
17105
17747
|
url: '/api/invoice-items/costs/';
|
|
17106
17748
|
};
|
|
17107
|
-
export type
|
|
17749
|
+
export type InvoiceItemsCostsCountResponses = {
|
|
17108
17750
|
/**
|
|
17109
17751
|
* No response body
|
|
17110
17752
|
*/
|
|
@@ -17129,7 +17771,7 @@ export type InvoiceItemsCustomerCostsForPeriodRetrieveResponses = {
|
|
|
17129
17771
|
200: CostsForPeriod;
|
|
17130
17772
|
};
|
|
17131
17773
|
export type InvoiceItemsCustomerCostsForPeriodRetrieveResponse = InvoiceItemsCustomerCostsForPeriodRetrieveResponses[keyof InvoiceItemsCustomerCostsForPeriodRetrieveResponses];
|
|
17132
|
-
export type
|
|
17774
|
+
export type InvoiceItemsCustomerCostsForPeriodCountData = {
|
|
17133
17775
|
body?: never;
|
|
17134
17776
|
path?: never;
|
|
17135
17777
|
query?: {
|
|
@@ -17144,7 +17786,7 @@ export type InvoiceItemsCustomerCostsForPeriodHeadData = {
|
|
|
17144
17786
|
};
|
|
17145
17787
|
url: '/api/invoice-items/customer_costs_for_period/';
|
|
17146
17788
|
};
|
|
17147
|
-
export type
|
|
17789
|
+
export type InvoiceItemsCustomerCostsForPeriodCountResponses = {
|
|
17148
17790
|
/**
|
|
17149
17791
|
* No response body
|
|
17150
17792
|
*/
|
|
@@ -17169,7 +17811,7 @@ export type InvoiceItemsProjectCostsForPeriodRetrieveResponses = {
|
|
|
17169
17811
|
200: CostsForPeriod;
|
|
17170
17812
|
};
|
|
17171
17813
|
export type InvoiceItemsProjectCostsForPeriodRetrieveResponse = InvoiceItemsProjectCostsForPeriodRetrieveResponses[keyof InvoiceItemsProjectCostsForPeriodRetrieveResponses];
|
|
17172
|
-
export type
|
|
17814
|
+
export type InvoiceItemsProjectCostsForPeriodCountData = {
|
|
17173
17815
|
body?: never;
|
|
17174
17816
|
path?: never;
|
|
17175
17817
|
query?: {
|
|
@@ -17184,7 +17826,7 @@ export type InvoiceItemsProjectCostsForPeriodHeadData = {
|
|
|
17184
17826
|
};
|
|
17185
17827
|
url: '/api/invoice-items/project_costs_for_period/';
|
|
17186
17828
|
};
|
|
17187
|
-
export type
|
|
17829
|
+
export type InvoiceItemsProjectCostsForPeriodCountResponses = {
|
|
17188
17830
|
/**
|
|
17189
17831
|
* No response body
|
|
17190
17832
|
*/
|
|
@@ -17216,7 +17858,7 @@ export type InvoiceItemsTotalPriceRetrieveResponses = {
|
|
|
17216
17858
|
200: InvoiceItemTotalPrice;
|
|
17217
17859
|
};
|
|
17218
17860
|
export type InvoiceItemsTotalPriceRetrieveResponse = InvoiceItemsTotalPriceRetrieveResponses[keyof InvoiceItemsTotalPriceRetrieveResponses];
|
|
17219
|
-
export type
|
|
17861
|
+
export type InvoiceItemsTotalPriceCountData = {
|
|
17220
17862
|
body?: never;
|
|
17221
17863
|
path?: never;
|
|
17222
17864
|
query?: {
|
|
@@ -17238,7 +17880,7 @@ export type InvoiceItemsTotalPriceHeadData = {
|
|
|
17238
17880
|
};
|
|
17239
17881
|
url: '/api/invoice-items/total_price/';
|
|
17240
17882
|
};
|
|
17241
|
-
export type
|
|
17883
|
+
export type InvoiceItemsTotalPriceCountResponses = {
|
|
17242
17884
|
/**
|
|
17243
17885
|
* No response body
|
|
17244
17886
|
*/
|
|
@@ -17290,7 +17932,7 @@ export type InvoicesListResponses = {
|
|
|
17290
17932
|
200: Array<Invoice>;
|
|
17291
17933
|
};
|
|
17292
17934
|
export type InvoicesListResponse = InvoicesListResponses[keyof InvoicesListResponses];
|
|
17293
|
-
export type
|
|
17935
|
+
export type InvoicesCountData = {
|
|
17294
17936
|
body?: never;
|
|
17295
17937
|
path?: never;
|
|
17296
17938
|
query?: {
|
|
@@ -17319,7 +17961,7 @@ export type InvoicesHeadData = {
|
|
|
17319
17961
|
};
|
|
17320
17962
|
url: '/api/invoices/';
|
|
17321
17963
|
};
|
|
17322
|
-
export type
|
|
17964
|
+
export type InvoicesCountResponses = {
|
|
17323
17965
|
/**
|
|
17324
17966
|
* No response body
|
|
17325
17967
|
*/
|
|
@@ -17478,7 +18120,7 @@ export type InvoicesGrowthRetrieveResponses = {
|
|
|
17478
18120
|
200: InvoiceGrowth;
|
|
17479
18121
|
};
|
|
17480
18122
|
export type InvoicesGrowthRetrieveResponse = InvoicesGrowthRetrieveResponses[keyof InvoicesGrowthRetrieveResponses];
|
|
17481
|
-
export type
|
|
18123
|
+
export type InvoicesGrowthCountData = {
|
|
17482
18124
|
body?: never;
|
|
17483
18125
|
path?: never;
|
|
17484
18126
|
query?: {
|
|
@@ -17488,7 +18130,7 @@ export type InvoicesGrowthHeadData = {
|
|
|
17488
18130
|
};
|
|
17489
18131
|
url: '/api/invoices/growth/';
|
|
17490
18132
|
};
|
|
17491
|
-
export type
|
|
18133
|
+
export type InvoicesGrowthCountResponses = {
|
|
17492
18134
|
/**
|
|
17493
18135
|
* No response body
|
|
17494
18136
|
*/
|
|
@@ -17516,7 +18158,7 @@ export type KeycloakGroupsListResponses = {
|
|
|
17516
18158
|
200: Array<KeycloakGroup>;
|
|
17517
18159
|
};
|
|
17518
18160
|
export type KeycloakGroupsListResponse = KeycloakGroupsListResponses[keyof KeycloakGroupsListResponses];
|
|
17519
|
-
export type
|
|
18161
|
+
export type KeycloakGroupsCountData = {
|
|
17520
18162
|
body?: never;
|
|
17521
18163
|
path?: never;
|
|
17522
18164
|
query?: {
|
|
@@ -17534,7 +18176,7 @@ export type KeycloakGroupsHeadData = {
|
|
|
17534
18176
|
};
|
|
17535
18177
|
url: '/api/keycloak-groups/';
|
|
17536
18178
|
};
|
|
17537
|
-
export type
|
|
18179
|
+
export type KeycloakGroupsCountResponses = {
|
|
17538
18180
|
/**
|
|
17539
18181
|
* No response body
|
|
17540
18182
|
*/
|
|
@@ -17580,7 +18222,7 @@ export type KeycloakUserGroupMembershipsListResponses = {
|
|
|
17580
18222
|
200: Array<KeycloakUserGroupMembership>;
|
|
17581
18223
|
};
|
|
17582
18224
|
export type KeycloakUserGroupMembershipsListResponse = KeycloakUserGroupMembershipsListResponses[keyof KeycloakUserGroupMembershipsListResponses];
|
|
17583
|
-
export type
|
|
18225
|
+
export type KeycloakUserGroupMembershipsCountData = {
|
|
17584
18226
|
body?: never;
|
|
17585
18227
|
path?: never;
|
|
17586
18228
|
query?: {
|
|
@@ -17604,7 +18246,7 @@ export type KeycloakUserGroupMembershipsHeadData = {
|
|
|
17604
18246
|
};
|
|
17605
18247
|
url: '/api/keycloak-user-group-memberships/';
|
|
17606
18248
|
};
|
|
17607
|
-
export type
|
|
18249
|
+
export type KeycloakUserGroupMembershipsCountResponses = {
|
|
17608
18250
|
/**
|
|
17609
18251
|
* No response body
|
|
17610
18252
|
*/
|
|
@@ -17713,7 +18355,7 @@ export type KeysListResponses = {
|
|
|
17713
18355
|
200: Array<SshKey>;
|
|
17714
18356
|
};
|
|
17715
18357
|
export type KeysListResponse = KeysListResponses[keyof KeysListResponses];
|
|
17716
|
-
export type
|
|
18358
|
+
export type KeysCountData = {
|
|
17717
18359
|
body?: never;
|
|
17718
18360
|
path?: never;
|
|
17719
18361
|
query?: {
|
|
@@ -17750,7 +18392,7 @@ export type KeysHeadData = {
|
|
|
17750
18392
|
};
|
|
17751
18393
|
url: '/api/keys/';
|
|
17752
18394
|
};
|
|
17753
|
-
export type
|
|
18395
|
+
export type KeysCountResponses = {
|
|
17754
18396
|
/**
|
|
17755
18397
|
* No response body
|
|
17756
18398
|
*/
|
|
@@ -17819,7 +18461,7 @@ export type LexisLinksListResponses = {
|
|
|
17819
18461
|
200: Array<LexisLink>;
|
|
17820
18462
|
};
|
|
17821
18463
|
export type LexisLinksListResponse = LexisLinksListResponses[keyof LexisLinksListResponses];
|
|
17822
|
-
export type
|
|
18464
|
+
export type LexisLinksCountData = {
|
|
17823
18465
|
body?: never;
|
|
17824
18466
|
path?: never;
|
|
17825
18467
|
query?: {
|
|
@@ -17839,7 +18481,7 @@ export type LexisLinksHeadData = {
|
|
|
17839
18481
|
};
|
|
17840
18482
|
url: '/api/lexis-links/';
|
|
17841
18483
|
};
|
|
17842
|
-
export type
|
|
18484
|
+
export type LexisLinksCountResponses = {
|
|
17843
18485
|
/**
|
|
17844
18486
|
* No response body
|
|
17845
18487
|
*/
|
|
@@ -17927,7 +18569,7 @@ export type MaintenanceAnnouncementOfferingsListResponses = {
|
|
|
17927
18569
|
200: Array<MaintenanceAnnouncementOffering>;
|
|
17928
18570
|
};
|
|
17929
18571
|
export type MaintenanceAnnouncementOfferingsListResponse = MaintenanceAnnouncementOfferingsListResponses[keyof MaintenanceAnnouncementOfferingsListResponses];
|
|
17930
|
-
export type
|
|
18572
|
+
export type MaintenanceAnnouncementOfferingsCountData = {
|
|
17931
18573
|
body?: never;
|
|
17932
18574
|
path?: never;
|
|
17933
18575
|
query?: {
|
|
@@ -17942,7 +18584,7 @@ export type MaintenanceAnnouncementOfferingsHeadData = {
|
|
|
17942
18584
|
};
|
|
17943
18585
|
url: '/api/maintenance-announcement-offerings/';
|
|
17944
18586
|
};
|
|
17945
|
-
export type
|
|
18587
|
+
export type MaintenanceAnnouncementOfferingsCountResponses = {
|
|
17946
18588
|
/**
|
|
17947
18589
|
* No response body
|
|
17948
18590
|
*/
|
|
@@ -18038,7 +18680,7 @@ export type MaintenanceAnnouncementTemplateOfferingsListResponses = {
|
|
|
18038
18680
|
200: Array<MaintenanceAnnouncementOfferingTemplate>;
|
|
18039
18681
|
};
|
|
18040
18682
|
export type MaintenanceAnnouncementTemplateOfferingsListResponse = MaintenanceAnnouncementTemplateOfferingsListResponses[keyof MaintenanceAnnouncementTemplateOfferingsListResponses];
|
|
18041
|
-
export type
|
|
18683
|
+
export type MaintenanceAnnouncementTemplateOfferingsCountData = {
|
|
18042
18684
|
body?: never;
|
|
18043
18685
|
path?: never;
|
|
18044
18686
|
query?: {
|
|
@@ -18063,7 +18705,7 @@ export type MaintenanceAnnouncementTemplateOfferingsHeadData = {
|
|
|
18063
18705
|
};
|
|
18064
18706
|
url: '/api/maintenance-announcement-template-offerings/';
|
|
18065
18707
|
};
|
|
18066
|
-
export type
|
|
18708
|
+
export type MaintenanceAnnouncementTemplateOfferingsCountResponses = {
|
|
18067
18709
|
/**
|
|
18068
18710
|
* No response body
|
|
18069
18711
|
*/
|
|
@@ -18162,7 +18804,7 @@ export type MaintenanceAnnouncementsListResponses = {
|
|
|
18162
18804
|
200: Array<MaintenanceAnnouncement>;
|
|
18163
18805
|
};
|
|
18164
18806
|
export type MaintenanceAnnouncementsListResponse = MaintenanceAnnouncementsListResponses[keyof MaintenanceAnnouncementsListResponses];
|
|
18165
|
-
export type
|
|
18807
|
+
export type MaintenanceAnnouncementsCountData = {
|
|
18166
18808
|
body?: never;
|
|
18167
18809
|
path?: never;
|
|
18168
18810
|
query?: {
|
|
@@ -18190,7 +18832,7 @@ export type MaintenanceAnnouncementsHeadData = {
|
|
|
18190
18832
|
};
|
|
18191
18833
|
url: '/api/maintenance-announcements/';
|
|
18192
18834
|
};
|
|
18193
|
-
export type
|
|
18835
|
+
export type MaintenanceAnnouncementsCountResponses = {
|
|
18194
18836
|
/**
|
|
18195
18837
|
* No response body
|
|
18196
18838
|
*/
|
|
@@ -18233,7 +18875,7 @@ export type MaintenanceAnnouncementsTemplateListResponses = {
|
|
|
18233
18875
|
200: Array<MaintenanceAnnouncementTemplate>;
|
|
18234
18876
|
};
|
|
18235
18877
|
export type MaintenanceAnnouncementsTemplateListResponse = MaintenanceAnnouncementsTemplateListResponses[keyof MaintenanceAnnouncementsTemplateListResponses];
|
|
18236
|
-
export type
|
|
18878
|
+
export type MaintenanceAnnouncementsTemplateCountData = {
|
|
18237
18879
|
body?: never;
|
|
18238
18880
|
path?: never;
|
|
18239
18881
|
query?: {
|
|
@@ -18256,7 +18898,7 @@ export type MaintenanceAnnouncementsTemplateHeadData = {
|
|
|
18256
18898
|
};
|
|
18257
18899
|
url: '/api/maintenance-announcements-template/';
|
|
18258
18900
|
};
|
|
18259
|
-
export type
|
|
18901
|
+
export type MaintenanceAnnouncementsTemplateCountResponses = {
|
|
18260
18902
|
/**
|
|
18261
18903
|
* No response body
|
|
18262
18904
|
*/
|
|
@@ -18425,7 +19067,7 @@ export type MarketplaceCategoriesListResponses = {
|
|
|
18425
19067
|
200: Array<MarketplaceCategory>;
|
|
18426
19068
|
};
|
|
18427
19069
|
export type MarketplaceCategoriesListResponse = MarketplaceCategoriesListResponses[keyof MarketplaceCategoriesListResponses];
|
|
18428
|
-
export type
|
|
19070
|
+
export type MarketplaceCategoriesCountData = {
|
|
18429
19071
|
body?: never;
|
|
18430
19072
|
path?: never;
|
|
18431
19073
|
query?: {
|
|
@@ -18459,7 +19101,7 @@ export type MarketplaceCategoriesHeadData = {
|
|
|
18459
19101
|
};
|
|
18460
19102
|
url: '/api/marketplace-categories/';
|
|
18461
19103
|
};
|
|
18462
|
-
export type
|
|
19104
|
+
export type MarketplaceCategoriesCountResponses = {
|
|
18463
19105
|
/**
|
|
18464
19106
|
* No response body
|
|
18465
19107
|
*/
|
|
@@ -18549,7 +19191,7 @@ export type MarketplaceCategoryColumnsListResponses = {
|
|
|
18549
19191
|
200: Array<CategoryColumn>;
|
|
18550
19192
|
};
|
|
18551
19193
|
export type MarketplaceCategoryColumnsListResponse = MarketplaceCategoryColumnsListResponses[keyof MarketplaceCategoryColumnsListResponses];
|
|
18552
|
-
export type
|
|
19194
|
+
export type MarketplaceCategoryColumnsCountData = {
|
|
18553
19195
|
body?: never;
|
|
18554
19196
|
path?: never;
|
|
18555
19197
|
query?: {
|
|
@@ -18566,7 +19208,7 @@ export type MarketplaceCategoryColumnsHeadData = {
|
|
|
18566
19208
|
};
|
|
18567
19209
|
url: '/api/marketplace-category-columns/';
|
|
18568
19210
|
};
|
|
18569
|
-
export type
|
|
19211
|
+
export type MarketplaceCategoryColumnsCountResponses = {
|
|
18570
19212
|
/**
|
|
18571
19213
|
* No response body
|
|
18572
19214
|
*/
|
|
@@ -18655,7 +19297,7 @@ export type MarketplaceCategoryComponentUsagesListResponses = {
|
|
|
18655
19297
|
200: Array<CategoryComponentUsage>;
|
|
18656
19298
|
};
|
|
18657
19299
|
export type MarketplaceCategoryComponentUsagesListResponse = MarketplaceCategoryComponentUsagesListResponses[keyof MarketplaceCategoryComponentUsagesListResponses];
|
|
18658
|
-
export type
|
|
19300
|
+
export type MarketplaceCategoryComponentUsagesCountData = {
|
|
18659
19301
|
body?: never;
|
|
18660
19302
|
path?: never;
|
|
18661
19303
|
query?: {
|
|
@@ -18672,7 +19314,7 @@ export type MarketplaceCategoryComponentUsagesHeadData = {
|
|
|
18672
19314
|
};
|
|
18673
19315
|
url: '/api/marketplace-category-component-usages/';
|
|
18674
19316
|
};
|
|
18675
|
-
export type
|
|
19317
|
+
export type MarketplaceCategoryComponentUsagesCountResponses = {
|
|
18676
19318
|
/**
|
|
18677
19319
|
* No response body
|
|
18678
19320
|
*/
|
|
@@ -18714,7 +19356,7 @@ export type MarketplaceCategoryComponentsListResponses = {
|
|
|
18714
19356
|
200: Array<CategoryComponents>;
|
|
18715
19357
|
};
|
|
18716
19358
|
export type MarketplaceCategoryComponentsListResponse = MarketplaceCategoryComponentsListResponses[keyof MarketplaceCategoryComponentsListResponses];
|
|
18717
|
-
export type
|
|
19359
|
+
export type MarketplaceCategoryComponentsCountData = {
|
|
18718
19360
|
body?: never;
|
|
18719
19361
|
path?: never;
|
|
18720
19362
|
query?: {
|
|
@@ -18729,7 +19371,7 @@ export type MarketplaceCategoryComponentsHeadData = {
|
|
|
18729
19371
|
};
|
|
18730
19372
|
url: '/api/marketplace-category-components/';
|
|
18731
19373
|
};
|
|
18732
|
-
export type
|
|
19374
|
+
export type MarketplaceCategoryComponentsCountResponses = {
|
|
18733
19375
|
/**
|
|
18734
19376
|
* No response body
|
|
18735
19377
|
*/
|
|
@@ -18829,7 +19471,7 @@ export type MarketplaceCategoryGroupsListResponses = {
|
|
|
18829
19471
|
200: Array<CategoryGroup>;
|
|
18830
19472
|
};
|
|
18831
19473
|
export type MarketplaceCategoryGroupsListResponse = MarketplaceCategoryGroupsListResponses[keyof MarketplaceCategoryGroupsListResponses];
|
|
18832
|
-
export type
|
|
19474
|
+
export type MarketplaceCategoryGroupsCountData = {
|
|
18833
19475
|
body?: never;
|
|
18834
19476
|
path?: never;
|
|
18835
19477
|
query?: {
|
|
@@ -18845,7 +19487,7 @@ export type MarketplaceCategoryGroupsHeadData = {
|
|
|
18845
19487
|
};
|
|
18846
19488
|
url: '/api/marketplace-category-groups/';
|
|
18847
19489
|
};
|
|
18848
|
-
export type
|
|
19490
|
+
export type MarketplaceCategoryGroupsCountResponses = {
|
|
18849
19491
|
/**
|
|
18850
19492
|
* No response body
|
|
18851
19493
|
*/
|
|
@@ -18933,7 +19575,7 @@ export type MarketplaceCategoryHelpArticlesListResponses = {
|
|
|
18933
19575
|
200: Array<CategoryHelpArticles>;
|
|
18934
19576
|
};
|
|
18935
19577
|
export type MarketplaceCategoryHelpArticlesListResponse = MarketplaceCategoryHelpArticlesListResponses[keyof MarketplaceCategoryHelpArticlesListResponses];
|
|
18936
|
-
export type
|
|
19578
|
+
export type MarketplaceCategoryHelpArticlesCountData = {
|
|
18937
19579
|
body?: never;
|
|
18938
19580
|
path?: never;
|
|
18939
19581
|
query?: {
|
|
@@ -18948,7 +19590,7 @@ export type MarketplaceCategoryHelpArticlesHeadData = {
|
|
|
18948
19590
|
};
|
|
18949
19591
|
url: '/api/marketplace-category-help-articles/';
|
|
18950
19592
|
};
|
|
18951
|
-
export type
|
|
19593
|
+
export type MarketplaceCategoryHelpArticlesCountResponses = {
|
|
18952
19594
|
/**
|
|
18953
19595
|
* No response body
|
|
18954
19596
|
*/
|
|
@@ -19027,470 +19669,6 @@ export type MarketplaceCategoryHelpArticlesUpdateResponses = {
|
|
|
19027
19669
|
200: CategoryHelpArticles;
|
|
19028
19670
|
};
|
|
19029
19671
|
export type MarketplaceCategoryHelpArticlesUpdateResponse = MarketplaceCategoryHelpArticlesUpdateResponses[keyof MarketplaceCategoryHelpArticlesUpdateResponses];
|
|
19030
|
-
export type MarketplaceChecklistsAdminListData = {
|
|
19031
|
-
body?: never;
|
|
19032
|
-
path?: never;
|
|
19033
|
-
query?: {
|
|
19034
|
-
/**
|
|
19035
|
-
* A page number within the paginated result set.
|
|
19036
|
-
*/
|
|
19037
|
-
page?: number;
|
|
19038
|
-
/**
|
|
19039
|
-
* Number of results to return per page.
|
|
19040
|
-
*/
|
|
19041
|
-
page_size?: number;
|
|
19042
|
-
};
|
|
19043
|
-
url: '/api/marketplace-checklists-admin/';
|
|
19044
|
-
};
|
|
19045
|
-
export type MarketplaceChecklistsAdminListResponses = {
|
|
19046
|
-
200: Array<ChecklistAdmin>;
|
|
19047
|
-
};
|
|
19048
|
-
export type MarketplaceChecklistsAdminListResponse = MarketplaceChecklistsAdminListResponses[keyof MarketplaceChecklistsAdminListResponses];
|
|
19049
|
-
export type MarketplaceChecklistsAdminHeadData = {
|
|
19050
|
-
body?: never;
|
|
19051
|
-
path?: never;
|
|
19052
|
-
query?: {
|
|
19053
|
-
/**
|
|
19054
|
-
* A page number within the paginated result set.
|
|
19055
|
-
*/
|
|
19056
|
-
page?: number;
|
|
19057
|
-
/**
|
|
19058
|
-
* Number of results to return per page.
|
|
19059
|
-
*/
|
|
19060
|
-
page_size?: number;
|
|
19061
|
-
};
|
|
19062
|
-
url: '/api/marketplace-checklists-admin/';
|
|
19063
|
-
};
|
|
19064
|
-
export type MarketplaceChecklistsAdminHeadResponses = {
|
|
19065
|
-
/**
|
|
19066
|
-
* No response body
|
|
19067
|
-
*/
|
|
19068
|
-
200: unknown;
|
|
19069
|
-
};
|
|
19070
|
-
export type MarketplaceChecklistsAdminCreateData = {
|
|
19071
|
-
body: CreateChecklistRequest;
|
|
19072
|
-
path?: never;
|
|
19073
|
-
query?: never;
|
|
19074
|
-
url: '/api/marketplace-checklists-admin/';
|
|
19075
|
-
};
|
|
19076
|
-
export type MarketplaceChecklistsAdminCreateResponses = {
|
|
19077
|
-
201: CreateChecklist;
|
|
19078
|
-
};
|
|
19079
|
-
export type MarketplaceChecklistsAdminCreateResponse = MarketplaceChecklistsAdminCreateResponses[keyof MarketplaceChecklistsAdminCreateResponses];
|
|
19080
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesListData = {
|
|
19081
|
-
body?: never;
|
|
19082
|
-
path?: never;
|
|
19083
|
-
query?: {
|
|
19084
|
-
depends_on_question_uuid?: string;
|
|
19085
|
-
/**
|
|
19086
|
-
* A page number within the paginated result set.
|
|
19087
|
-
*/
|
|
19088
|
-
page?: number;
|
|
19089
|
-
/**
|
|
19090
|
-
* Number of results to return per page.
|
|
19091
|
-
*/
|
|
19092
|
-
page_size?: number;
|
|
19093
|
-
question_uuid?: string;
|
|
19094
|
-
};
|
|
19095
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/';
|
|
19096
|
-
};
|
|
19097
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesListResponses = {
|
|
19098
|
-
200: Array<QuestionDependency>;
|
|
19099
|
-
};
|
|
19100
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesListResponse = MarketplaceChecklistsAdminQuestionDependenciesListResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesListResponses];
|
|
19101
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesHeadData = {
|
|
19102
|
-
body?: never;
|
|
19103
|
-
path?: never;
|
|
19104
|
-
query?: {
|
|
19105
|
-
depends_on_question_uuid?: string;
|
|
19106
|
-
/**
|
|
19107
|
-
* A page number within the paginated result set.
|
|
19108
|
-
*/
|
|
19109
|
-
page?: number;
|
|
19110
|
-
/**
|
|
19111
|
-
* Number of results to return per page.
|
|
19112
|
-
*/
|
|
19113
|
-
page_size?: number;
|
|
19114
|
-
question_uuid?: string;
|
|
19115
|
-
};
|
|
19116
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/';
|
|
19117
|
-
};
|
|
19118
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesHeadResponses = {
|
|
19119
|
-
/**
|
|
19120
|
-
* No response body
|
|
19121
|
-
*/
|
|
19122
|
-
200: unknown;
|
|
19123
|
-
};
|
|
19124
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesCreateData = {
|
|
19125
|
-
body: QuestionDependencyRequest;
|
|
19126
|
-
path?: never;
|
|
19127
|
-
query?: never;
|
|
19128
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/';
|
|
19129
|
-
};
|
|
19130
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesCreateResponses = {
|
|
19131
|
-
201: QuestionDependency;
|
|
19132
|
-
};
|
|
19133
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesCreateResponse = MarketplaceChecklistsAdminQuestionDependenciesCreateResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesCreateResponses];
|
|
19134
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesDestroyData = {
|
|
19135
|
-
body?: never;
|
|
19136
|
-
path: {
|
|
19137
|
-
uuid: string;
|
|
19138
|
-
};
|
|
19139
|
-
query?: never;
|
|
19140
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
|
|
19141
|
-
};
|
|
19142
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesDestroyResponses = {
|
|
19143
|
-
/**
|
|
19144
|
-
* No response body
|
|
19145
|
-
*/
|
|
19146
|
-
204: void;
|
|
19147
|
-
};
|
|
19148
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesDestroyResponse = MarketplaceChecklistsAdminQuestionDependenciesDestroyResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesDestroyResponses];
|
|
19149
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesRetrieveData = {
|
|
19150
|
-
body?: never;
|
|
19151
|
-
path: {
|
|
19152
|
-
uuid: string;
|
|
19153
|
-
};
|
|
19154
|
-
query?: never;
|
|
19155
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
|
|
19156
|
-
};
|
|
19157
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponses = {
|
|
19158
|
-
200: QuestionDependency;
|
|
19159
|
-
};
|
|
19160
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponse = MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesRetrieveResponses];
|
|
19161
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateData = {
|
|
19162
|
-
body?: PatchedQuestionDependencyRequest;
|
|
19163
|
-
path: {
|
|
19164
|
-
uuid: string;
|
|
19165
|
-
};
|
|
19166
|
-
query?: never;
|
|
19167
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
|
|
19168
|
-
};
|
|
19169
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponses = {
|
|
19170
|
-
200: QuestionDependency;
|
|
19171
|
-
};
|
|
19172
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponse = MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesPartialUpdateResponses];
|
|
19173
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesUpdateData = {
|
|
19174
|
-
body: QuestionDependencyRequest;
|
|
19175
|
-
path: {
|
|
19176
|
-
uuid: string;
|
|
19177
|
-
};
|
|
19178
|
-
query?: never;
|
|
19179
|
-
url: '/api/marketplace-checklists-admin-question-dependencies/{uuid}/';
|
|
19180
|
-
};
|
|
19181
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesUpdateResponses = {
|
|
19182
|
-
200: QuestionDependency;
|
|
19183
|
-
};
|
|
19184
|
-
export type MarketplaceChecklistsAdminQuestionDependenciesUpdateResponse = MarketplaceChecklistsAdminQuestionDependenciesUpdateResponses[keyof MarketplaceChecklistsAdminQuestionDependenciesUpdateResponses];
|
|
19185
|
-
export type MarketplaceChecklistsAdminQuestionOptionsListData = {
|
|
19186
|
-
body?: never;
|
|
19187
|
-
path?: never;
|
|
19188
|
-
query?: {
|
|
19189
|
-
/**
|
|
19190
|
-
* A page number within the paginated result set.
|
|
19191
|
-
*/
|
|
19192
|
-
page?: number;
|
|
19193
|
-
/**
|
|
19194
|
-
* Number of results to return per page.
|
|
19195
|
-
*/
|
|
19196
|
-
page_size?: number;
|
|
19197
|
-
question_uuid?: string;
|
|
19198
|
-
};
|
|
19199
|
-
url: '/api/marketplace-checklists-admin-question-options/';
|
|
19200
|
-
};
|
|
19201
|
-
export type MarketplaceChecklistsAdminQuestionOptionsListResponses = {
|
|
19202
|
-
200: Array<QuestionOptionsAdmin>;
|
|
19203
|
-
};
|
|
19204
|
-
export type MarketplaceChecklistsAdminQuestionOptionsListResponse = MarketplaceChecklistsAdminQuestionOptionsListResponses[keyof MarketplaceChecklistsAdminQuestionOptionsListResponses];
|
|
19205
|
-
export type MarketplaceChecklistsAdminQuestionOptionsHeadData = {
|
|
19206
|
-
body?: never;
|
|
19207
|
-
path?: never;
|
|
19208
|
-
query?: {
|
|
19209
|
-
/**
|
|
19210
|
-
* A page number within the paginated result set.
|
|
19211
|
-
*/
|
|
19212
|
-
page?: number;
|
|
19213
|
-
/**
|
|
19214
|
-
* Number of results to return per page.
|
|
19215
|
-
*/
|
|
19216
|
-
page_size?: number;
|
|
19217
|
-
question_uuid?: string;
|
|
19218
|
-
};
|
|
19219
|
-
url: '/api/marketplace-checklists-admin-question-options/';
|
|
19220
|
-
};
|
|
19221
|
-
export type MarketplaceChecklistsAdminQuestionOptionsHeadResponses = {
|
|
19222
|
-
/**
|
|
19223
|
-
* No response body
|
|
19224
|
-
*/
|
|
19225
|
-
200: unknown;
|
|
19226
|
-
};
|
|
19227
|
-
export type MarketplaceChecklistsAdminQuestionOptionsCreateData = {
|
|
19228
|
-
body: QuestionOptionsAdminRequest;
|
|
19229
|
-
path?: never;
|
|
19230
|
-
query?: never;
|
|
19231
|
-
url: '/api/marketplace-checklists-admin-question-options/';
|
|
19232
|
-
};
|
|
19233
|
-
export type MarketplaceChecklistsAdminQuestionOptionsCreateResponses = {
|
|
19234
|
-
201: QuestionOptionsAdmin;
|
|
19235
|
-
};
|
|
19236
|
-
export type MarketplaceChecklistsAdminQuestionOptionsCreateResponse = MarketplaceChecklistsAdminQuestionOptionsCreateResponses[keyof MarketplaceChecklistsAdminQuestionOptionsCreateResponses];
|
|
19237
|
-
export type MarketplaceChecklistsAdminQuestionOptionsDestroyData = {
|
|
19238
|
-
body?: never;
|
|
19239
|
-
path: {
|
|
19240
|
-
uuid: string;
|
|
19241
|
-
};
|
|
19242
|
-
query?: never;
|
|
19243
|
-
url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
|
|
19244
|
-
};
|
|
19245
|
-
export type MarketplaceChecklistsAdminQuestionOptionsDestroyResponses = {
|
|
19246
|
-
/**
|
|
19247
|
-
* No response body
|
|
19248
|
-
*/
|
|
19249
|
-
204: void;
|
|
19250
|
-
};
|
|
19251
|
-
export type MarketplaceChecklistsAdminQuestionOptionsDestroyResponse = MarketplaceChecklistsAdminQuestionOptionsDestroyResponses[keyof MarketplaceChecklistsAdminQuestionOptionsDestroyResponses];
|
|
19252
|
-
export type MarketplaceChecklistsAdminQuestionOptionsRetrieveData = {
|
|
19253
|
-
body?: never;
|
|
19254
|
-
path: {
|
|
19255
|
-
uuid: string;
|
|
19256
|
-
};
|
|
19257
|
-
query?: never;
|
|
19258
|
-
url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
|
|
19259
|
-
};
|
|
19260
|
-
export type MarketplaceChecklistsAdminQuestionOptionsRetrieveResponses = {
|
|
19261
|
-
200: QuestionOptionsAdmin;
|
|
19262
|
-
};
|
|
19263
|
-
export type MarketplaceChecklistsAdminQuestionOptionsRetrieveResponse = MarketplaceChecklistsAdminQuestionOptionsRetrieveResponses[keyof MarketplaceChecklistsAdminQuestionOptionsRetrieveResponses];
|
|
19264
|
-
export type MarketplaceChecklistsAdminQuestionOptionsPartialUpdateData = {
|
|
19265
|
-
body?: PatchedQuestionOptionsAdminRequest;
|
|
19266
|
-
path: {
|
|
19267
|
-
uuid: string;
|
|
19268
|
-
};
|
|
19269
|
-
query?: never;
|
|
19270
|
-
url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
|
|
19271
|
-
};
|
|
19272
|
-
export type MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponses = {
|
|
19273
|
-
200: QuestionOptionsAdmin;
|
|
19274
|
-
};
|
|
19275
|
-
export type MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponse = MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponses[keyof MarketplaceChecklistsAdminQuestionOptionsPartialUpdateResponses];
|
|
19276
|
-
export type MarketplaceChecklistsAdminQuestionOptionsUpdateData = {
|
|
19277
|
-
body: QuestionOptionsAdminRequest;
|
|
19278
|
-
path: {
|
|
19279
|
-
uuid: string;
|
|
19280
|
-
};
|
|
19281
|
-
query?: never;
|
|
19282
|
-
url: '/api/marketplace-checklists-admin-question-options/{uuid}/';
|
|
19283
|
-
};
|
|
19284
|
-
export type MarketplaceChecklistsAdminQuestionOptionsUpdateResponses = {
|
|
19285
|
-
200: QuestionOptionsAdmin;
|
|
19286
|
-
};
|
|
19287
|
-
export type MarketplaceChecklistsAdminQuestionOptionsUpdateResponse = MarketplaceChecklistsAdminQuestionOptionsUpdateResponses[keyof MarketplaceChecklistsAdminQuestionOptionsUpdateResponses];
|
|
19288
|
-
export type MarketplaceChecklistsAdminQuestionsListData = {
|
|
19289
|
-
body?: never;
|
|
19290
|
-
path?: never;
|
|
19291
|
-
query?: {
|
|
19292
|
-
checklist_uuid?: string;
|
|
19293
|
-
/**
|
|
19294
|
-
* A page number within the paginated result set.
|
|
19295
|
-
*/
|
|
19296
|
-
page?: number;
|
|
19297
|
-
/**
|
|
19298
|
-
* Number of results to return per page.
|
|
19299
|
-
*/
|
|
19300
|
-
page_size?: number;
|
|
19301
|
-
};
|
|
19302
|
-
url: '/api/marketplace-checklists-admin-questions/';
|
|
19303
|
-
};
|
|
19304
|
-
export type MarketplaceChecklistsAdminQuestionsListResponses = {
|
|
19305
|
-
200: Array<QuestionAdmin>;
|
|
19306
|
-
};
|
|
19307
|
-
export type MarketplaceChecklistsAdminQuestionsListResponse = MarketplaceChecklistsAdminQuestionsListResponses[keyof MarketplaceChecklistsAdminQuestionsListResponses];
|
|
19308
|
-
export type MarketplaceChecklistsAdminQuestionsHeadData = {
|
|
19309
|
-
body?: never;
|
|
19310
|
-
path?: never;
|
|
19311
|
-
query?: {
|
|
19312
|
-
checklist_uuid?: string;
|
|
19313
|
-
/**
|
|
19314
|
-
* A page number within the paginated result set.
|
|
19315
|
-
*/
|
|
19316
|
-
page?: number;
|
|
19317
|
-
/**
|
|
19318
|
-
* Number of results to return per page.
|
|
19319
|
-
*/
|
|
19320
|
-
page_size?: number;
|
|
19321
|
-
};
|
|
19322
|
-
url: '/api/marketplace-checklists-admin-questions/';
|
|
19323
|
-
};
|
|
19324
|
-
export type MarketplaceChecklistsAdminQuestionsHeadResponses = {
|
|
19325
|
-
/**
|
|
19326
|
-
* No response body
|
|
19327
|
-
*/
|
|
19328
|
-
200: unknown;
|
|
19329
|
-
};
|
|
19330
|
-
export type MarketplaceChecklistsAdminQuestionsCreateData = {
|
|
19331
|
-
body: QuestionAdminRequest;
|
|
19332
|
-
path?: never;
|
|
19333
|
-
query?: never;
|
|
19334
|
-
url: '/api/marketplace-checklists-admin-questions/';
|
|
19335
|
-
};
|
|
19336
|
-
export type MarketplaceChecklistsAdminQuestionsCreateResponses = {
|
|
19337
|
-
201: QuestionAdmin;
|
|
19338
|
-
};
|
|
19339
|
-
export type MarketplaceChecklistsAdminQuestionsCreateResponse = MarketplaceChecklistsAdminQuestionsCreateResponses[keyof MarketplaceChecklistsAdminQuestionsCreateResponses];
|
|
19340
|
-
export type MarketplaceChecklistsAdminQuestionsDestroyData = {
|
|
19341
|
-
body?: never;
|
|
19342
|
-
path: {
|
|
19343
|
-
uuid: string;
|
|
19344
|
-
};
|
|
19345
|
-
query?: never;
|
|
19346
|
-
url: '/api/marketplace-checklists-admin-questions/{uuid}/';
|
|
19347
|
-
};
|
|
19348
|
-
export type MarketplaceChecklistsAdminQuestionsDestroyResponses = {
|
|
19349
|
-
/**
|
|
19350
|
-
* No response body
|
|
19351
|
-
*/
|
|
19352
|
-
204: void;
|
|
19353
|
-
};
|
|
19354
|
-
export type MarketplaceChecklistsAdminQuestionsDestroyResponse = MarketplaceChecklistsAdminQuestionsDestroyResponses[keyof MarketplaceChecklistsAdminQuestionsDestroyResponses];
|
|
19355
|
-
export type MarketplaceChecklistsAdminQuestionsRetrieveData = {
|
|
19356
|
-
body?: never;
|
|
19357
|
-
path: {
|
|
19358
|
-
uuid: string;
|
|
19359
|
-
};
|
|
19360
|
-
query?: never;
|
|
19361
|
-
url: '/api/marketplace-checklists-admin-questions/{uuid}/';
|
|
19362
|
-
};
|
|
19363
|
-
export type MarketplaceChecklistsAdminQuestionsRetrieveResponses = {
|
|
19364
|
-
200: QuestionAdmin;
|
|
19365
|
-
};
|
|
19366
|
-
export type MarketplaceChecklistsAdminQuestionsRetrieveResponse = MarketplaceChecklistsAdminQuestionsRetrieveResponses[keyof MarketplaceChecklistsAdminQuestionsRetrieveResponses];
|
|
19367
|
-
export type MarketplaceChecklistsAdminQuestionsPartialUpdateData = {
|
|
19368
|
-
body?: PatchedQuestionAdminRequest;
|
|
19369
|
-
path: {
|
|
19370
|
-
uuid: string;
|
|
19371
|
-
};
|
|
19372
|
-
query?: never;
|
|
19373
|
-
url: '/api/marketplace-checklists-admin-questions/{uuid}/';
|
|
19374
|
-
};
|
|
19375
|
-
export type MarketplaceChecklistsAdminQuestionsPartialUpdateResponses = {
|
|
19376
|
-
200: QuestionAdmin;
|
|
19377
|
-
};
|
|
19378
|
-
export type MarketplaceChecklistsAdminQuestionsPartialUpdateResponse = MarketplaceChecklistsAdminQuestionsPartialUpdateResponses[keyof MarketplaceChecklistsAdminQuestionsPartialUpdateResponses];
|
|
19379
|
-
export type MarketplaceChecklistsAdminQuestionsUpdateData = {
|
|
19380
|
-
body: QuestionAdminRequest;
|
|
19381
|
-
path: {
|
|
19382
|
-
uuid: string;
|
|
19383
|
-
};
|
|
19384
|
-
query?: never;
|
|
19385
|
-
url: '/api/marketplace-checklists-admin-questions/{uuid}/';
|
|
19386
|
-
};
|
|
19387
|
-
export type MarketplaceChecklistsAdminQuestionsUpdateResponses = {
|
|
19388
|
-
200: QuestionAdmin;
|
|
19389
|
-
};
|
|
19390
|
-
export type MarketplaceChecklistsAdminQuestionsUpdateResponse = MarketplaceChecklistsAdminQuestionsUpdateResponses[keyof MarketplaceChecklistsAdminQuestionsUpdateResponses];
|
|
19391
|
-
export type MarketplaceChecklistsAdminDestroyData = {
|
|
19392
|
-
body?: never;
|
|
19393
|
-
path: {
|
|
19394
|
-
uuid: string;
|
|
19395
|
-
};
|
|
19396
|
-
query?: never;
|
|
19397
|
-
url: '/api/marketplace-checklists-admin/{uuid}/';
|
|
19398
|
-
};
|
|
19399
|
-
export type MarketplaceChecklistsAdminDestroyResponses = {
|
|
19400
|
-
/**
|
|
19401
|
-
* No response body
|
|
19402
|
-
*/
|
|
19403
|
-
204: void;
|
|
19404
|
-
};
|
|
19405
|
-
export type MarketplaceChecklistsAdminDestroyResponse = MarketplaceChecklistsAdminDestroyResponses[keyof MarketplaceChecklistsAdminDestroyResponses];
|
|
19406
|
-
export type MarketplaceChecklistsAdminRetrieveData = {
|
|
19407
|
-
body?: never;
|
|
19408
|
-
path: {
|
|
19409
|
-
uuid: string;
|
|
19410
|
-
};
|
|
19411
|
-
query?: never;
|
|
19412
|
-
url: '/api/marketplace-checklists-admin/{uuid}/';
|
|
19413
|
-
};
|
|
19414
|
-
export type MarketplaceChecklistsAdminRetrieveResponses = {
|
|
19415
|
-
200: ChecklistAdmin;
|
|
19416
|
-
};
|
|
19417
|
-
export type MarketplaceChecklistsAdminRetrieveResponse = MarketplaceChecklistsAdminRetrieveResponses[keyof MarketplaceChecklistsAdminRetrieveResponses];
|
|
19418
|
-
export type MarketplaceChecklistsAdminPartialUpdateData = {
|
|
19419
|
-
body?: PatchedCreateChecklistRequest;
|
|
19420
|
-
path: {
|
|
19421
|
-
uuid: string;
|
|
19422
|
-
};
|
|
19423
|
-
query?: never;
|
|
19424
|
-
url: '/api/marketplace-checklists-admin/{uuid}/';
|
|
19425
|
-
};
|
|
19426
|
-
export type MarketplaceChecklistsAdminPartialUpdateResponses = {
|
|
19427
|
-
200: CreateChecklist;
|
|
19428
|
-
};
|
|
19429
|
-
export type MarketplaceChecklistsAdminPartialUpdateResponse = MarketplaceChecklistsAdminPartialUpdateResponses[keyof MarketplaceChecklistsAdminPartialUpdateResponses];
|
|
19430
|
-
export type MarketplaceChecklistsAdminUpdateData = {
|
|
19431
|
-
body: CreateChecklistRequest;
|
|
19432
|
-
path: {
|
|
19433
|
-
uuid: string;
|
|
19434
|
-
};
|
|
19435
|
-
query?: never;
|
|
19436
|
-
url: '/api/marketplace-checklists-admin/{uuid}/';
|
|
19437
|
-
};
|
|
19438
|
-
export type MarketplaceChecklistsAdminUpdateResponses = {
|
|
19439
|
-
200: CreateChecklist;
|
|
19440
|
-
};
|
|
19441
|
-
export type MarketplaceChecklistsAdminUpdateResponse = MarketplaceChecklistsAdminUpdateResponses[keyof MarketplaceChecklistsAdminUpdateResponses];
|
|
19442
|
-
export type MarketplaceChecklistsAdminChecklistQuestionsData = {
|
|
19443
|
-
body?: never;
|
|
19444
|
-
path: {
|
|
19445
|
-
uuid: string;
|
|
19446
|
-
};
|
|
19447
|
-
query?: {
|
|
19448
|
-
/**
|
|
19449
|
-
* A page number within the paginated result set.
|
|
19450
|
-
*/
|
|
19451
|
-
page?: number;
|
|
19452
|
-
/**
|
|
19453
|
-
* Number of results to return per page.
|
|
19454
|
-
*/
|
|
19455
|
-
page_size?: number;
|
|
19456
|
-
};
|
|
19457
|
-
url: '/api/marketplace-checklists-admin/{uuid}/questions/';
|
|
19458
|
-
};
|
|
19459
|
-
export type MarketplaceChecklistsAdminChecklistQuestionsResponses = {
|
|
19460
|
-
200: Array<QuestionAdmin>;
|
|
19461
|
-
};
|
|
19462
|
-
export type MarketplaceChecklistsAdminChecklistQuestionsResponse = MarketplaceChecklistsAdminChecklistQuestionsResponses[keyof MarketplaceChecklistsAdminChecklistQuestionsResponses];
|
|
19463
|
-
export type MarketplaceChecklistsCategoriesListData = {
|
|
19464
|
-
body?: never;
|
|
19465
|
-
path?: never;
|
|
19466
|
-
query?: {
|
|
19467
|
-
/**
|
|
19468
|
-
* A page number within the paginated result set.
|
|
19469
|
-
*/
|
|
19470
|
-
page?: number;
|
|
19471
|
-
/**
|
|
19472
|
-
* Number of results to return per page.
|
|
19473
|
-
*/
|
|
19474
|
-
page_size?: number;
|
|
19475
|
-
};
|
|
19476
|
-
url: '/api/marketplace-checklists-categories/';
|
|
19477
|
-
};
|
|
19478
|
-
export type MarketplaceChecklistsCategoriesListResponses = {
|
|
19479
|
-
200: Array<ChecklistCategory>;
|
|
19480
|
-
};
|
|
19481
|
-
export type MarketplaceChecklistsCategoriesListResponse = MarketplaceChecklistsCategoriesListResponses[keyof MarketplaceChecklistsCategoriesListResponses];
|
|
19482
|
-
export type MarketplaceChecklistsCategoriesRetrieveData = {
|
|
19483
|
-
body?: never;
|
|
19484
|
-
path: {
|
|
19485
|
-
uuid: string;
|
|
19486
|
-
};
|
|
19487
|
-
query?: never;
|
|
19488
|
-
url: '/api/marketplace-checklists-categories/{uuid}/';
|
|
19489
|
-
};
|
|
19490
|
-
export type MarketplaceChecklistsCategoriesRetrieveResponses = {
|
|
19491
|
-
200: ChecklistCategory;
|
|
19492
|
-
};
|
|
19493
|
-
export type MarketplaceChecklistsCategoriesRetrieveResponse = MarketplaceChecklistsCategoriesRetrieveResponses[keyof MarketplaceChecklistsCategoriesRetrieveResponses];
|
|
19494
19672
|
export type MarketplaceComponentUsagesListData = {
|
|
19495
19673
|
body?: never;
|
|
19496
19674
|
path?: never;
|
|
@@ -19526,7 +19704,7 @@ export type MarketplaceComponentUsagesListResponses = {
|
|
|
19526
19704
|
200: Array<ComponentUsage>;
|
|
19527
19705
|
};
|
|
19528
19706
|
export type MarketplaceComponentUsagesListResponse = MarketplaceComponentUsagesListResponses[keyof MarketplaceComponentUsagesListResponses];
|
|
19529
|
-
export type
|
|
19707
|
+
export type MarketplaceComponentUsagesCountData = {
|
|
19530
19708
|
body?: never;
|
|
19531
19709
|
path?: never;
|
|
19532
19710
|
query?: {
|
|
@@ -19556,7 +19734,7 @@ export type MarketplaceComponentUsagesHeadData = {
|
|
|
19556
19734
|
};
|
|
19557
19735
|
url: '/api/marketplace-component-usages/';
|
|
19558
19736
|
};
|
|
19559
|
-
export type
|
|
19737
|
+
export type MarketplaceComponentUsagesCountResponses = {
|
|
19560
19738
|
/**
|
|
19561
19739
|
* No response body
|
|
19562
19740
|
*/
|
|
@@ -19643,7 +19821,7 @@ export type MarketplaceComponentUserUsagesListResponses = {
|
|
|
19643
19821
|
200: Array<ComponentUserUsage>;
|
|
19644
19822
|
};
|
|
19645
19823
|
export type MarketplaceComponentUserUsagesListResponse = MarketplaceComponentUserUsagesListResponses[keyof MarketplaceComponentUserUsagesListResponses];
|
|
19646
|
-
export type
|
|
19824
|
+
export type MarketplaceComponentUserUsagesCountData = {
|
|
19647
19825
|
body?: never;
|
|
19648
19826
|
path?: never;
|
|
19649
19827
|
query?: {
|
|
@@ -19679,7 +19857,7 @@ export type MarketplaceComponentUserUsagesHeadData = {
|
|
|
19679
19857
|
};
|
|
19680
19858
|
url: '/api/marketplace-component-user-usages/';
|
|
19681
19859
|
};
|
|
19682
|
-
export type
|
|
19860
|
+
export type MarketplaceComponentUserUsagesCountResponses = {
|
|
19683
19861
|
/**
|
|
19684
19862
|
* No response body
|
|
19685
19863
|
*/
|
|
@@ -19722,7 +19900,7 @@ export type MarketplaceCustomerEstimatedCostPoliciesListResponses = {
|
|
|
19722
19900
|
200: Array<CustomerEstimatedCostPolicy>;
|
|
19723
19901
|
};
|
|
19724
19902
|
export type MarketplaceCustomerEstimatedCostPoliciesListResponse = MarketplaceCustomerEstimatedCostPoliciesListResponses[keyof MarketplaceCustomerEstimatedCostPoliciesListResponses];
|
|
19725
|
-
export type
|
|
19903
|
+
export type MarketplaceCustomerEstimatedCostPoliciesCountData = {
|
|
19726
19904
|
body?: never;
|
|
19727
19905
|
path?: never;
|
|
19728
19906
|
query?: {
|
|
@@ -19741,7 +19919,7 @@ export type MarketplaceCustomerEstimatedCostPoliciesHeadData = {
|
|
|
19741
19919
|
};
|
|
19742
19920
|
url: '/api/marketplace-customer-estimated-cost-policies/';
|
|
19743
19921
|
};
|
|
19744
|
-
export type
|
|
19922
|
+
export type MarketplaceCustomerEstimatedCostPoliciesCountResponses = {
|
|
19745
19923
|
/**
|
|
19746
19924
|
* No response body
|
|
19747
19925
|
*/
|
|
@@ -19818,13 +19996,13 @@ export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses = {
|
|
|
19818
19996
|
200: CustomerEstimatedCostPolicy;
|
|
19819
19997
|
};
|
|
19820
19998
|
export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses];
|
|
19821
|
-
export type
|
|
19999
|
+
export type MarketplaceCustomerEstimatedCostPoliciesActionsCountData = {
|
|
19822
20000
|
body?: never;
|
|
19823
20001
|
path?: never;
|
|
19824
20002
|
query?: never;
|
|
19825
20003
|
url: '/api/marketplace-customer-estimated-cost-policies/actions/';
|
|
19826
20004
|
};
|
|
19827
|
-
export type
|
|
20005
|
+
export type MarketplaceCustomerEstimatedCostPoliciesActionsCountResponses = {
|
|
19828
20006
|
/**
|
|
19829
20007
|
* No response body
|
|
19830
20008
|
*/
|
|
@@ -19853,7 +20031,7 @@ export type MarketplaceCustomerServiceAccountsListResponses = {
|
|
|
19853
20031
|
200: Array<CustomerServiceAccount>;
|
|
19854
20032
|
};
|
|
19855
20033
|
export type MarketplaceCustomerServiceAccountsListResponse = MarketplaceCustomerServiceAccountsListResponses[keyof MarketplaceCustomerServiceAccountsListResponses];
|
|
19856
|
-
export type
|
|
20034
|
+
export type MarketplaceCustomerServiceAccountsCountData = {
|
|
19857
20035
|
body?: never;
|
|
19858
20036
|
path?: never;
|
|
19859
20037
|
query?: {
|
|
@@ -19872,7 +20050,7 @@ export type MarketplaceCustomerServiceAccountsHeadData = {
|
|
|
19872
20050
|
};
|
|
19873
20051
|
url: '/api/marketplace-customer-service-accounts/';
|
|
19874
20052
|
};
|
|
19875
|
-
export type
|
|
20053
|
+
export type MarketplaceCustomerServiceAccountsCountResponses = {
|
|
19876
20054
|
/**
|
|
19877
20055
|
* No response body
|
|
19878
20056
|
*/
|
|
@@ -20003,7 +20181,7 @@ export type MarketplaceIntegrationStatusesListResponses = {
|
|
|
20003
20181
|
200: Array<IntegrationStatusDetails>;
|
|
20004
20182
|
};
|
|
20005
20183
|
export type MarketplaceIntegrationStatusesListResponse = MarketplaceIntegrationStatusesListResponses[keyof MarketplaceIntegrationStatusesListResponses];
|
|
20006
|
-
export type
|
|
20184
|
+
export type MarketplaceIntegrationStatusesCountData = {
|
|
20007
20185
|
body?: never;
|
|
20008
20186
|
path?: never;
|
|
20009
20187
|
query?: {
|
|
@@ -20030,7 +20208,7 @@ export type MarketplaceIntegrationStatusesHeadData = {
|
|
|
20030
20208
|
};
|
|
20031
20209
|
url: '/api/marketplace-integration-statuses/';
|
|
20032
20210
|
};
|
|
20033
|
-
export type
|
|
20211
|
+
export type MarketplaceIntegrationStatusesCountResponses = {
|
|
20034
20212
|
/**
|
|
20035
20213
|
* No response body
|
|
20036
20214
|
*/
|
|
@@ -20069,7 +20247,7 @@ export type MarketplaceOfferingEstimatedCostPoliciesListResponses = {
|
|
|
20069
20247
|
200: Array<OfferingEstimatedCostPolicy>;
|
|
20070
20248
|
};
|
|
20071
20249
|
export type MarketplaceOfferingEstimatedCostPoliciesListResponse = MarketplaceOfferingEstimatedCostPoliciesListResponses[keyof MarketplaceOfferingEstimatedCostPoliciesListResponses];
|
|
20072
|
-
export type
|
|
20250
|
+
export type MarketplaceOfferingEstimatedCostPoliciesCountData = {
|
|
20073
20251
|
body?: never;
|
|
20074
20252
|
path?: never;
|
|
20075
20253
|
query?: {
|
|
@@ -20086,7 +20264,7 @@ export type MarketplaceOfferingEstimatedCostPoliciesHeadData = {
|
|
|
20086
20264
|
};
|
|
20087
20265
|
url: '/api/marketplace-offering-estimated-cost-policies/';
|
|
20088
20266
|
};
|
|
20089
|
-
export type
|
|
20267
|
+
export type MarketplaceOfferingEstimatedCostPoliciesCountResponses = {
|
|
20090
20268
|
/**
|
|
20091
20269
|
* No response body
|
|
20092
20270
|
*/
|
|
@@ -20163,13 +20341,13 @@ export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses = {
|
|
|
20163
20341
|
200: OfferingEstimatedCostPolicy;
|
|
20164
20342
|
};
|
|
20165
20343
|
export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses];
|
|
20166
|
-
export type
|
|
20344
|
+
export type MarketplaceOfferingEstimatedCostPoliciesActionsCountData = {
|
|
20167
20345
|
body?: never;
|
|
20168
20346
|
path?: never;
|
|
20169
20347
|
query?: never;
|
|
20170
20348
|
url: '/api/marketplace-offering-estimated-cost-policies/actions/';
|
|
20171
20349
|
};
|
|
20172
|
-
export type
|
|
20350
|
+
export type MarketplaceOfferingEstimatedCostPoliciesActionsCountResponses = {
|
|
20173
20351
|
/**
|
|
20174
20352
|
* No response body
|
|
20175
20353
|
*/
|
|
@@ -20204,7 +20382,7 @@ export type MarketplaceOfferingFilesListResponses = {
|
|
|
20204
20382
|
200: Array<OfferingFile>;
|
|
20205
20383
|
};
|
|
20206
20384
|
export type MarketplaceOfferingFilesListResponse = MarketplaceOfferingFilesListResponses[keyof MarketplaceOfferingFilesListResponses];
|
|
20207
|
-
export type
|
|
20385
|
+
export type MarketplaceOfferingFilesCountData = {
|
|
20208
20386
|
body?: never;
|
|
20209
20387
|
path?: never;
|
|
20210
20388
|
query?: {
|
|
@@ -20228,7 +20406,7 @@ export type MarketplaceOfferingFilesHeadData = {
|
|
|
20228
20406
|
};
|
|
20229
20407
|
url: '/api/marketplace-offering-files/';
|
|
20230
20408
|
};
|
|
20231
|
-
export type
|
|
20409
|
+
export type MarketplaceOfferingFilesCountResponses = {
|
|
20232
20410
|
/**
|
|
20233
20411
|
* No response body
|
|
20234
20412
|
*/
|
|
@@ -20340,7 +20518,7 @@ export type MarketplaceOfferingPermissionsListResponses = {
|
|
|
20340
20518
|
200: Array<OfferingPermission>;
|
|
20341
20519
|
};
|
|
20342
20520
|
export type MarketplaceOfferingPermissionsListResponse = MarketplaceOfferingPermissionsListResponses[keyof MarketplaceOfferingPermissionsListResponses];
|
|
20343
|
-
export type
|
|
20521
|
+
export type MarketplaceOfferingPermissionsCountData = {
|
|
20344
20522
|
body?: never;
|
|
20345
20523
|
path?: never;
|
|
20346
20524
|
query?: {
|
|
@@ -20403,7 +20581,7 @@ export type MarketplaceOfferingPermissionsHeadData = {
|
|
|
20403
20581
|
};
|
|
20404
20582
|
url: '/api/marketplace-offering-permissions/';
|
|
20405
20583
|
};
|
|
20406
|
-
export type
|
|
20584
|
+
export type MarketplaceOfferingPermissionsCountResponses = {
|
|
20407
20585
|
/**
|
|
20408
20586
|
* No response body
|
|
20409
20587
|
*/
|
|
@@ -20476,7 +20654,7 @@ export type MarketplaceOfferingPermissionsLogListResponses = {
|
|
|
20476
20654
|
200: Array<OfferingPermission>;
|
|
20477
20655
|
};
|
|
20478
20656
|
export type MarketplaceOfferingPermissionsLogListResponse = MarketplaceOfferingPermissionsLogListResponses[keyof MarketplaceOfferingPermissionsLogListResponses];
|
|
20479
|
-
export type
|
|
20657
|
+
export type MarketplaceOfferingPermissionsLogCountData = {
|
|
20480
20658
|
body?: never;
|
|
20481
20659
|
path?: never;
|
|
20482
20660
|
query?: {
|
|
@@ -20539,7 +20717,7 @@ export type MarketplaceOfferingPermissionsLogHeadData = {
|
|
|
20539
20717
|
};
|
|
20540
20718
|
url: '/api/marketplace-offering-permissions-log/';
|
|
20541
20719
|
};
|
|
20542
|
-
export type
|
|
20720
|
+
export type MarketplaceOfferingPermissionsLogCountResponses = {
|
|
20543
20721
|
/**
|
|
20544
20722
|
* No response body
|
|
20545
20723
|
*/
|
|
@@ -20600,7 +20778,7 @@ export type MarketplaceOfferingReferralsListResponses = {
|
|
|
20600
20778
|
200: Array<OfferingReferral>;
|
|
20601
20779
|
};
|
|
20602
20780
|
export type MarketplaceOfferingReferralsListResponse = MarketplaceOfferingReferralsListResponses[keyof MarketplaceOfferingReferralsListResponses];
|
|
20603
|
-
export type
|
|
20781
|
+
export type MarketplaceOfferingReferralsCountData = {
|
|
20604
20782
|
body?: never;
|
|
20605
20783
|
path?: never;
|
|
20606
20784
|
query?: {
|
|
@@ -20621,7 +20799,7 @@ export type MarketplaceOfferingReferralsHeadData = {
|
|
|
20621
20799
|
};
|
|
20622
20800
|
url: '/api/marketplace-offering-referrals/';
|
|
20623
20801
|
};
|
|
20624
|
-
export type
|
|
20802
|
+
export type MarketplaceOfferingReferralsCountResponses = {
|
|
20625
20803
|
/**
|
|
20626
20804
|
* No response body
|
|
20627
20805
|
*/
|
|
@@ -20660,7 +20838,7 @@ export type MarketplaceOfferingUsagePoliciesListResponses = {
|
|
|
20660
20838
|
200: Array<OfferingUsagePolicy>;
|
|
20661
20839
|
};
|
|
20662
20840
|
export type MarketplaceOfferingUsagePoliciesListResponse = MarketplaceOfferingUsagePoliciesListResponses[keyof MarketplaceOfferingUsagePoliciesListResponses];
|
|
20663
|
-
export type
|
|
20841
|
+
export type MarketplaceOfferingUsagePoliciesCountData = {
|
|
20664
20842
|
body?: never;
|
|
20665
20843
|
path?: never;
|
|
20666
20844
|
query?: {
|
|
@@ -20677,7 +20855,7 @@ export type MarketplaceOfferingUsagePoliciesHeadData = {
|
|
|
20677
20855
|
};
|
|
20678
20856
|
url: '/api/marketplace-offering-usage-policies/';
|
|
20679
20857
|
};
|
|
20680
|
-
export type
|
|
20858
|
+
export type MarketplaceOfferingUsagePoliciesCountResponses = {
|
|
20681
20859
|
/**
|
|
20682
20860
|
* No response body
|
|
20683
20861
|
*/
|
|
@@ -20754,13 +20932,13 @@ export type MarketplaceOfferingUsagePoliciesActionsRetrieveResponses = {
|
|
|
20754
20932
|
200: OfferingUsagePolicy;
|
|
20755
20933
|
};
|
|
20756
20934
|
export type MarketplaceOfferingUsagePoliciesActionsRetrieveResponse = MarketplaceOfferingUsagePoliciesActionsRetrieveResponses[keyof MarketplaceOfferingUsagePoliciesActionsRetrieveResponses];
|
|
20757
|
-
export type
|
|
20935
|
+
export type MarketplaceOfferingUsagePoliciesActionsCountData = {
|
|
20758
20936
|
body?: never;
|
|
20759
20937
|
path?: never;
|
|
20760
20938
|
query?: never;
|
|
20761
20939
|
url: '/api/marketplace-offering-usage-policies/actions/';
|
|
20762
20940
|
};
|
|
20763
|
-
export type
|
|
20941
|
+
export type MarketplaceOfferingUsagePoliciesActionsCountResponses = {
|
|
20764
20942
|
/**
|
|
20765
20943
|
* No response body
|
|
20766
20944
|
*/
|
|
@@ -20788,7 +20966,7 @@ export type MarketplaceOfferingUserRolesListResponses = {
|
|
|
20788
20966
|
200: Array<OfferingUserRole>;
|
|
20789
20967
|
};
|
|
20790
20968
|
export type MarketplaceOfferingUserRolesListResponse = MarketplaceOfferingUserRolesListResponses[keyof MarketplaceOfferingUserRolesListResponses];
|
|
20791
|
-
export type
|
|
20969
|
+
export type MarketplaceOfferingUserRolesCountData = {
|
|
20792
20970
|
body?: never;
|
|
20793
20971
|
path?: never;
|
|
20794
20972
|
query?: {
|
|
@@ -20806,7 +20984,7 @@ export type MarketplaceOfferingUserRolesHeadData = {
|
|
|
20806
20984
|
};
|
|
20807
20985
|
url: '/api/marketplace-offering-user-roles/';
|
|
20808
20986
|
};
|
|
20809
|
-
export type
|
|
20987
|
+
export type MarketplaceOfferingUserRolesCountResponses = {
|
|
20810
20988
|
/**
|
|
20811
20989
|
* No response body
|
|
20812
20990
|
*/
|
|
@@ -20916,7 +21094,7 @@ export type MarketplaceOfferingUsersListResponses = {
|
|
|
20916
21094
|
200: Array<OfferingUser>;
|
|
20917
21095
|
};
|
|
20918
21096
|
export type MarketplaceOfferingUsersListResponse = MarketplaceOfferingUsersListResponses[keyof MarketplaceOfferingUsersListResponses];
|
|
20919
|
-
export type
|
|
21097
|
+
export type MarketplaceOfferingUsersCountData = {
|
|
20920
21098
|
body?: never;
|
|
20921
21099
|
path?: never;
|
|
20922
21100
|
query?: {
|
|
@@ -20954,7 +21132,7 @@ export type MarketplaceOfferingUsersHeadData = {
|
|
|
20954
21132
|
};
|
|
20955
21133
|
url: '/api/marketplace-offering-users/';
|
|
20956
21134
|
};
|
|
20957
|
-
export type
|
|
21135
|
+
export type MarketplaceOfferingUsersCountResponses = {
|
|
20958
21136
|
/**
|
|
20959
21137
|
* No response body
|
|
20960
21138
|
*/
|
|
@@ -21239,7 +21417,7 @@ export type MarketplaceOrdersListResponses = {
|
|
|
21239
21417
|
200: Array<OrderDetails>;
|
|
21240
21418
|
};
|
|
21241
21419
|
export type MarketplaceOrdersListResponse = MarketplaceOrdersListResponses[keyof MarketplaceOrdersListResponses];
|
|
21242
|
-
export type
|
|
21420
|
+
export type MarketplaceOrdersCountData = {
|
|
21243
21421
|
body?: never;
|
|
21244
21422
|
path?: never;
|
|
21245
21423
|
query?: {
|
|
@@ -21284,7 +21462,7 @@ export type MarketplaceOrdersHeadData = {
|
|
|
21284
21462
|
};
|
|
21285
21463
|
url: '/api/marketplace-orders/';
|
|
21286
21464
|
};
|
|
21287
|
-
export type
|
|
21465
|
+
export type MarketplaceOrdersCountResponses = {
|
|
21288
21466
|
/**
|
|
21289
21467
|
* No response body
|
|
21290
21468
|
*/
|
|
@@ -21503,7 +21681,7 @@ export type MarketplacePlanComponentsListResponses = {
|
|
|
21503
21681
|
200: Array<PlanComponent>;
|
|
21504
21682
|
};
|
|
21505
21683
|
export type MarketplacePlanComponentsListResponse = MarketplacePlanComponentsListResponses[keyof MarketplacePlanComponentsListResponses];
|
|
21506
|
-
export type
|
|
21684
|
+
export type MarketplacePlanComponentsCountData = {
|
|
21507
21685
|
body?: never;
|
|
21508
21686
|
path?: never;
|
|
21509
21687
|
query?: {
|
|
@@ -21528,7 +21706,7 @@ export type MarketplacePlanComponentsHeadData = {
|
|
|
21528
21706
|
};
|
|
21529
21707
|
url: '/api/marketplace-plan-components/';
|
|
21530
21708
|
};
|
|
21531
|
-
export type
|
|
21709
|
+
export type MarketplacePlanComponentsCountResponses = {
|
|
21532
21710
|
/**
|
|
21533
21711
|
* No response body
|
|
21534
21712
|
*/
|
|
@@ -21571,7 +21749,7 @@ export type MarketplacePlansListResponses = {
|
|
|
21571
21749
|
200: Array<ProviderPlanDetails>;
|
|
21572
21750
|
};
|
|
21573
21751
|
export type MarketplacePlansListResponse = MarketplacePlansListResponses[keyof MarketplacePlansListResponses];
|
|
21574
|
-
export type
|
|
21752
|
+
export type MarketplacePlansCountData = {
|
|
21575
21753
|
body?: never;
|
|
21576
21754
|
path?: never;
|
|
21577
21755
|
query?: {
|
|
@@ -21589,7 +21767,7 @@ export type MarketplacePlansHeadData = {
|
|
|
21589
21767
|
};
|
|
21590
21768
|
url: '/api/marketplace-plans/';
|
|
21591
21769
|
};
|
|
21592
|
-
export type
|
|
21770
|
+
export type MarketplacePlansCountResponses = {
|
|
21593
21771
|
/**
|
|
21594
21772
|
* No response body
|
|
21595
21773
|
*/
|
|
@@ -21750,7 +21928,7 @@ export type MarketplacePlansUsageStatsListResponses = {
|
|
|
21750
21928
|
200: Array<PlanUsageResponse>;
|
|
21751
21929
|
};
|
|
21752
21930
|
export type MarketplacePlansUsageStatsListResponse = MarketplacePlansUsageStatsListResponses[keyof MarketplacePlansUsageStatsListResponses];
|
|
21753
|
-
export type
|
|
21931
|
+
export type MarketplacePlansUsageStatsCountData = {
|
|
21754
21932
|
body?: never;
|
|
21755
21933
|
path?: never;
|
|
21756
21934
|
query?: {
|
|
@@ -21770,7 +21948,7 @@ export type MarketplacePlansUsageStatsHeadData = {
|
|
|
21770
21948
|
};
|
|
21771
21949
|
url: '/api/marketplace-plans/usage_stats/';
|
|
21772
21950
|
};
|
|
21773
|
-
export type
|
|
21951
|
+
export type MarketplacePlansUsageStatsCountResponses = {
|
|
21774
21952
|
/**
|
|
21775
21953
|
* No response body
|
|
21776
21954
|
*/
|
|
@@ -21811,7 +21989,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListResponses = {
|
|
|
21811
21989
|
200: Array<ProjectEstimatedCostPolicy>;
|
|
21812
21990
|
};
|
|
21813
21991
|
export type MarketplaceProjectEstimatedCostPoliciesListResponse = MarketplaceProjectEstimatedCostPoliciesListResponses[keyof MarketplaceProjectEstimatedCostPoliciesListResponses];
|
|
21814
|
-
export type
|
|
21992
|
+
export type MarketplaceProjectEstimatedCostPoliciesCountData = {
|
|
21815
21993
|
body?: never;
|
|
21816
21994
|
path?: never;
|
|
21817
21995
|
query?: {
|
|
@@ -21832,7 +22010,7 @@ export type MarketplaceProjectEstimatedCostPoliciesHeadData = {
|
|
|
21832
22010
|
};
|
|
21833
22011
|
url: '/api/marketplace-project-estimated-cost-policies/';
|
|
21834
22012
|
};
|
|
21835
|
-
export type
|
|
22013
|
+
export type MarketplaceProjectEstimatedCostPoliciesCountResponses = {
|
|
21836
22014
|
/**
|
|
21837
22015
|
* No response body
|
|
21838
22016
|
*/
|
|
@@ -21909,13 +22087,13 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses = {
|
|
|
21909
22087
|
200: ProjectEstimatedCostPolicy;
|
|
21910
22088
|
};
|
|
21911
22089
|
export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses];
|
|
21912
|
-
export type
|
|
22090
|
+
export type MarketplaceProjectEstimatedCostPoliciesActionsCountData = {
|
|
21913
22091
|
body?: never;
|
|
21914
22092
|
path?: never;
|
|
21915
22093
|
query?: never;
|
|
21916
22094
|
url: '/api/marketplace-project-estimated-cost-policies/actions/';
|
|
21917
22095
|
};
|
|
21918
|
-
export type
|
|
22096
|
+
export type MarketplaceProjectEstimatedCostPoliciesActionsCountResponses = {
|
|
21919
22097
|
/**
|
|
21920
22098
|
* No response body
|
|
21921
22099
|
*/
|
|
@@ -21944,7 +22122,7 @@ export type MarketplaceProjectServiceAccountsListResponses = {
|
|
|
21944
22122
|
200: Array<ProjectServiceAccount>;
|
|
21945
22123
|
};
|
|
21946
22124
|
export type MarketplaceProjectServiceAccountsListResponse = MarketplaceProjectServiceAccountsListResponses[keyof MarketplaceProjectServiceAccountsListResponses];
|
|
21947
|
-
export type
|
|
22125
|
+
export type MarketplaceProjectServiceAccountsCountData = {
|
|
21948
22126
|
body?: never;
|
|
21949
22127
|
path?: never;
|
|
21950
22128
|
query?: {
|
|
@@ -21963,7 +22141,7 @@ export type MarketplaceProjectServiceAccountsHeadData = {
|
|
|
21963
22141
|
};
|
|
21964
22142
|
url: '/api/marketplace-project-service-accounts/';
|
|
21965
22143
|
};
|
|
21966
|
-
export type
|
|
22144
|
+
export type MarketplaceProjectServiceAccountsCountResponses = {
|
|
21967
22145
|
/**
|
|
21968
22146
|
* No response body
|
|
21969
22147
|
*/
|
|
@@ -22066,7 +22244,7 @@ export type MarketplaceProjectUpdateRequestsListResponses = {
|
|
|
22066
22244
|
200: Array<RemoteProjectUpdateRequest>;
|
|
22067
22245
|
};
|
|
22068
22246
|
export type MarketplaceProjectUpdateRequestsListResponse = MarketplaceProjectUpdateRequestsListResponses[keyof MarketplaceProjectUpdateRequestsListResponses];
|
|
22069
|
-
export type
|
|
22247
|
+
export type MarketplaceProjectUpdateRequestsCountData = {
|
|
22070
22248
|
body?: never;
|
|
22071
22249
|
path?: never;
|
|
22072
22250
|
query?: {
|
|
@@ -22086,7 +22264,7 @@ export type MarketplaceProjectUpdateRequestsHeadData = {
|
|
|
22086
22264
|
};
|
|
22087
22265
|
url: '/api/marketplace-project-update-requests/';
|
|
22088
22266
|
};
|
|
22089
|
-
export type
|
|
22267
|
+
export type MarketplaceProjectUpdateRequestsCountResponses = {
|
|
22090
22268
|
/**
|
|
22091
22269
|
* No response body
|
|
22092
22270
|
*/
|
|
@@ -22216,7 +22394,7 @@ export type MarketplaceProviderOfferingsListResponses = {
|
|
|
22216
22394
|
200: Array<ProviderOfferingDetails>;
|
|
22217
22395
|
};
|
|
22218
22396
|
export type MarketplaceProviderOfferingsListResponse = MarketplaceProviderOfferingsListResponses[keyof MarketplaceProviderOfferingsListResponses];
|
|
22219
|
-
export type
|
|
22397
|
+
export type MarketplaceProviderOfferingsCountData = {
|
|
22220
22398
|
body?: never;
|
|
22221
22399
|
path?: never;
|
|
22222
22400
|
query?: {
|
|
@@ -22295,7 +22473,7 @@ export type MarketplaceProviderOfferingsHeadData = {
|
|
|
22295
22473
|
};
|
|
22296
22474
|
url: '/api/marketplace-provider-offerings/';
|
|
22297
22475
|
};
|
|
22298
|
-
export type
|
|
22476
|
+
export type MarketplaceProviderOfferingsCountResponses = {
|
|
22299
22477
|
/**
|
|
22300
22478
|
* No response body
|
|
22301
22479
|
*/
|
|
@@ -23339,7 +23517,7 @@ export type MarketplaceProviderOfferingsGroupsListResponses = {
|
|
|
23339
23517
|
200: Array<OfferingGroups>;
|
|
23340
23518
|
};
|
|
23341
23519
|
export type MarketplaceProviderOfferingsGroupsListResponse = MarketplaceProviderOfferingsGroupsListResponses[keyof MarketplaceProviderOfferingsGroupsListResponses];
|
|
23342
|
-
export type
|
|
23520
|
+
export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
23343
23521
|
body?: never;
|
|
23344
23522
|
path?: never;
|
|
23345
23523
|
query?: {
|
|
@@ -23418,7 +23596,7 @@ export type MarketplaceProviderOfferingsGroupsHeadData = {
|
|
|
23418
23596
|
};
|
|
23419
23597
|
url: '/api/marketplace-provider-offerings/groups/';
|
|
23420
23598
|
};
|
|
23421
|
-
export type
|
|
23599
|
+
export type MarketplaceProviderOfferingsGroupsCountResponses = {
|
|
23422
23600
|
/**
|
|
23423
23601
|
* No response body
|
|
23424
23602
|
*/
|
|
@@ -23507,7 +23685,7 @@ export type MarketplaceProviderResourcesListResponses = {
|
|
|
23507
23685
|
200: Array<Resource>;
|
|
23508
23686
|
};
|
|
23509
23687
|
export type MarketplaceProviderResourcesListResponse = MarketplaceProviderResourcesListResponses[keyof MarketplaceProviderResourcesListResponses];
|
|
23510
|
-
export type
|
|
23688
|
+
export type MarketplaceProviderResourcesCountData = {
|
|
23511
23689
|
body?: never;
|
|
23512
23690
|
path?: never;
|
|
23513
23691
|
query?: {
|
|
@@ -23585,7 +23763,7 @@ export type MarketplaceProviderResourcesHeadData = {
|
|
|
23585
23763
|
};
|
|
23586
23764
|
url: '/api/marketplace-provider-resources/';
|
|
23587
23765
|
};
|
|
23588
|
-
export type
|
|
23766
|
+
export type MarketplaceProviderResourcesCountResponses = {
|
|
23589
23767
|
/**
|
|
23590
23768
|
* No response body
|
|
23591
23769
|
*/
|
|
@@ -23989,7 +24167,7 @@ export type MarketplacePublicOfferingsListResponses = {
|
|
|
23989
24167
|
200: Array<PublicOfferingDetails>;
|
|
23990
24168
|
};
|
|
23991
24169
|
export type MarketplacePublicOfferingsListResponse = MarketplacePublicOfferingsListResponses[keyof MarketplacePublicOfferingsListResponses];
|
|
23992
|
-
export type
|
|
24170
|
+
export type MarketplacePublicOfferingsCountData = {
|
|
23993
24171
|
body?: never;
|
|
23994
24172
|
path?: never;
|
|
23995
24173
|
query?: {
|
|
@@ -24068,7 +24246,7 @@ export type MarketplacePublicOfferingsHeadData = {
|
|
|
24068
24246
|
};
|
|
24069
24247
|
url: '/api/marketplace-public-offerings/';
|
|
24070
24248
|
};
|
|
24071
|
-
export type
|
|
24249
|
+
export type MarketplacePublicOfferingsCountResponses = {
|
|
24072
24250
|
/**
|
|
24073
24251
|
* No response body
|
|
24074
24252
|
*/
|
|
@@ -24155,7 +24333,7 @@ export type MarketplaceRemoteSynchronisationsListResponses = {
|
|
|
24155
24333
|
200: Array<RemoteSynchronisation>;
|
|
24156
24334
|
};
|
|
24157
24335
|
export type MarketplaceRemoteSynchronisationsListResponse = MarketplaceRemoteSynchronisationsListResponses[keyof MarketplaceRemoteSynchronisationsListResponses];
|
|
24158
|
-
export type
|
|
24336
|
+
export type MarketplaceRemoteSynchronisationsCountData = {
|
|
24159
24337
|
body?: never;
|
|
24160
24338
|
path?: never;
|
|
24161
24339
|
query?: {
|
|
@@ -24170,7 +24348,7 @@ export type MarketplaceRemoteSynchronisationsHeadData = {
|
|
|
24170
24348
|
};
|
|
24171
24349
|
url: '/api/marketplace-remote-synchronisations/';
|
|
24172
24350
|
};
|
|
24173
|
-
export type
|
|
24351
|
+
export type MarketplaceRemoteSynchronisationsCountResponses = {
|
|
24174
24352
|
/**
|
|
24175
24353
|
* No response body
|
|
24176
24354
|
*/
|
|
@@ -24296,7 +24474,7 @@ export type MarketplaceResourceUsersListResponses = {
|
|
|
24296
24474
|
200: Array<ResourceUser>;
|
|
24297
24475
|
};
|
|
24298
24476
|
export type MarketplaceResourceUsersListResponse = MarketplaceResourceUsersListResponses[keyof MarketplaceResourceUsersListResponses];
|
|
24299
|
-
export type
|
|
24477
|
+
export type MarketplaceResourceUsersCountData = {
|
|
24300
24478
|
body?: never;
|
|
24301
24479
|
path?: never;
|
|
24302
24480
|
query?: {
|
|
@@ -24316,7 +24494,7 @@ export type MarketplaceResourceUsersHeadData = {
|
|
|
24316
24494
|
};
|
|
24317
24495
|
url: '/api/marketplace-resource-users/';
|
|
24318
24496
|
};
|
|
24319
|
-
export type
|
|
24497
|
+
export type MarketplaceResourceUsersCountResponses = {
|
|
24320
24498
|
/**
|
|
24321
24499
|
* No response body
|
|
24322
24500
|
*/
|
|
@@ -24442,7 +24620,7 @@ export type MarketplaceResourcesListResponses = {
|
|
|
24442
24620
|
200: Array<Resource>;
|
|
24443
24621
|
};
|
|
24444
24622
|
export type MarketplaceResourcesListResponse = MarketplaceResourcesListResponses[keyof MarketplaceResourcesListResponses];
|
|
24445
|
-
export type
|
|
24623
|
+
export type MarketplaceResourcesCountData = {
|
|
24446
24624
|
body?: never;
|
|
24447
24625
|
path?: never;
|
|
24448
24626
|
query?: {
|
|
@@ -24520,7 +24698,7 @@ export type MarketplaceResourcesHeadData = {
|
|
|
24520
24698
|
};
|
|
24521
24699
|
url: '/api/marketplace-resources/';
|
|
24522
24700
|
};
|
|
24523
|
-
export type
|
|
24701
|
+
export type MarketplaceResourcesCountResponses = {
|
|
24524
24702
|
/**
|
|
24525
24703
|
* No response body
|
|
24526
24704
|
*/
|
|
@@ -24798,7 +24976,7 @@ export type MarketplaceRobotAccountsListResponses = {
|
|
|
24798
24976
|
200: Array<RobotAccountDetails>;
|
|
24799
24977
|
};
|
|
24800
24978
|
export type MarketplaceRobotAccountsListResponse = MarketplaceRobotAccountsListResponses[keyof MarketplaceRobotAccountsListResponses];
|
|
24801
|
-
export type
|
|
24979
|
+
export type MarketplaceRobotAccountsCountData = {
|
|
24802
24980
|
body?: never;
|
|
24803
24981
|
path?: never;
|
|
24804
24982
|
query?: {
|
|
@@ -24828,7 +25006,7 @@ export type MarketplaceRobotAccountsHeadData = {
|
|
|
24828
25006
|
};
|
|
24829
25007
|
url: '/api/marketplace-robot-accounts/';
|
|
24830
25008
|
};
|
|
24831
|
-
export type
|
|
25009
|
+
export type MarketplaceRobotAccountsCountResponses = {
|
|
24832
25010
|
/**
|
|
24833
25011
|
* No response body
|
|
24834
25012
|
*/
|
|
@@ -25006,7 +25184,7 @@ export type MarketplaceScreenshotsListResponses = {
|
|
|
25006
25184
|
200: Array<Screenshot>;
|
|
25007
25185
|
};
|
|
25008
25186
|
export type MarketplaceScreenshotsListResponse = MarketplaceScreenshotsListResponses[keyof MarketplaceScreenshotsListResponses];
|
|
25009
|
-
export type
|
|
25187
|
+
export type MarketplaceScreenshotsCountData = {
|
|
25010
25188
|
body?: never;
|
|
25011
25189
|
path?: never;
|
|
25012
25190
|
query?: {
|
|
@@ -25030,7 +25208,7 @@ export type MarketplaceScreenshotsHeadData = {
|
|
|
25030
25208
|
};
|
|
25031
25209
|
url: '/api/marketplace-screenshots/';
|
|
25032
25210
|
};
|
|
25033
|
-
export type
|
|
25211
|
+
export type MarketplaceScreenshotsCountResponses = {
|
|
25034
25212
|
/**
|
|
25035
25213
|
* No response body
|
|
25036
25214
|
*/
|
|
@@ -25116,7 +25294,7 @@ export type MarketplaceScriptAsyncDryRunListResponses = {
|
|
|
25116
25294
|
200: Array<DryRun>;
|
|
25117
25295
|
};
|
|
25118
25296
|
export type MarketplaceScriptAsyncDryRunListResponse = MarketplaceScriptAsyncDryRunListResponses[keyof MarketplaceScriptAsyncDryRunListResponses];
|
|
25119
|
-
export type
|
|
25297
|
+
export type MarketplaceScriptAsyncDryRunCountData = {
|
|
25120
25298
|
body?: never;
|
|
25121
25299
|
path?: never;
|
|
25122
25300
|
query?: {
|
|
@@ -25131,7 +25309,7 @@ export type MarketplaceScriptAsyncDryRunHeadData = {
|
|
|
25131
25309
|
};
|
|
25132
25310
|
url: '/api/marketplace-script-async-dry-run/';
|
|
25133
25311
|
};
|
|
25134
|
-
export type
|
|
25312
|
+
export type MarketplaceScriptAsyncDryRunCountResponses = {
|
|
25135
25313
|
/**
|
|
25136
25314
|
* No response body
|
|
25137
25315
|
*/
|
|
@@ -25210,7 +25388,7 @@ export type MarketplaceSectionsListResponses = {
|
|
|
25210
25388
|
200: Array<Section>;
|
|
25211
25389
|
};
|
|
25212
25390
|
export type MarketplaceSectionsListResponse = MarketplaceSectionsListResponses[keyof MarketplaceSectionsListResponses];
|
|
25213
|
-
export type
|
|
25391
|
+
export type MarketplaceSectionsCountData = {
|
|
25214
25392
|
body?: never;
|
|
25215
25393
|
path?: never;
|
|
25216
25394
|
query?: {
|
|
@@ -25225,7 +25403,7 @@ export type MarketplaceSectionsHeadData = {
|
|
|
25225
25403
|
};
|
|
25226
25404
|
url: '/api/marketplace-sections/';
|
|
25227
25405
|
};
|
|
25228
|
-
export type
|
|
25406
|
+
export type MarketplaceSectionsCountResponses = {
|
|
25229
25407
|
/**
|
|
25230
25408
|
* No response body
|
|
25231
25409
|
*/
|
|
@@ -25333,7 +25511,7 @@ export type MarketplaceServiceProvidersListResponses = {
|
|
|
25333
25511
|
200: Array<ServiceProvider>;
|
|
25334
25512
|
};
|
|
25335
25513
|
export type MarketplaceServiceProvidersListResponse = MarketplaceServiceProvidersListResponses[keyof MarketplaceServiceProvidersListResponses];
|
|
25336
|
-
export type
|
|
25514
|
+
export type MarketplaceServiceProvidersCountData = {
|
|
25337
25515
|
body?: never;
|
|
25338
25516
|
path?: never;
|
|
25339
25517
|
query?: {
|
|
@@ -25357,7 +25535,7 @@ export type MarketplaceServiceProvidersHeadData = {
|
|
|
25357
25535
|
};
|
|
25358
25536
|
url: '/api/marketplace-service-providers/';
|
|
25359
25537
|
};
|
|
25360
|
-
export type
|
|
25538
|
+
export type MarketplaceServiceProvidersCountResponses = {
|
|
25361
25539
|
/**
|
|
25362
25540
|
* No response body
|
|
25363
25541
|
*/
|
|
@@ -26139,7 +26317,7 @@ export type MarketplaceStatsComponentUsagesListResponses = {
|
|
|
26139
26317
|
200: Array<ComponentUsagesStats>;
|
|
26140
26318
|
};
|
|
26141
26319
|
export type MarketplaceStatsComponentUsagesListResponse = MarketplaceStatsComponentUsagesListResponses[keyof MarketplaceStatsComponentUsagesListResponses];
|
|
26142
|
-
export type
|
|
26320
|
+
export type MarketplaceStatsComponentUsagesCountData = {
|
|
26143
26321
|
body?: never;
|
|
26144
26322
|
path?: never;
|
|
26145
26323
|
query?: {
|
|
@@ -26154,7 +26332,7 @@ export type MarketplaceStatsComponentUsagesHeadData = {
|
|
|
26154
26332
|
};
|
|
26155
26333
|
url: '/api/marketplace-stats/component_usages/';
|
|
26156
26334
|
};
|
|
26157
|
-
export type
|
|
26335
|
+
export type MarketplaceStatsComponentUsagesCountResponses = {
|
|
26158
26336
|
/**
|
|
26159
26337
|
* No response body
|
|
26160
26338
|
*/
|
|
@@ -26179,7 +26357,7 @@ export type MarketplaceStatsComponentUsagesPerMonthListResponses = {
|
|
|
26179
26357
|
200: Array<ComponentUsagesPerMonthStats>;
|
|
26180
26358
|
};
|
|
26181
26359
|
export type MarketplaceStatsComponentUsagesPerMonthListResponse = MarketplaceStatsComponentUsagesPerMonthListResponses[keyof MarketplaceStatsComponentUsagesPerMonthListResponses];
|
|
26182
|
-
export type
|
|
26360
|
+
export type MarketplaceStatsComponentUsagesPerMonthCountData = {
|
|
26183
26361
|
body?: never;
|
|
26184
26362
|
path?: never;
|
|
26185
26363
|
query?: {
|
|
@@ -26194,7 +26372,7 @@ export type MarketplaceStatsComponentUsagesPerMonthHeadData = {
|
|
|
26194
26372
|
};
|
|
26195
26373
|
url: '/api/marketplace-stats/component_usages_per_month/';
|
|
26196
26374
|
};
|
|
26197
|
-
export type
|
|
26375
|
+
export type MarketplaceStatsComponentUsagesPerMonthCountResponses = {
|
|
26198
26376
|
/**
|
|
26199
26377
|
* No response body
|
|
26200
26378
|
*/
|
|
@@ -26219,7 +26397,7 @@ export type MarketplaceStatsComponentUsagesPerProjectListResponses = {
|
|
|
26219
26397
|
200: Array<ComponentUsagesPerProject>;
|
|
26220
26398
|
};
|
|
26221
26399
|
export type MarketplaceStatsComponentUsagesPerProjectListResponse = MarketplaceStatsComponentUsagesPerProjectListResponses[keyof MarketplaceStatsComponentUsagesPerProjectListResponses];
|
|
26222
|
-
export type
|
|
26400
|
+
export type MarketplaceStatsComponentUsagesPerProjectCountData = {
|
|
26223
26401
|
body?: never;
|
|
26224
26402
|
path?: never;
|
|
26225
26403
|
query?: {
|
|
@@ -26234,7 +26412,7 @@ export type MarketplaceStatsComponentUsagesPerProjectHeadData = {
|
|
|
26234
26412
|
};
|
|
26235
26413
|
url: '/api/marketplace-stats/component_usages_per_project/';
|
|
26236
26414
|
};
|
|
26237
|
-
export type
|
|
26415
|
+
export type MarketplaceStatsComponentUsagesPerProjectCountResponses = {
|
|
26238
26416
|
/**
|
|
26239
26417
|
* No response body
|
|
26240
26418
|
*/
|
|
@@ -26259,7 +26437,7 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListResponses =
|
|
|
26259
26437
|
200: Array<OfferingStats>;
|
|
26260
26438
|
};
|
|
26261
26439
|
export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListResponse = MarketplaceStatsCountActiveResourcesGroupedByOfferingListResponses[keyof MarketplaceStatsCountActiveResourcesGroupedByOfferingListResponses];
|
|
26262
|
-
export type
|
|
26440
|
+
export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
|
|
26263
26441
|
body?: never;
|
|
26264
26442
|
path?: never;
|
|
26265
26443
|
query?: {
|
|
@@ -26274,7 +26452,7 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingHeadData = {
|
|
|
26274
26452
|
};
|
|
26275
26453
|
url: '/api/marketplace-stats/count_active_resources_grouped_by_offering/';
|
|
26276
26454
|
};
|
|
26277
|
-
export type
|
|
26455
|
+
export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountResponses = {
|
|
26278
26456
|
/**
|
|
26279
26457
|
* No response body
|
|
26280
26458
|
*/
|
|
@@ -26299,7 +26477,7 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryListResp
|
|
|
26299
26477
|
200: Array<OfferingCountryStats>;
|
|
26300
26478
|
};
|
|
26301
26479
|
export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryListResponse = MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryListResponses[keyof MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryListResponses];
|
|
26302
|
-
export type
|
|
26480
|
+
export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryCountData = {
|
|
26303
26481
|
body?: never;
|
|
26304
26482
|
path?: never;
|
|
26305
26483
|
query?: {
|
|
@@ -26314,7 +26492,7 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryHeadData
|
|
|
26314
26492
|
};
|
|
26315
26493
|
url: '/api/marketplace-stats/count_active_resources_grouped_by_offering_country/';
|
|
26316
26494
|
};
|
|
26317
|
-
export type
|
|
26495
|
+
export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountryCountResponses = {
|
|
26318
26496
|
/**
|
|
26319
26497
|
* No response body
|
|
26320
26498
|
*/
|
|
@@ -26339,7 +26517,7 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupListRe
|
|
|
26339
26517
|
200: Array<CountStats>;
|
|
26340
26518
|
};
|
|
26341
26519
|
export type MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupListResponse = MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupListResponses[keyof MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupListResponses];
|
|
26342
|
-
export type
|
|
26520
|
+
export type MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupCountData = {
|
|
26343
26521
|
body?: never;
|
|
26344
26522
|
path?: never;
|
|
26345
26523
|
query?: {
|
|
@@ -26354,7 +26532,7 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupHeadDa
|
|
|
26354
26532
|
};
|
|
26355
26533
|
url: '/api/marketplace-stats/count_active_resources_grouped_by_organization_group/';
|
|
26356
26534
|
};
|
|
26357
|
-
export type
|
|
26535
|
+
export type MarketplaceStatsCountActiveResourcesGroupedByOrganizationGroupCountResponses = {
|
|
26358
26536
|
/**
|
|
26359
26537
|
* No response body
|
|
26360
26538
|
*/
|
|
@@ -26379,7 +26557,7 @@ export type MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagListRes
|
|
|
26379
26557
|
200: Array<CustomerIndustryFlagStats>;
|
|
26380
26558
|
};
|
|
26381
26559
|
export type MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagListResponse = MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagListResponses[keyof MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagListResponses];
|
|
26382
|
-
export type
|
|
26560
|
+
export type MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagCountData = {
|
|
26383
26561
|
body?: never;
|
|
26384
26562
|
path?: never;
|
|
26385
26563
|
query?: {
|
|
@@ -26394,7 +26572,7 @@ export type MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagHeadDat
|
|
|
26394
26572
|
};
|
|
26395
26573
|
url: '/api/marketplace-stats/count_projects_grouped_by_provider_and_industry_flag/';
|
|
26396
26574
|
};
|
|
26397
|
-
export type
|
|
26575
|
+
export type MarketplaceStatsCountProjectsGroupedByProviderAndIndustryFlagCountResponses = {
|
|
26398
26576
|
/**
|
|
26399
26577
|
* No response body
|
|
26400
26578
|
*/
|
|
@@ -26419,7 +26597,7 @@ export type MarketplaceStatsCountProjectsGroupedByProviderAndOecdListResponses =
|
|
|
26419
26597
|
200: Array<CustomerOecdCodeStats>;
|
|
26420
26598
|
};
|
|
26421
26599
|
export type MarketplaceStatsCountProjectsGroupedByProviderAndOecdListResponse = MarketplaceStatsCountProjectsGroupedByProviderAndOecdListResponses[keyof MarketplaceStatsCountProjectsGroupedByProviderAndOecdListResponses];
|
|
26422
|
-
export type
|
|
26600
|
+
export type MarketplaceStatsCountProjectsGroupedByProviderAndOecdCountData = {
|
|
26423
26601
|
body?: never;
|
|
26424
26602
|
path?: never;
|
|
26425
26603
|
query?: {
|
|
@@ -26434,7 +26612,7 @@ export type MarketplaceStatsCountProjectsGroupedByProviderAndOecdHeadData = {
|
|
|
26434
26612
|
};
|
|
26435
26613
|
url: '/api/marketplace-stats/count_projects_grouped_by_provider_and_oecd/';
|
|
26436
26614
|
};
|
|
26437
|
-
export type
|
|
26615
|
+
export type MarketplaceStatsCountProjectsGroupedByProviderAndOecdCountResponses = {
|
|
26438
26616
|
/**
|
|
26439
26617
|
* No response body
|
|
26440
26618
|
*/
|
|
@@ -26459,7 +26637,7 @@ export type MarketplaceStatsCountProjectsOfServiceProvidersListResponses = {
|
|
|
26459
26637
|
200: Array<CountProjectsOfServiceProviders>;
|
|
26460
26638
|
};
|
|
26461
26639
|
export type MarketplaceStatsCountProjectsOfServiceProvidersListResponse = MarketplaceStatsCountProjectsOfServiceProvidersListResponses[keyof MarketplaceStatsCountProjectsOfServiceProvidersListResponses];
|
|
26462
|
-
export type
|
|
26640
|
+
export type MarketplaceStatsCountProjectsOfServiceProvidersCountData = {
|
|
26463
26641
|
body?: never;
|
|
26464
26642
|
path?: never;
|
|
26465
26643
|
query?: {
|
|
@@ -26474,7 +26652,7 @@ export type MarketplaceStatsCountProjectsOfServiceProvidersHeadData = {
|
|
|
26474
26652
|
};
|
|
26475
26653
|
url: '/api/marketplace-stats/count_projects_of_service_providers/';
|
|
26476
26654
|
};
|
|
26477
|
-
export type
|
|
26655
|
+
export type MarketplaceStatsCountProjectsOfServiceProvidersCountResponses = {
|
|
26478
26656
|
/**
|
|
26479
26657
|
* No response body
|
|
26480
26658
|
*/
|
|
@@ -26499,7 +26677,7 @@ export type MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdListResp
|
|
|
26499
26677
|
200: Array<CountProjectsOfServiceProvidersGroupedByOecd>;
|
|
26500
26678
|
};
|
|
26501
26679
|
export type MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdListResponse = MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdListResponses[keyof MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdListResponses];
|
|
26502
|
-
export type
|
|
26680
|
+
export type MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdCountData = {
|
|
26503
26681
|
body?: never;
|
|
26504
26682
|
path?: never;
|
|
26505
26683
|
query?: {
|
|
@@ -26514,7 +26692,7 @@ export type MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdHeadData
|
|
|
26514
26692
|
};
|
|
26515
26693
|
url: '/api/marketplace-stats/count_projects_of_service_providers_grouped_by_oecd/';
|
|
26516
26694
|
};
|
|
26517
|
-
export type
|
|
26695
|
+
export type MarketplaceStatsCountProjectsOfServiceProvidersGroupedByOecdCountResponses = {
|
|
26518
26696
|
/**
|
|
26519
26697
|
* No response body
|
|
26520
26698
|
*/
|
|
@@ -26539,7 +26717,7 @@ export type MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServic
|
|
|
26539
26717
|
200: Array<CountUniqueUsersConnectedWithActiveResourcesOfServiceProvider>;
|
|
26540
26718
|
};
|
|
26541
26719
|
export type MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServiceProviderListResponse = MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServiceProviderListResponses[keyof MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServiceProviderListResponses];
|
|
26542
|
-
export type
|
|
26720
|
+
export type MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServiceProviderCountData = {
|
|
26543
26721
|
body?: never;
|
|
26544
26722
|
path?: never;
|
|
26545
26723
|
query?: {
|
|
@@ -26554,7 +26732,7 @@ export type MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServic
|
|
|
26554
26732
|
};
|
|
26555
26733
|
url: '/api/marketplace-stats/count_unique_users_connected_with_active_resources_of_service_provider/';
|
|
26556
26734
|
};
|
|
26557
|
-
export type
|
|
26735
|
+
export type MarketplaceStatsCountUniqueUsersConnectedWithActiveResourcesOfServiceProviderCountResponses = {
|
|
26558
26736
|
/**
|
|
26559
26737
|
* No response body
|
|
26560
26738
|
*/
|
|
@@ -26579,7 +26757,7 @@ export type MarketplaceStatsCountUsersOfServiceProvidersListResponses = {
|
|
|
26579
26757
|
200: Array<CountUsersOfServiceProviders>;
|
|
26580
26758
|
};
|
|
26581
26759
|
export type MarketplaceStatsCountUsersOfServiceProvidersListResponse = MarketplaceStatsCountUsersOfServiceProvidersListResponses[keyof MarketplaceStatsCountUsersOfServiceProvidersListResponses];
|
|
26582
|
-
export type
|
|
26760
|
+
export type MarketplaceStatsCountUsersOfServiceProvidersCountData = {
|
|
26583
26761
|
body?: never;
|
|
26584
26762
|
path?: never;
|
|
26585
26763
|
query?: {
|
|
@@ -26594,7 +26772,7 @@ export type MarketplaceStatsCountUsersOfServiceProvidersHeadData = {
|
|
|
26594
26772
|
};
|
|
26595
26773
|
url: '/api/marketplace-stats/count_users_of_service_providers/';
|
|
26596
26774
|
};
|
|
26597
|
-
export type
|
|
26775
|
+
export type MarketplaceStatsCountUsersOfServiceProvidersCountResponses = {
|
|
26598
26776
|
/**
|
|
26599
26777
|
* No response body
|
|
26600
26778
|
*/
|
|
@@ -26619,7 +26797,7 @@ export type MarketplaceStatsCustomerMemberCountListResponses = {
|
|
|
26619
26797
|
200: Array<CustomerMemberCount>;
|
|
26620
26798
|
};
|
|
26621
26799
|
export type MarketplaceStatsCustomerMemberCountListResponse = MarketplaceStatsCustomerMemberCountListResponses[keyof MarketplaceStatsCustomerMemberCountListResponses];
|
|
26622
|
-
export type
|
|
26800
|
+
export type MarketplaceStatsCustomerMemberCountCountData = {
|
|
26623
26801
|
body?: never;
|
|
26624
26802
|
path?: never;
|
|
26625
26803
|
query?: {
|
|
@@ -26634,7 +26812,7 @@ export type MarketplaceStatsCustomerMemberCountHeadData = {
|
|
|
26634
26812
|
};
|
|
26635
26813
|
url: '/api/marketplace-stats/customer_member_count/';
|
|
26636
26814
|
};
|
|
26637
|
-
export type
|
|
26815
|
+
export type MarketplaceStatsCustomerMemberCountCountResponses = {
|
|
26638
26816
|
/**
|
|
26639
26817
|
* No response body
|
|
26640
26818
|
*/
|
|
@@ -26659,7 +26837,7 @@ export type MarketplaceStatsOfferingsCounterStatsListResponses = {
|
|
|
26659
26837
|
200: Array<OfferingStatsCounter>;
|
|
26660
26838
|
};
|
|
26661
26839
|
export type MarketplaceStatsOfferingsCounterStatsListResponse = MarketplaceStatsOfferingsCounterStatsListResponses[keyof MarketplaceStatsOfferingsCounterStatsListResponses];
|
|
26662
|
-
export type
|
|
26840
|
+
export type MarketplaceStatsOfferingsCounterStatsCountData = {
|
|
26663
26841
|
body?: never;
|
|
26664
26842
|
path?: never;
|
|
26665
26843
|
query?: {
|
|
@@ -26674,7 +26852,7 @@ export type MarketplaceStatsOfferingsCounterStatsHeadData = {
|
|
|
26674
26852
|
};
|
|
26675
26853
|
url: '/api/marketplace-stats/offerings_counter_stats/';
|
|
26676
26854
|
};
|
|
26677
|
-
export type
|
|
26855
|
+
export type MarketplaceStatsOfferingsCounterStatsCountResponses = {
|
|
26678
26856
|
/**
|
|
26679
26857
|
* No response body
|
|
26680
26858
|
*/
|
|
@@ -26699,7 +26877,7 @@ export type MarketplaceStatsOrganizationProjectCountListResponses = {
|
|
|
26699
26877
|
200: Array<MarketplaceCustomerStats>;
|
|
26700
26878
|
};
|
|
26701
26879
|
export type MarketplaceStatsOrganizationProjectCountListResponse = MarketplaceStatsOrganizationProjectCountListResponses[keyof MarketplaceStatsOrganizationProjectCountListResponses];
|
|
26702
|
-
export type
|
|
26880
|
+
export type MarketplaceStatsOrganizationProjectCountCountData = {
|
|
26703
26881
|
body?: never;
|
|
26704
26882
|
path?: never;
|
|
26705
26883
|
query?: {
|
|
@@ -26714,7 +26892,7 @@ export type MarketplaceStatsOrganizationProjectCountHeadData = {
|
|
|
26714
26892
|
};
|
|
26715
26893
|
url: '/api/marketplace-stats/organization_project_count/';
|
|
26716
26894
|
};
|
|
26717
|
-
export type
|
|
26895
|
+
export type MarketplaceStatsOrganizationProjectCountCountResponses = {
|
|
26718
26896
|
/**
|
|
26719
26897
|
* No response body
|
|
26720
26898
|
*/
|
|
@@ -26739,7 +26917,7 @@ export type MarketplaceStatsOrganizationResourceCountListResponses = {
|
|
|
26739
26917
|
200: Array<MarketplaceCustomerStats>;
|
|
26740
26918
|
};
|
|
26741
26919
|
export type MarketplaceStatsOrganizationResourceCountListResponse = MarketplaceStatsOrganizationResourceCountListResponses[keyof MarketplaceStatsOrganizationResourceCountListResponses];
|
|
26742
|
-
export type
|
|
26920
|
+
export type MarketplaceStatsOrganizationResourceCountCountData = {
|
|
26743
26921
|
body?: never;
|
|
26744
26922
|
path?: never;
|
|
26745
26923
|
query?: {
|
|
@@ -26754,7 +26932,7 @@ export type MarketplaceStatsOrganizationResourceCountHeadData = {
|
|
|
26754
26932
|
};
|
|
26755
26933
|
url: '/api/marketplace-stats/organization_resource_count/';
|
|
26756
26934
|
};
|
|
26757
|
-
export type
|
|
26935
|
+
export type MarketplaceStatsOrganizationResourceCountCountResponses = {
|
|
26758
26936
|
/**
|
|
26759
26937
|
* No response body
|
|
26760
26938
|
*/
|
|
@@ -26770,13 +26948,13 @@ export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveResponses
|
|
|
26770
26948
|
200: ProjectsLimitsGroupedByIndustryFlag;
|
|
26771
26949
|
};
|
|
26772
26950
|
export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveResponse = MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveResponses[keyof MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveResponses];
|
|
26773
|
-
export type
|
|
26951
|
+
export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagCountData = {
|
|
26774
26952
|
body?: never;
|
|
26775
26953
|
path?: never;
|
|
26776
26954
|
query?: never;
|
|
26777
26955
|
url: '/api/marketplace-stats/projects_limits_grouped_by_industry_flag/';
|
|
26778
26956
|
};
|
|
26779
|
-
export type
|
|
26957
|
+
export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagCountResponses = {
|
|
26780
26958
|
/**
|
|
26781
26959
|
* No response body
|
|
26782
26960
|
*/
|
|
@@ -26792,13 +26970,13 @@ export type MarketplaceStatsProjectsLimitsGroupedByOecdRetrieveResponses = {
|
|
|
26792
26970
|
200: ProjectsLimitsGroupedByOecd;
|
|
26793
26971
|
};
|
|
26794
26972
|
export type MarketplaceStatsProjectsLimitsGroupedByOecdRetrieveResponse = MarketplaceStatsProjectsLimitsGroupedByOecdRetrieveResponses[keyof MarketplaceStatsProjectsLimitsGroupedByOecdRetrieveResponses];
|
|
26795
|
-
export type
|
|
26973
|
+
export type MarketplaceStatsProjectsLimitsGroupedByOecdCountData = {
|
|
26796
26974
|
body?: never;
|
|
26797
26975
|
path?: never;
|
|
26798
26976
|
query?: never;
|
|
26799
26977
|
url: '/api/marketplace-stats/projects_limits_grouped_by_oecd/';
|
|
26800
26978
|
};
|
|
26801
|
-
export type
|
|
26979
|
+
export type MarketplaceStatsProjectsLimitsGroupedByOecdCountResponses = {
|
|
26802
26980
|
/**
|
|
26803
26981
|
* No response body
|
|
26804
26982
|
*/
|
|
@@ -26814,13 +26992,13 @@ export type MarketplaceStatsProjectsUsagesGroupedByIndustryFlagRetrieveResponses
|
|
|
26814
26992
|
200: ProjectsUsagesGroupedByIndustryFlag;
|
|
26815
26993
|
};
|
|
26816
26994
|
export type MarketplaceStatsProjectsUsagesGroupedByIndustryFlagRetrieveResponse = MarketplaceStatsProjectsUsagesGroupedByIndustryFlagRetrieveResponses[keyof MarketplaceStatsProjectsUsagesGroupedByIndustryFlagRetrieveResponses];
|
|
26817
|
-
export type
|
|
26995
|
+
export type MarketplaceStatsProjectsUsagesGroupedByIndustryFlagCountData = {
|
|
26818
26996
|
body?: never;
|
|
26819
26997
|
path?: never;
|
|
26820
26998
|
query?: never;
|
|
26821
26999
|
url: '/api/marketplace-stats/projects_usages_grouped_by_industry_flag/';
|
|
26822
27000
|
};
|
|
26823
|
-
export type
|
|
27001
|
+
export type MarketplaceStatsProjectsUsagesGroupedByIndustryFlagCountResponses = {
|
|
26824
27002
|
/**
|
|
26825
27003
|
* No response body
|
|
26826
27004
|
*/
|
|
@@ -26836,13 +27014,13 @@ export type MarketplaceStatsProjectsUsagesGroupedByOecdRetrieveResponses = {
|
|
|
26836
27014
|
200: ProjectsUsagesGroupedByOecd;
|
|
26837
27015
|
};
|
|
26838
27016
|
export type MarketplaceStatsProjectsUsagesGroupedByOecdRetrieveResponse = MarketplaceStatsProjectsUsagesGroupedByOecdRetrieveResponses[keyof MarketplaceStatsProjectsUsagesGroupedByOecdRetrieveResponses];
|
|
26839
|
-
export type
|
|
27017
|
+
export type MarketplaceStatsProjectsUsagesGroupedByOecdCountData = {
|
|
26840
27018
|
body?: never;
|
|
26841
27019
|
path?: never;
|
|
26842
27020
|
query?: never;
|
|
26843
27021
|
url: '/api/marketplace-stats/projects_usages_grouped_by_oecd/';
|
|
26844
27022
|
};
|
|
26845
|
-
export type
|
|
27023
|
+
export type MarketplaceStatsProjectsUsagesGroupedByOecdCountResponses = {
|
|
26846
27024
|
/**
|
|
26847
27025
|
* No response body
|
|
26848
27026
|
*/
|
|
@@ -26867,7 +27045,7 @@ export type MarketplaceStatsResourcesLimitsListResponses = {
|
|
|
26867
27045
|
200: Array<ResourcesLimits>;
|
|
26868
27046
|
};
|
|
26869
27047
|
export type MarketplaceStatsResourcesLimitsListResponse = MarketplaceStatsResourcesLimitsListResponses[keyof MarketplaceStatsResourcesLimitsListResponses];
|
|
26870
|
-
export type
|
|
27048
|
+
export type MarketplaceStatsResourcesLimitsCountData = {
|
|
26871
27049
|
body?: never;
|
|
26872
27050
|
path?: never;
|
|
26873
27051
|
query?: {
|
|
@@ -26882,7 +27060,7 @@ export type MarketplaceStatsResourcesLimitsHeadData = {
|
|
|
26882
27060
|
};
|
|
26883
27061
|
url: '/api/marketplace-stats/resources_limits/';
|
|
26884
27062
|
};
|
|
26885
|
-
export type
|
|
27063
|
+
export type MarketplaceStatsResourcesLimitsCountResponses = {
|
|
26886
27064
|
/**
|
|
26887
27065
|
* No response body
|
|
26888
27066
|
*/
|
|
@@ -26907,7 +27085,7 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListResponses =
|
|
|
26907
27085
|
200: Array<OfferingCost>;
|
|
26908
27086
|
};
|
|
26909
27087
|
export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListResponse = MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListResponses[keyof MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListResponses];
|
|
26910
|
-
export type
|
|
27088
|
+
export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountData = {
|
|
26911
27089
|
body?: never;
|
|
26912
27090
|
path?: never;
|
|
26913
27091
|
query?: {
|
|
@@ -26922,7 +27100,7 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingHeadData = {
|
|
|
26922
27100
|
};
|
|
26923
27101
|
url: '/api/marketplace-stats/total_cost_of_active_resources_per_offering/';
|
|
26924
27102
|
};
|
|
26925
|
-
export type
|
|
27103
|
+
export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses = {
|
|
26926
27104
|
/**
|
|
26927
27105
|
* No response body
|
|
26928
27106
|
*/
|
|
@@ -26965,7 +27143,7 @@ export type NotificationMessagesListResponses = {
|
|
|
26965
27143
|
200: Array<Notification>;
|
|
26966
27144
|
};
|
|
26967
27145
|
export type NotificationMessagesListResponse = NotificationMessagesListResponses[keyof NotificationMessagesListResponses];
|
|
26968
|
-
export type
|
|
27146
|
+
export type NotificationMessagesCountData = {
|
|
26969
27147
|
body?: never;
|
|
26970
27148
|
path?: never;
|
|
26971
27149
|
query?: {
|
|
@@ -26986,7 +27164,7 @@ export type NotificationMessagesHeadData = {
|
|
|
26986
27164
|
};
|
|
26987
27165
|
url: '/api/notification-messages/';
|
|
26988
27166
|
};
|
|
26989
|
-
export type
|
|
27167
|
+
export type NotificationMessagesCountResponses = {
|
|
26990
27168
|
/**
|
|
26991
27169
|
* No response body
|
|
26992
27170
|
*/
|
|
@@ -27026,7 +27204,7 @@ export type NotificationMessagesTemplatesListResponses = {
|
|
|
27026
27204
|
200: Array<NotificationTemplateDetailSerializers>;
|
|
27027
27205
|
};
|
|
27028
27206
|
export type NotificationMessagesTemplatesListResponse = NotificationMessagesTemplatesListResponses[keyof NotificationMessagesTemplatesListResponses];
|
|
27029
|
-
export type
|
|
27207
|
+
export type NotificationMessagesTemplatesCountData = {
|
|
27030
27208
|
body?: never;
|
|
27031
27209
|
path?: never;
|
|
27032
27210
|
query?: {
|
|
@@ -27046,7 +27224,7 @@ export type NotificationMessagesTemplatesHeadData = {
|
|
|
27046
27224
|
};
|
|
27047
27225
|
url: '/api/notification-messages-templates/';
|
|
27048
27226
|
};
|
|
27049
|
-
export type
|
|
27227
|
+
export type NotificationMessagesTemplatesCountResponses = {
|
|
27050
27228
|
/**
|
|
27051
27229
|
* No response body
|
|
27052
27230
|
*/
|
|
@@ -27251,7 +27429,7 @@ export type OpenstackBackupsListResponses = {
|
|
|
27251
27429
|
200: Array<OpenStackBackup>;
|
|
27252
27430
|
};
|
|
27253
27431
|
export type OpenstackBackupsListResponse = OpenstackBackupsListResponses[keyof OpenstackBackupsListResponses];
|
|
27254
|
-
export type
|
|
27432
|
+
export type OpenstackBackupsCountData = {
|
|
27255
27433
|
body?: never;
|
|
27256
27434
|
path?: never;
|
|
27257
27435
|
query?: {
|
|
@@ -27291,7 +27469,7 @@ export type OpenstackBackupsHeadData = {
|
|
|
27291
27469
|
};
|
|
27292
27470
|
url: '/api/openstack-backups/';
|
|
27293
27471
|
};
|
|
27294
|
-
export type
|
|
27472
|
+
export type OpenstackBackupsCountResponses = {
|
|
27295
27473
|
/**
|
|
27296
27474
|
* No response body
|
|
27297
27475
|
*/
|
|
@@ -27433,7 +27611,7 @@ export type OpenstackFlavorsListResponses = {
|
|
|
27433
27611
|
200: Array<OpenStackFlavor>;
|
|
27434
27612
|
};
|
|
27435
27613
|
export type OpenstackFlavorsListResponse = OpenstackFlavorsListResponses[keyof OpenstackFlavorsListResponses];
|
|
27436
|
-
export type
|
|
27614
|
+
export type OpenstackFlavorsCountData = {
|
|
27437
27615
|
body?: never;
|
|
27438
27616
|
path?: never;
|
|
27439
27617
|
query?: {
|
|
@@ -27471,7 +27649,7 @@ export type OpenstackFlavorsHeadData = {
|
|
|
27471
27649
|
};
|
|
27472
27650
|
url: '/api/openstack-flavors/';
|
|
27473
27651
|
};
|
|
27474
|
-
export type
|
|
27652
|
+
export type OpenstackFlavorsCountResponses = {
|
|
27475
27653
|
/**
|
|
27476
27654
|
* No response body
|
|
27477
27655
|
*/
|
|
@@ -27503,13 +27681,13 @@ export type OpenstackFlavorsUsageStatsRetrieveResponses = {
|
|
|
27503
27681
|
200: OpenStackFlavor;
|
|
27504
27682
|
};
|
|
27505
27683
|
export type OpenstackFlavorsUsageStatsRetrieveResponse = OpenstackFlavorsUsageStatsRetrieveResponses[keyof OpenstackFlavorsUsageStatsRetrieveResponses];
|
|
27506
|
-
export type
|
|
27684
|
+
export type OpenstackFlavorsUsageStatsCountData = {
|
|
27507
27685
|
body?: never;
|
|
27508
27686
|
path?: never;
|
|
27509
27687
|
query?: never;
|
|
27510
27688
|
url: '/api/openstack-flavors/usage_stats/';
|
|
27511
27689
|
};
|
|
27512
|
-
export type
|
|
27690
|
+
export type OpenstackFlavorsUsageStatsCountResponses = {
|
|
27513
27691
|
/**
|
|
27514
27692
|
* No response body
|
|
27515
27693
|
*/
|
|
@@ -27561,7 +27739,7 @@ export type OpenstackFloatingIpsListResponses = {
|
|
|
27561
27739
|
200: Array<OpenStackFloatingIp>;
|
|
27562
27740
|
};
|
|
27563
27741
|
export type OpenstackFloatingIpsListResponse = OpenstackFloatingIpsListResponses[keyof OpenstackFloatingIpsListResponses];
|
|
27564
|
-
export type
|
|
27742
|
+
export type OpenstackFloatingIpsCountData = {
|
|
27565
27743
|
body?: never;
|
|
27566
27744
|
path?: never;
|
|
27567
27745
|
query?: {
|
|
@@ -27602,7 +27780,7 @@ export type OpenstackFloatingIpsHeadData = {
|
|
|
27602
27780
|
};
|
|
27603
27781
|
url: '/api/openstack-floating-ips/';
|
|
27604
27782
|
};
|
|
27605
|
-
export type
|
|
27783
|
+
export type OpenstackFloatingIpsCountResponses = {
|
|
27606
27784
|
/**
|
|
27607
27785
|
* No response body
|
|
27608
27786
|
*/
|
|
@@ -27733,7 +27911,7 @@ export type OpenstackImagesListResponses = {
|
|
|
27733
27911
|
200: Array<OpenStackImage>;
|
|
27734
27912
|
};
|
|
27735
27913
|
export type OpenstackImagesListResponse = OpenstackImagesListResponses[keyof OpenstackImagesListResponses];
|
|
27736
|
-
export type
|
|
27914
|
+
export type OpenstackImagesCountData = {
|
|
27737
27915
|
body?: never;
|
|
27738
27916
|
path?: never;
|
|
27739
27917
|
query?: {
|
|
@@ -27755,7 +27933,7 @@ export type OpenstackImagesHeadData = {
|
|
|
27755
27933
|
};
|
|
27756
27934
|
url: '/api/openstack-images/';
|
|
27757
27935
|
};
|
|
27758
|
-
export type
|
|
27936
|
+
export type OpenstackImagesCountResponses = {
|
|
27759
27937
|
/**
|
|
27760
27938
|
* No response body
|
|
27761
27939
|
*/
|
|
@@ -27783,13 +27961,13 @@ export type OpenstackImagesUsageStatsRetrieveResponses = {
|
|
|
27783
27961
|
200: OpenStackImage;
|
|
27784
27962
|
};
|
|
27785
27963
|
export type OpenstackImagesUsageStatsRetrieveResponse = OpenstackImagesUsageStatsRetrieveResponses[keyof OpenstackImagesUsageStatsRetrieveResponses];
|
|
27786
|
-
export type
|
|
27964
|
+
export type OpenstackImagesUsageStatsCountData = {
|
|
27787
27965
|
body?: never;
|
|
27788
27966
|
path?: never;
|
|
27789
27967
|
query?: never;
|
|
27790
27968
|
url: '/api/openstack-images/usage_stats/';
|
|
27791
27969
|
};
|
|
27792
|
-
export type
|
|
27970
|
+
export type OpenstackImagesUsageStatsCountResponses = {
|
|
27793
27971
|
/**
|
|
27794
27972
|
* No response body
|
|
27795
27973
|
*/
|
|
@@ -27820,7 +27998,7 @@ export type OpenstackInstanceAvailabilityZonesListResponses = {
|
|
|
27820
27998
|
200: Array<OpenStackInstanceAvailabilityZone>;
|
|
27821
27999
|
};
|
|
27822
28000
|
export type OpenstackInstanceAvailabilityZonesListResponse = OpenstackInstanceAvailabilityZonesListResponses[keyof OpenstackInstanceAvailabilityZonesListResponses];
|
|
27823
|
-
export type
|
|
28001
|
+
export type OpenstackInstanceAvailabilityZonesCountData = {
|
|
27824
28002
|
body?: never;
|
|
27825
28003
|
path?: never;
|
|
27826
28004
|
query?: {
|
|
@@ -27841,7 +28019,7 @@ export type OpenstackInstanceAvailabilityZonesHeadData = {
|
|
|
27841
28019
|
};
|
|
27842
28020
|
url: '/api/openstack-instance-availability-zones/';
|
|
27843
28021
|
};
|
|
27844
|
-
export type
|
|
28022
|
+
export type OpenstackInstanceAvailabilityZonesCountResponses = {
|
|
27845
28023
|
/**
|
|
27846
28024
|
* No response body
|
|
27847
28025
|
*/
|
|
@@ -27906,7 +28084,7 @@ export type OpenstackInstancesListResponses = {
|
|
|
27906
28084
|
200: Array<OpenStackInstance>;
|
|
27907
28085
|
};
|
|
27908
28086
|
export type OpenstackInstancesListResponse = OpenstackInstancesListResponses[keyof OpenstackInstancesListResponses];
|
|
27909
|
-
export type
|
|
28087
|
+
export type OpenstackInstancesCountData = {
|
|
27910
28088
|
body?: never;
|
|
27911
28089
|
path?: never;
|
|
27912
28090
|
query?: {
|
|
@@ -27948,7 +28126,7 @@ export type OpenstackInstancesHeadData = {
|
|
|
27948
28126
|
};
|
|
27949
28127
|
url: '/api/openstack-instances/';
|
|
27950
28128
|
};
|
|
27951
|
-
export type
|
|
28129
|
+
export type OpenstackInstancesCountResponses = {
|
|
27952
28130
|
/**
|
|
27953
28131
|
* No response body
|
|
27954
28132
|
*/
|
|
@@ -28252,7 +28430,7 @@ export type OpenstackMarketplaceTenantsListResponses = {
|
|
|
28252
28430
|
200: Array<Tenant>;
|
|
28253
28431
|
};
|
|
28254
28432
|
export type OpenstackMarketplaceTenantsListResponse = OpenstackMarketplaceTenantsListResponses[keyof OpenstackMarketplaceTenantsListResponses];
|
|
28255
|
-
export type
|
|
28433
|
+
export type OpenstackMarketplaceTenantsCountData = {
|
|
28256
28434
|
body?: never;
|
|
28257
28435
|
path?: never;
|
|
28258
28436
|
query?: {
|
|
@@ -28288,7 +28466,7 @@ export type OpenstackMarketplaceTenantsHeadData = {
|
|
|
28288
28466
|
};
|
|
28289
28467
|
url: '/api/openstack-marketplace-tenants/';
|
|
28290
28468
|
};
|
|
28291
|
-
export type
|
|
28469
|
+
export type OpenstackMarketplaceTenantsCountResponses = {
|
|
28292
28470
|
/**
|
|
28293
28471
|
* No response body
|
|
28294
28472
|
*/
|
|
@@ -28352,7 +28530,7 @@ export type OpenstackMigrationsListResponses = {
|
|
|
28352
28530
|
200: Array<MigrationDetails>;
|
|
28353
28531
|
};
|
|
28354
28532
|
export type OpenstackMigrationsListResponse = OpenstackMigrationsListResponses[keyof OpenstackMigrationsListResponses];
|
|
28355
|
-
export type
|
|
28533
|
+
export type OpenstackMigrationsCountData = {
|
|
28356
28534
|
body?: never;
|
|
28357
28535
|
path?: never;
|
|
28358
28536
|
query?: {
|
|
@@ -28369,7 +28547,7 @@ export type OpenstackMigrationsHeadData = {
|
|
|
28369
28547
|
};
|
|
28370
28548
|
url: '/api/openstack-migrations/';
|
|
28371
28549
|
};
|
|
28372
|
-
export type
|
|
28550
|
+
export type OpenstackMigrationsCountResponses = {
|
|
28373
28551
|
/**
|
|
28374
28552
|
* No response body
|
|
28375
28553
|
*/
|
|
@@ -28460,7 +28638,7 @@ export type OpenstackNetworkRbacPoliciesListResponses = {
|
|
|
28460
28638
|
200: Array<NetworkRbacPolicy>;
|
|
28461
28639
|
};
|
|
28462
28640
|
export type OpenstackNetworkRbacPoliciesListResponse = OpenstackNetworkRbacPoliciesListResponses[keyof OpenstackNetworkRbacPoliciesListResponses];
|
|
28463
|
-
export type
|
|
28641
|
+
export type OpenstackNetworkRbacPoliciesCountData = {
|
|
28464
28642
|
body?: never;
|
|
28465
28643
|
path?: never;
|
|
28466
28644
|
query?: {
|
|
@@ -28480,7 +28658,7 @@ export type OpenstackNetworkRbacPoliciesHeadData = {
|
|
|
28480
28658
|
};
|
|
28481
28659
|
url: '/api/openstack-network-rbac-policies/';
|
|
28482
28660
|
};
|
|
28483
|
-
export type
|
|
28661
|
+
export type OpenstackNetworkRbacPoliciesCountResponses = {
|
|
28484
28662
|
/**
|
|
28485
28663
|
* No response body
|
|
28486
28664
|
*/
|
|
@@ -28557,7 +28735,7 @@ export type OpenstackNetworksListResponses = {
|
|
|
28557
28735
|
200: Array<OpenStackNetwork>;
|
|
28558
28736
|
};
|
|
28559
28737
|
export type OpenstackNetworksListResponse = OpenstackNetworksListResponses[keyof OpenstackNetworksListResponses];
|
|
28560
|
-
export type
|
|
28738
|
+
export type OpenstackNetworksCountData = {
|
|
28561
28739
|
body?: never;
|
|
28562
28740
|
path?: never;
|
|
28563
28741
|
query?: {
|
|
@@ -28611,7 +28789,7 @@ export type OpenstackNetworksHeadData = {
|
|
|
28611
28789
|
};
|
|
28612
28790
|
url: '/api/openstack-networks/';
|
|
28613
28791
|
};
|
|
28614
|
-
export type
|
|
28792
|
+
export type OpenstackNetworksCountResponses = {
|
|
28615
28793
|
/**
|
|
28616
28794
|
* No response body
|
|
28617
28795
|
*/
|
|
@@ -28801,7 +28979,7 @@ export type OpenstackPortsListResponses = {
|
|
|
28801
28979
|
200: Array<OpenStackPort>;
|
|
28802
28980
|
};
|
|
28803
28981
|
export type OpenstackPortsListResponse = OpenstackPortsListResponses[keyof OpenstackPortsListResponses];
|
|
28804
|
-
export type
|
|
28982
|
+
export type OpenstackPortsCountData = {
|
|
28805
28983
|
body?: never;
|
|
28806
28984
|
path?: never;
|
|
28807
28985
|
query?: {
|
|
@@ -28844,7 +29022,7 @@ export type OpenstackPortsHeadData = {
|
|
|
28844
29022
|
};
|
|
28845
29023
|
url: '/api/openstack-ports/';
|
|
28846
29024
|
};
|
|
28847
|
-
export type
|
|
29025
|
+
export type OpenstackPortsCountResponses = {
|
|
28848
29026
|
/**
|
|
28849
29027
|
* No response body
|
|
28850
29028
|
*/
|
|
@@ -29049,7 +29227,7 @@ export type OpenstackRoutersListResponses = {
|
|
|
29049
29227
|
200: Array<OpenStackRouter>;
|
|
29050
29228
|
};
|
|
29051
29229
|
export type OpenstackRoutersListResponse = OpenstackRoutersListResponses[keyof OpenstackRoutersListResponses];
|
|
29052
|
-
export type
|
|
29230
|
+
export type OpenstackRoutersCountData = {
|
|
29053
29231
|
body?: never;
|
|
29054
29232
|
path?: never;
|
|
29055
29233
|
query?: {
|
|
@@ -29068,7 +29246,7 @@ export type OpenstackRoutersHeadData = {
|
|
|
29068
29246
|
};
|
|
29069
29247
|
url: '/api/openstack-routers/';
|
|
29070
29248
|
};
|
|
29071
|
-
export type
|
|
29249
|
+
export type OpenstackRoutersCountResponses = {
|
|
29072
29250
|
/**
|
|
29073
29251
|
* No response body
|
|
29074
29252
|
*/
|
|
@@ -29197,7 +29375,7 @@ export type OpenstackSecurityGroupsListResponses = {
|
|
|
29197
29375
|
200: Array<OpenStackSecurityGroup>;
|
|
29198
29376
|
};
|
|
29199
29377
|
export type OpenstackSecurityGroupsListResponse = OpenstackSecurityGroupsListResponses[keyof OpenstackSecurityGroupsListResponses];
|
|
29200
|
-
export type
|
|
29378
|
+
export type OpenstackSecurityGroupsCountData = {
|
|
29201
29379
|
body?: never;
|
|
29202
29380
|
path?: never;
|
|
29203
29381
|
query?: {
|
|
@@ -29236,7 +29414,7 @@ export type OpenstackSecurityGroupsHeadData = {
|
|
|
29236
29414
|
};
|
|
29237
29415
|
url: '/api/openstack-security-groups/';
|
|
29238
29416
|
};
|
|
29239
|
-
export type
|
|
29417
|
+
export type OpenstackSecurityGroupsCountResponses = {
|
|
29240
29418
|
/**
|
|
29241
29419
|
* No response body
|
|
29242
29420
|
*/
|
|
@@ -29380,7 +29558,7 @@ export type OpenstackServerGroupsListResponses = {
|
|
|
29380
29558
|
200: Array<OpenStackServerGroup>;
|
|
29381
29559
|
};
|
|
29382
29560
|
export type OpenstackServerGroupsListResponse = OpenstackServerGroupsListResponses[keyof OpenstackServerGroupsListResponses];
|
|
29383
|
-
export type
|
|
29561
|
+
export type OpenstackServerGroupsCountData = {
|
|
29384
29562
|
body?: never;
|
|
29385
29563
|
path?: never;
|
|
29386
29564
|
query?: {
|
|
@@ -29418,7 +29596,7 @@ export type OpenstackServerGroupsHeadData = {
|
|
|
29418
29596
|
};
|
|
29419
29597
|
url: '/api/openstack-server-groups/';
|
|
29420
29598
|
};
|
|
29421
|
-
export type
|
|
29599
|
+
export type OpenstackServerGroupsCountResponses = {
|
|
29422
29600
|
/**
|
|
29423
29601
|
* No response body
|
|
29424
29602
|
*/
|
|
@@ -29563,7 +29741,7 @@ export type OpenstackSnapshotsListResponses = {
|
|
|
29563
29741
|
200: Array<OpenStackSnapshot>;
|
|
29564
29742
|
};
|
|
29565
29743
|
export type OpenstackSnapshotsListResponse = OpenstackSnapshotsListResponses[keyof OpenstackSnapshotsListResponses];
|
|
29566
|
-
export type
|
|
29744
|
+
export type OpenstackSnapshotsCountData = {
|
|
29567
29745
|
body?: never;
|
|
29568
29746
|
path?: never;
|
|
29569
29747
|
query?: {
|
|
@@ -29606,7 +29784,7 @@ export type OpenstackSnapshotsHeadData = {
|
|
|
29606
29784
|
};
|
|
29607
29785
|
url: '/api/openstack-snapshots/';
|
|
29608
29786
|
};
|
|
29609
|
-
export type
|
|
29787
|
+
export type OpenstackSnapshotsCountResponses = {
|
|
29610
29788
|
/**
|
|
29611
29789
|
* No response body
|
|
29612
29790
|
*/
|
|
@@ -29787,7 +29965,7 @@ export type OpenstackSubnetsListResponses = {
|
|
|
29787
29965
|
200: Array<OpenStackSubNet>;
|
|
29788
29966
|
};
|
|
29789
29967
|
export type OpenstackSubnetsListResponse = OpenstackSubnetsListResponses[keyof OpenstackSubnetsListResponses];
|
|
29790
|
-
export type
|
|
29968
|
+
export type OpenstackSubnetsCountData = {
|
|
29791
29969
|
body?: never;
|
|
29792
29970
|
path?: never;
|
|
29793
29971
|
query?: {
|
|
@@ -29843,7 +30021,7 @@ export type OpenstackSubnetsHeadData = {
|
|
|
29843
30021
|
};
|
|
29844
30022
|
url: '/api/openstack-subnets/';
|
|
29845
30023
|
};
|
|
29846
|
-
export type
|
|
30024
|
+
export type OpenstackSubnetsCountResponses = {
|
|
29847
30025
|
/**
|
|
29848
30026
|
* No response body
|
|
29849
30027
|
*/
|
|
@@ -29999,7 +30177,7 @@ export type OpenstackTenantsListResponses = {
|
|
|
29999
30177
|
200: Array<OpenStackTenant>;
|
|
30000
30178
|
};
|
|
30001
30179
|
export type OpenstackTenantsListResponse = OpenstackTenantsListResponses[keyof OpenstackTenantsListResponses];
|
|
30002
|
-
export type
|
|
30180
|
+
export type OpenstackTenantsCountData = {
|
|
30003
30181
|
body?: never;
|
|
30004
30182
|
path?: never;
|
|
30005
30183
|
query?: {
|
|
@@ -30035,7 +30213,7 @@ export type OpenstackTenantsHeadData = {
|
|
|
30035
30213
|
};
|
|
30036
30214
|
url: '/api/openstack-tenants/';
|
|
30037
30215
|
};
|
|
30038
|
-
export type
|
|
30216
|
+
export type OpenstackTenantsCountResponses = {
|
|
30039
30217
|
/**
|
|
30040
30218
|
* No response body
|
|
30041
30219
|
*/
|
|
@@ -30367,7 +30545,7 @@ export type OpenstackVolumeAvailabilityZonesListResponses = {
|
|
|
30367
30545
|
200: Array<OpenStackVolumeAvailabilityZone>;
|
|
30368
30546
|
};
|
|
30369
30547
|
export type OpenstackVolumeAvailabilityZonesListResponse = OpenstackVolumeAvailabilityZonesListResponses[keyof OpenstackVolumeAvailabilityZonesListResponses];
|
|
30370
|
-
export type
|
|
30548
|
+
export type OpenstackVolumeAvailabilityZonesCountData = {
|
|
30371
30549
|
body?: never;
|
|
30372
30550
|
path?: never;
|
|
30373
30551
|
query?: {
|
|
@@ -30388,7 +30566,7 @@ export type OpenstackVolumeAvailabilityZonesHeadData = {
|
|
|
30388
30566
|
};
|
|
30389
30567
|
url: '/api/openstack-volume-availability-zones/';
|
|
30390
30568
|
};
|
|
30391
|
-
export type
|
|
30569
|
+
export type OpenstackVolumeAvailabilityZonesCountResponses = {
|
|
30392
30570
|
/**
|
|
30393
30571
|
* No response body
|
|
30394
30572
|
*/
|
|
@@ -30432,7 +30610,7 @@ export type OpenstackVolumeTypesListResponses = {
|
|
|
30432
30610
|
200: Array<OpenStackVolumeType>;
|
|
30433
30611
|
};
|
|
30434
30612
|
export type OpenstackVolumeTypesListResponse = OpenstackVolumeTypesListResponses[keyof OpenstackVolumeTypesListResponses];
|
|
30435
|
-
export type
|
|
30613
|
+
export type OpenstackVolumeTypesCountData = {
|
|
30436
30614
|
body?: never;
|
|
30437
30615
|
path?: never;
|
|
30438
30616
|
query?: {
|
|
@@ -30454,7 +30632,7 @@ export type OpenstackVolumeTypesHeadData = {
|
|
|
30454
30632
|
};
|
|
30455
30633
|
url: '/api/openstack-volume-types/';
|
|
30456
30634
|
};
|
|
30457
|
-
export type
|
|
30635
|
+
export type OpenstackVolumeTypesCountResponses = {
|
|
30458
30636
|
/**
|
|
30459
30637
|
* No response body
|
|
30460
30638
|
*/
|
|
@@ -30482,13 +30660,13 @@ export type OpenstackVolumeTypesNamesRetrieveResponses = {
|
|
|
30482
30660
|
200: Array<string>;
|
|
30483
30661
|
};
|
|
30484
30662
|
export type OpenstackVolumeTypesNamesRetrieveResponse = OpenstackVolumeTypesNamesRetrieveResponses[keyof OpenstackVolumeTypesNamesRetrieveResponses];
|
|
30485
|
-
export type
|
|
30663
|
+
export type OpenstackVolumeTypesNamesCountData = {
|
|
30486
30664
|
body?: never;
|
|
30487
30665
|
path?: never;
|
|
30488
30666
|
query?: never;
|
|
30489
30667
|
url: '/api/openstack-volume-types/names/';
|
|
30490
30668
|
};
|
|
30491
|
-
export type
|
|
30669
|
+
export type OpenstackVolumeTypesNamesCountResponses = {
|
|
30492
30670
|
/**
|
|
30493
30671
|
* No response body
|
|
30494
30672
|
*/
|
|
@@ -30544,7 +30722,7 @@ export type OpenstackVolumesListResponses = {
|
|
|
30544
30722
|
200: Array<OpenStackVolume>;
|
|
30545
30723
|
};
|
|
30546
30724
|
export type OpenstackVolumesListResponse = OpenstackVolumesListResponses[keyof OpenstackVolumesListResponses];
|
|
30547
|
-
export type
|
|
30725
|
+
export type OpenstackVolumesCountData = {
|
|
30548
30726
|
body?: never;
|
|
30549
30727
|
path?: never;
|
|
30550
30728
|
query?: {
|
|
@@ -30589,7 +30767,7 @@ export type OpenstackVolumesHeadData = {
|
|
|
30589
30767
|
};
|
|
30590
30768
|
url: '/api/openstack-volumes/';
|
|
30591
30769
|
};
|
|
30592
|
-
export type
|
|
30770
|
+
export type OpenstackVolumesCountResponses = {
|
|
30593
30771
|
/**
|
|
30594
30772
|
* No response body
|
|
30595
30773
|
*/
|
|
@@ -30755,7 +30933,7 @@ export type OrganizationGroupsListResponses = {
|
|
|
30755
30933
|
200: Array<OrganizationGroup>;
|
|
30756
30934
|
};
|
|
30757
30935
|
export type OrganizationGroupsListResponse = OrganizationGroupsListResponses[keyof OrganizationGroupsListResponses];
|
|
30758
|
-
export type
|
|
30936
|
+
export type OrganizationGroupsCountData = {
|
|
30759
30937
|
body?: never;
|
|
30760
30938
|
path?: never;
|
|
30761
30939
|
query?: {
|
|
@@ -30777,7 +30955,7 @@ export type OrganizationGroupsHeadData = {
|
|
|
30777
30955
|
};
|
|
30778
30956
|
url: '/api/organization-groups/';
|
|
30779
30957
|
};
|
|
30780
|
-
export type
|
|
30958
|
+
export type OrganizationGroupsCountResponses = {
|
|
30781
30959
|
/**
|
|
30782
30960
|
* No response body
|
|
30783
30961
|
*/
|
|
@@ -30895,7 +31073,7 @@ export type PaymentProfilesListResponses = {
|
|
|
30895
31073
|
200: Array<PaymentProfile>;
|
|
30896
31074
|
};
|
|
30897
31075
|
export type PaymentProfilesListResponse = PaymentProfilesListResponses[keyof PaymentProfilesListResponses];
|
|
30898
|
-
export type
|
|
31076
|
+
export type PaymentProfilesCountData = {
|
|
30899
31077
|
body?: never;
|
|
30900
31078
|
path?: never;
|
|
30901
31079
|
query?: {
|
|
@@ -30920,7 +31098,7 @@ export type PaymentProfilesHeadData = {
|
|
|
30920
31098
|
};
|
|
30921
31099
|
url: '/api/payment-profiles/';
|
|
30922
31100
|
};
|
|
30923
|
-
export type
|
|
31101
|
+
export type PaymentProfilesCountResponses = {
|
|
30924
31102
|
/**
|
|
30925
31103
|
* No response body
|
|
30926
31104
|
*/
|
|
@@ -31023,7 +31201,7 @@ export type PaymentsListResponses = {
|
|
|
31023
31201
|
200: Array<Payment>;
|
|
31024
31202
|
};
|
|
31025
31203
|
export type PaymentsListResponse = PaymentsListResponses[keyof PaymentsListResponses];
|
|
31026
|
-
export type
|
|
31204
|
+
export type PaymentsCountData = {
|
|
31027
31205
|
body?: never;
|
|
31028
31206
|
path?: never;
|
|
31029
31207
|
query?: {
|
|
@@ -31041,7 +31219,7 @@ export type PaymentsHeadData = {
|
|
|
31041
31219
|
};
|
|
31042
31220
|
url: '/api/payments/';
|
|
31043
31221
|
};
|
|
31044
|
-
export type
|
|
31222
|
+
export type PaymentsCountResponses = {
|
|
31045
31223
|
/**
|
|
31046
31224
|
* No response body
|
|
31047
31225
|
*/
|
|
@@ -31164,7 +31342,7 @@ export type ProjectCreditsListResponses = {
|
|
|
31164
31342
|
200: Array<ProjectCredit>;
|
|
31165
31343
|
};
|
|
31166
31344
|
export type ProjectCreditsListResponse = ProjectCreditsListResponses[keyof ProjectCreditsListResponses];
|
|
31167
|
-
export type
|
|
31345
|
+
export type ProjectCreditsCountData = {
|
|
31168
31346
|
body?: never;
|
|
31169
31347
|
path?: never;
|
|
31170
31348
|
query?: {
|
|
@@ -31190,7 +31368,7 @@ export type ProjectCreditsHeadData = {
|
|
|
31190
31368
|
};
|
|
31191
31369
|
url: '/api/project-credits/';
|
|
31192
31370
|
};
|
|
31193
|
-
export type
|
|
31371
|
+
export type ProjectCreditsCountResponses = {
|
|
31194
31372
|
/**
|
|
31195
31373
|
* No response body
|
|
31196
31374
|
*/
|
|
@@ -31276,7 +31454,7 @@ export type ProjectQuotasListResponses = {
|
|
|
31276
31454
|
200: Array<ProjectQuotas>;
|
|
31277
31455
|
};
|
|
31278
31456
|
export type ProjectQuotasListResponse = ProjectQuotasListResponses[keyof ProjectQuotasListResponses];
|
|
31279
|
-
export type
|
|
31457
|
+
export type ProjectQuotasCountData = {
|
|
31280
31458
|
body?: never;
|
|
31281
31459
|
path?: never;
|
|
31282
31460
|
query?: {
|
|
@@ -31291,7 +31469,7 @@ export type ProjectQuotasHeadData = {
|
|
|
31291
31469
|
};
|
|
31292
31470
|
url: '/api/project-quotas/';
|
|
31293
31471
|
};
|
|
31294
|
-
export type
|
|
31472
|
+
export type ProjectQuotasCountResponses = {
|
|
31295
31473
|
/**
|
|
31296
31474
|
* No response body
|
|
31297
31475
|
*/
|
|
@@ -31318,7 +31496,7 @@ export type ProjectTypesListResponses = {
|
|
|
31318
31496
|
200: Array<ProjectType>;
|
|
31319
31497
|
};
|
|
31320
31498
|
export type ProjectTypesListResponse = ProjectTypesListResponses[keyof ProjectTypesListResponses];
|
|
31321
|
-
export type
|
|
31499
|
+
export type ProjectTypesCountData = {
|
|
31322
31500
|
body?: never;
|
|
31323
31501
|
path?: never;
|
|
31324
31502
|
query?: {
|
|
@@ -31335,7 +31513,7 @@ export type ProjectTypesHeadData = {
|
|
|
31335
31513
|
};
|
|
31336
31514
|
url: '/api/project-types/';
|
|
31337
31515
|
};
|
|
31338
|
-
export type
|
|
31516
|
+
export type ProjectTypesCountResponses = {
|
|
31339
31517
|
/**
|
|
31340
31518
|
* No response body
|
|
31341
31519
|
*/
|
|
@@ -31412,7 +31590,7 @@ export type ProjectsListResponses = {
|
|
|
31412
31590
|
200: Array<Project>;
|
|
31413
31591
|
};
|
|
31414
31592
|
export type ProjectsListResponse = ProjectsListResponses[keyof ProjectsListResponses];
|
|
31415
|
-
export type
|
|
31593
|
+
export type ProjectsCountData = {
|
|
31416
31594
|
body?: never;
|
|
31417
31595
|
path?: never;
|
|
31418
31596
|
query?: {
|
|
@@ -31466,7 +31644,7 @@ export type ProjectsHeadData = {
|
|
|
31466
31644
|
};
|
|
31467
31645
|
url: '/api/projects/';
|
|
31468
31646
|
};
|
|
31469
|
-
export type
|
|
31647
|
+
export type ProjectsCountResponses = {
|
|
31470
31648
|
/**
|
|
31471
31649
|
* No response body
|
|
31472
31650
|
*/
|
|
@@ -31743,7 +31921,7 @@ export type PromotionsCampaignsListResponses = {
|
|
|
31743
31921
|
200: Array<Campaign>;
|
|
31744
31922
|
};
|
|
31745
31923
|
export type PromotionsCampaignsListResponse = PromotionsCampaignsListResponses[keyof PromotionsCampaignsListResponses];
|
|
31746
|
-
export type
|
|
31924
|
+
export type PromotionsCampaignsCountData = {
|
|
31747
31925
|
body?: never;
|
|
31748
31926
|
path?: never;
|
|
31749
31927
|
query?: {
|
|
@@ -31775,7 +31953,7 @@ export type PromotionsCampaignsHeadData = {
|
|
|
31775
31953
|
};
|
|
31776
31954
|
url: '/api/promotions-campaigns/';
|
|
31777
31955
|
};
|
|
31778
|
-
export type
|
|
31956
|
+
export type PromotionsCampaignsCountResponses = {
|
|
31779
31957
|
/**
|
|
31780
31958
|
* No response body
|
|
31781
31959
|
*/
|
|
@@ -31942,7 +32120,7 @@ export type ProposalProposalsListResponses = {
|
|
|
31942
32120
|
200: Array<Proposal>;
|
|
31943
32121
|
};
|
|
31944
32122
|
export type ProposalProposalsListResponse = ProposalProposalsListResponses[keyof ProposalProposalsListResponses];
|
|
31945
|
-
export type
|
|
32123
|
+
export type ProposalProposalsCountData = {
|
|
31946
32124
|
body?: never;
|
|
31947
32125
|
path?: never;
|
|
31948
32126
|
query?: {
|
|
@@ -31968,7 +32146,7 @@ export type ProposalProposalsHeadData = {
|
|
|
31968
32146
|
};
|
|
31969
32147
|
url: '/api/proposal-proposals/';
|
|
31970
32148
|
};
|
|
31971
|
-
export type
|
|
32149
|
+
export type ProposalProposalsCountResponses = {
|
|
31972
32150
|
/**
|
|
31973
32151
|
* No response body
|
|
31974
32152
|
*/
|
|
@@ -32412,7 +32590,7 @@ export type ProposalProtectedCallsListResponses = {
|
|
|
32412
32590
|
200: Array<ProtectedCall>;
|
|
32413
32591
|
};
|
|
32414
32592
|
export type ProposalProtectedCallsListResponse = ProposalProtectedCallsListResponses[keyof ProposalProtectedCallsListResponses];
|
|
32415
|
-
export type
|
|
32593
|
+
export type ProposalProtectedCallsCountData = {
|
|
32416
32594
|
body?: never;
|
|
32417
32595
|
path?: never;
|
|
32418
32596
|
query?: {
|
|
@@ -32441,7 +32619,7 @@ export type ProposalProtectedCallsHeadData = {
|
|
|
32441
32619
|
};
|
|
32442
32620
|
url: '/api/proposal-protected-calls/';
|
|
32443
32621
|
};
|
|
32444
|
-
export type
|
|
32622
|
+
export type ProposalProtectedCallsCountResponses = {
|
|
32445
32623
|
/**
|
|
32446
32624
|
* No response body
|
|
32447
32625
|
*/
|
|
@@ -33037,7 +33215,7 @@ export type ProposalPublicCallsListResponses = {
|
|
|
33037
33215
|
200: Array<PublicCall>;
|
|
33038
33216
|
};
|
|
33039
33217
|
export type ProposalPublicCallsListResponse = ProposalPublicCallsListResponses[keyof ProposalPublicCallsListResponses];
|
|
33040
|
-
export type
|
|
33218
|
+
export type ProposalPublicCallsCountData = {
|
|
33041
33219
|
body?: never;
|
|
33042
33220
|
path?: never;
|
|
33043
33221
|
query?: {
|
|
@@ -33066,7 +33244,7 @@ export type ProposalPublicCallsHeadData = {
|
|
|
33066
33244
|
};
|
|
33067
33245
|
url: '/api/proposal-public-calls/';
|
|
33068
33246
|
};
|
|
33069
|
-
export type
|
|
33247
|
+
export type ProposalPublicCallsCountResponses = {
|
|
33070
33248
|
/**
|
|
33071
33249
|
* No response body
|
|
33072
33250
|
*/
|
|
@@ -33127,7 +33305,7 @@ export type ProposalRequestedOfferingsListResponses = {
|
|
|
33127
33305
|
200: Array<ProviderRequestedOffering>;
|
|
33128
33306
|
};
|
|
33129
33307
|
export type ProposalRequestedOfferingsListResponse = ProposalRequestedOfferingsListResponses[keyof ProposalRequestedOfferingsListResponses];
|
|
33130
|
-
export type
|
|
33308
|
+
export type ProposalRequestedOfferingsCountData = {
|
|
33131
33309
|
body?: never;
|
|
33132
33310
|
path?: never;
|
|
33133
33311
|
query?: {
|
|
@@ -33164,7 +33342,7 @@ export type ProposalRequestedOfferingsHeadData = {
|
|
|
33164
33342
|
};
|
|
33165
33343
|
url: '/api/proposal-requested-offerings/';
|
|
33166
33344
|
};
|
|
33167
|
-
export type
|
|
33345
|
+
export type ProposalRequestedOfferingsCountResponses = {
|
|
33168
33346
|
/**
|
|
33169
33347
|
* No response body
|
|
33170
33348
|
*/
|
|
@@ -33251,7 +33429,7 @@ export type ProposalRequestedResourcesListResponses = {
|
|
|
33251
33429
|
200: Array<ProviderRequestedResource>;
|
|
33252
33430
|
};
|
|
33253
33431
|
export type ProposalRequestedResourcesListResponse = ProposalRequestedResourcesListResponses[keyof ProposalRequestedResourcesListResponses];
|
|
33254
|
-
export type
|
|
33432
|
+
export type ProposalRequestedResourcesCountData = {
|
|
33255
33433
|
body?: never;
|
|
33256
33434
|
path?: never;
|
|
33257
33435
|
query?: {
|
|
@@ -33288,7 +33466,7 @@ export type ProposalRequestedResourcesHeadData = {
|
|
|
33288
33466
|
};
|
|
33289
33467
|
url: '/api/proposal-requested-resources/';
|
|
33290
33468
|
};
|
|
33291
|
-
export type
|
|
33469
|
+
export type ProposalRequestedResourcesCountResponses = {
|
|
33292
33470
|
/**
|
|
33293
33471
|
* No response body
|
|
33294
33472
|
*/
|
|
@@ -33338,7 +33516,7 @@ export type ProposalReviewsListResponses = {
|
|
|
33338
33516
|
200: Array<ProposalReview>;
|
|
33339
33517
|
};
|
|
33340
33518
|
export type ProposalReviewsListResponse = ProposalReviewsListResponses[keyof ProposalReviewsListResponses];
|
|
33341
|
-
export type
|
|
33519
|
+
export type ProposalReviewsCountData = {
|
|
33342
33520
|
body?: never;
|
|
33343
33521
|
path?: never;
|
|
33344
33522
|
query?: {
|
|
@@ -33366,7 +33544,7 @@ export type ProposalReviewsHeadData = {
|
|
|
33366
33544
|
};
|
|
33367
33545
|
url: '/api/proposal-reviews/';
|
|
33368
33546
|
};
|
|
33369
|
-
export type
|
|
33547
|
+
export type ProposalReviewsCountResponses = {
|
|
33370
33548
|
/**
|
|
33371
33549
|
* No response body
|
|
33372
33550
|
*/
|
|
@@ -33505,7 +33683,7 @@ export type ProviderInvoiceItemsListResponses = {
|
|
|
33505
33683
|
200: Array<InvoiceItem>;
|
|
33506
33684
|
};
|
|
33507
33685
|
export type ProviderInvoiceItemsListResponse = ProviderInvoiceItemsListResponses[keyof ProviderInvoiceItemsListResponses];
|
|
33508
|
-
export type
|
|
33686
|
+
export type ProviderInvoiceItemsCountData = {
|
|
33509
33687
|
body?: never;
|
|
33510
33688
|
path?: never;
|
|
33511
33689
|
query?: {
|
|
@@ -33531,7 +33709,7 @@ export type ProviderInvoiceItemsHeadData = {
|
|
|
33531
33709
|
};
|
|
33532
33710
|
url: '/api/provider-invoice-items/';
|
|
33533
33711
|
};
|
|
33534
|
-
export type
|
|
33712
|
+
export type ProviderInvoiceItemsCountResponses = {
|
|
33535
33713
|
/**
|
|
33536
33714
|
* No response body
|
|
33537
33715
|
*/
|
|
@@ -33641,7 +33819,7 @@ export type RancherAppsListResponses = {
|
|
|
33641
33819
|
200: Array<RancherApplication>;
|
|
33642
33820
|
};
|
|
33643
33821
|
export type RancherAppsListResponse = RancherAppsListResponses[keyof RancherAppsListResponses];
|
|
33644
|
-
export type
|
|
33822
|
+
export type RancherAppsCountData = {
|
|
33645
33823
|
body?: never;
|
|
33646
33824
|
path?: never;
|
|
33647
33825
|
query?: {
|
|
@@ -33680,7 +33858,7 @@ export type RancherAppsHeadData = {
|
|
|
33680
33858
|
};
|
|
33681
33859
|
url: '/api/rancher-apps/';
|
|
33682
33860
|
};
|
|
33683
|
-
export type
|
|
33861
|
+
export type RancherAppsCountResponses = {
|
|
33684
33862
|
/**
|
|
33685
33863
|
* No response body
|
|
33686
33864
|
*/
|
|
@@ -33796,7 +33974,7 @@ export type RancherCatalogsListResponses = {
|
|
|
33796
33974
|
200: Array<RancherCatalog>;
|
|
33797
33975
|
};
|
|
33798
33976
|
export type RancherCatalogsListResponse = RancherCatalogsListResponses[keyof RancherCatalogsListResponses];
|
|
33799
|
-
export type
|
|
33977
|
+
export type RancherCatalogsCountData = {
|
|
33800
33978
|
body?: never;
|
|
33801
33979
|
path?: never;
|
|
33802
33980
|
query?: {
|
|
@@ -33811,7 +33989,7 @@ export type RancherCatalogsHeadData = {
|
|
|
33811
33989
|
};
|
|
33812
33990
|
url: '/api/rancher-catalogs/';
|
|
33813
33991
|
};
|
|
33814
|
-
export type
|
|
33992
|
+
export type RancherCatalogsCountResponses = {
|
|
33815
33993
|
/**
|
|
33816
33994
|
* No response body
|
|
33817
33995
|
*/
|
|
@@ -33912,7 +34090,7 @@ export type RancherClusterSecurityGroupsListResponses = {
|
|
|
33912
34090
|
200: Array<ClusterSecurityGroup>;
|
|
33913
34091
|
};
|
|
33914
34092
|
export type RancherClusterSecurityGroupsListResponse = RancherClusterSecurityGroupsListResponses[keyof RancherClusterSecurityGroupsListResponses];
|
|
33915
|
-
export type
|
|
34093
|
+
export type RancherClusterSecurityGroupsCountData = {
|
|
33916
34094
|
body?: never;
|
|
33917
34095
|
path?: never;
|
|
33918
34096
|
query?: {
|
|
@@ -33930,7 +34108,7 @@ export type RancherClusterSecurityGroupsHeadData = {
|
|
|
33930
34108
|
};
|
|
33931
34109
|
url: '/api/rancher-cluster-security-groups/';
|
|
33932
34110
|
};
|
|
33933
|
-
export type
|
|
34111
|
+
export type RancherClusterSecurityGroupsCountResponses = {
|
|
33934
34112
|
/**
|
|
33935
34113
|
* No response body
|
|
33936
34114
|
*/
|
|
@@ -33991,7 +34169,7 @@ export type RancherClusterTemplatesListResponses = {
|
|
|
33991
34169
|
200: Array<RancherClusterTemplate>;
|
|
33992
34170
|
};
|
|
33993
34171
|
export type RancherClusterTemplatesListResponse = RancherClusterTemplatesListResponses[keyof RancherClusterTemplatesListResponses];
|
|
33994
|
-
export type
|
|
34172
|
+
export type RancherClusterTemplatesCountData = {
|
|
33995
34173
|
body?: never;
|
|
33996
34174
|
path?: never;
|
|
33997
34175
|
query?: {
|
|
@@ -34006,7 +34184,7 @@ export type RancherClusterTemplatesHeadData = {
|
|
|
34006
34184
|
};
|
|
34007
34185
|
url: '/api/rancher-cluster-templates/';
|
|
34008
34186
|
};
|
|
34009
|
-
export type
|
|
34187
|
+
export type RancherClusterTemplatesCountResponses = {
|
|
34010
34188
|
/**
|
|
34011
34189
|
* No response body
|
|
34012
34190
|
*/
|
|
@@ -34065,7 +34243,7 @@ export type RancherClustersListResponses = {
|
|
|
34065
34243
|
200: Array<RancherCluster>;
|
|
34066
34244
|
};
|
|
34067
34245
|
export type RancherClustersListResponse = RancherClustersListResponses[keyof RancherClustersListResponses];
|
|
34068
|
-
export type
|
|
34246
|
+
export type RancherClustersCountData = {
|
|
34069
34247
|
body?: never;
|
|
34070
34248
|
path?: never;
|
|
34071
34249
|
query?: {
|
|
@@ -34101,7 +34279,7 @@ export type RancherClustersHeadData = {
|
|
|
34101
34279
|
};
|
|
34102
34280
|
url: '/api/rancher-clusters/';
|
|
34103
34281
|
};
|
|
34104
|
-
export type
|
|
34282
|
+
export type RancherClustersCountResponses = {
|
|
34105
34283
|
/**
|
|
34106
34284
|
* No response body
|
|
34107
34285
|
*/
|
|
@@ -34249,7 +34427,7 @@ export type RancherHpasListResponses = {
|
|
|
34249
34427
|
200: Array<RancherHpa>;
|
|
34250
34428
|
};
|
|
34251
34429
|
export type RancherHpasListResponse = RancherHpasListResponses[keyof RancherHpasListResponses];
|
|
34252
|
-
export type
|
|
34430
|
+
export type RancherHpasCountData = {
|
|
34253
34431
|
body?: never;
|
|
34254
34432
|
path?: never;
|
|
34255
34433
|
query?: {
|
|
@@ -34272,7 +34450,7 @@ export type RancherHpasHeadData = {
|
|
|
34272
34450
|
};
|
|
34273
34451
|
url: '/api/rancher-hpas/';
|
|
34274
34452
|
};
|
|
34275
|
-
export type
|
|
34453
|
+
export type RancherHpasCountResponses = {
|
|
34276
34454
|
/**
|
|
34277
34455
|
* No response body
|
|
34278
34456
|
*/
|
|
@@ -34435,7 +34613,7 @@ export type RancherIngressesListResponses = {
|
|
|
34435
34613
|
200: Array<RancherIngress>;
|
|
34436
34614
|
};
|
|
34437
34615
|
export type RancherIngressesListResponse = RancherIngressesListResponses[keyof RancherIngressesListResponses];
|
|
34438
|
-
export type
|
|
34616
|
+
export type RancherIngressesCountData = {
|
|
34439
34617
|
body?: never;
|
|
34440
34618
|
path?: never;
|
|
34441
34619
|
query?: {
|
|
@@ -34474,7 +34652,7 @@ export type RancherIngressesHeadData = {
|
|
|
34474
34652
|
};
|
|
34475
34653
|
url: '/api/rancher-ingresses/';
|
|
34476
34654
|
};
|
|
34477
|
-
export type
|
|
34655
|
+
export type RancherIngressesCountResponses = {
|
|
34478
34656
|
/**
|
|
34479
34657
|
* No response body
|
|
34480
34658
|
*/
|
|
@@ -34628,7 +34806,7 @@ export type RancherNamespacesListResponses = {
|
|
|
34628
34806
|
200: Array<RancherNamespace>;
|
|
34629
34807
|
};
|
|
34630
34808
|
export type RancherNamespacesListResponse = RancherNamespacesListResponses[keyof RancherNamespacesListResponses];
|
|
34631
|
-
export type
|
|
34809
|
+
export type RancherNamespacesCountData = {
|
|
34632
34810
|
body?: never;
|
|
34633
34811
|
path?: never;
|
|
34634
34812
|
query?: {
|
|
@@ -34655,7 +34833,7 @@ export type RancherNamespacesHeadData = {
|
|
|
34655
34833
|
};
|
|
34656
34834
|
url: '/api/rancher-namespaces/';
|
|
34657
34835
|
};
|
|
34658
|
-
export type
|
|
34836
|
+
export type RancherNamespacesCountResponses = {
|
|
34659
34837
|
/**
|
|
34660
34838
|
* No response body
|
|
34661
34839
|
*/
|
|
@@ -34693,7 +34871,7 @@ export type RancherNodesListResponses = {
|
|
|
34693
34871
|
200: Array<RancherNode>;
|
|
34694
34872
|
};
|
|
34695
34873
|
export type RancherNodesListResponse = RancherNodesListResponses[keyof RancherNodesListResponses];
|
|
34696
|
-
export type
|
|
34874
|
+
export type RancherNodesCountData = {
|
|
34697
34875
|
body?: never;
|
|
34698
34876
|
path?: never;
|
|
34699
34877
|
query?: {
|
|
@@ -34709,7 +34887,7 @@ export type RancherNodesHeadData = {
|
|
|
34709
34887
|
};
|
|
34710
34888
|
url: '/api/rancher-nodes/';
|
|
34711
34889
|
};
|
|
34712
|
-
export type
|
|
34890
|
+
export type RancherNodesCountResponses = {
|
|
34713
34891
|
/**
|
|
34714
34892
|
* No response body
|
|
34715
34893
|
*/
|
|
@@ -34864,7 +35042,7 @@ export type RancherProjectsListResponses = {
|
|
|
34864
35042
|
200: Array<RancherProject>;
|
|
34865
35043
|
};
|
|
34866
35044
|
export type RancherProjectsListResponse = RancherProjectsListResponses[keyof RancherProjectsListResponses];
|
|
34867
|
-
export type
|
|
35045
|
+
export type RancherProjectsCountData = {
|
|
34868
35046
|
body?: never;
|
|
34869
35047
|
path?: never;
|
|
34870
35048
|
query?: {
|
|
@@ -34884,7 +35062,7 @@ export type RancherProjectsHeadData = {
|
|
|
34884
35062
|
};
|
|
34885
35063
|
url: '/api/rancher-projects/';
|
|
34886
35064
|
};
|
|
34887
|
-
export type
|
|
35065
|
+
export type RancherProjectsCountResponses = {
|
|
34888
35066
|
/**
|
|
34889
35067
|
* No response body
|
|
34890
35068
|
*/
|
|
@@ -34942,7 +35120,7 @@ export type RancherRoleTemplatesListResponses = {
|
|
|
34942
35120
|
200: Array<RoleTemplate>;
|
|
34943
35121
|
};
|
|
34944
35122
|
export type RancherRoleTemplatesListResponse = RancherRoleTemplatesListResponses[keyof RancherRoleTemplatesListResponses];
|
|
34945
|
-
export type
|
|
35123
|
+
export type RancherRoleTemplatesCountData = {
|
|
34946
35124
|
body?: never;
|
|
34947
35125
|
path?: never;
|
|
34948
35126
|
query?: {
|
|
@@ -34966,7 +35144,7 @@ export type RancherRoleTemplatesHeadData = {
|
|
|
34966
35144
|
};
|
|
34967
35145
|
url: '/api/rancher-role-templates/';
|
|
34968
35146
|
};
|
|
34969
|
-
export type
|
|
35147
|
+
export type RancherRoleTemplatesCountResponses = {
|
|
34970
35148
|
/**
|
|
34971
35149
|
* No response body
|
|
34972
35150
|
*/
|
|
@@ -35028,7 +35206,7 @@ export type RancherServicesListResponses = {
|
|
|
35028
35206
|
200: Array<RancherService>;
|
|
35029
35207
|
};
|
|
35030
35208
|
export type RancherServicesListResponse = RancherServicesListResponses[keyof RancherServicesListResponses];
|
|
35031
|
-
export type
|
|
35209
|
+
export type RancherServicesCountData = {
|
|
35032
35210
|
body?: never;
|
|
35033
35211
|
path?: never;
|
|
35034
35212
|
query?: {
|
|
@@ -35067,7 +35245,7 @@ export type RancherServicesHeadData = {
|
|
|
35067
35245
|
};
|
|
35068
35246
|
url: '/api/rancher-services/';
|
|
35069
35247
|
};
|
|
35070
|
-
export type
|
|
35248
|
+
export type RancherServicesCountResponses = {
|
|
35071
35249
|
/**
|
|
35072
35250
|
* No response body
|
|
35073
35251
|
*/
|
|
@@ -35235,7 +35413,7 @@ export type RancherTemplatesListResponses = {
|
|
|
35235
35413
|
200: Array<RancherTemplate>;
|
|
35236
35414
|
};
|
|
35237
35415
|
export type RancherTemplatesListResponse = RancherTemplatesListResponses[keyof RancherTemplatesListResponses];
|
|
35238
|
-
export type
|
|
35416
|
+
export type RancherTemplatesCountData = {
|
|
35239
35417
|
body?: never;
|
|
35240
35418
|
path?: never;
|
|
35241
35419
|
query?: {
|
|
@@ -35263,7 +35441,7 @@ export type RancherTemplatesHeadData = {
|
|
|
35263
35441
|
};
|
|
35264
35442
|
url: '/api/rancher-templates/';
|
|
35265
35443
|
};
|
|
35266
|
-
export type
|
|
35444
|
+
export type RancherTemplatesCountResponses = {
|
|
35267
35445
|
/**
|
|
35268
35446
|
* No response body
|
|
35269
35447
|
*/
|
|
@@ -35312,7 +35490,7 @@ export type RancherUsersListResponses = {
|
|
|
35312
35490
|
200: Array<RancherUser>;
|
|
35313
35491
|
};
|
|
35314
35492
|
export type RancherUsersListResponse = RancherUsersListResponses[keyof RancherUsersListResponses];
|
|
35315
|
-
export type
|
|
35493
|
+
export type RancherUsersCountData = {
|
|
35316
35494
|
body?: never;
|
|
35317
35495
|
path?: never;
|
|
35318
35496
|
query?: {
|
|
@@ -35339,7 +35517,7 @@ export type RancherUsersHeadData = {
|
|
|
35339
35517
|
};
|
|
35340
35518
|
url: '/api/rancher-users/';
|
|
35341
35519
|
};
|
|
35342
|
-
export type
|
|
35520
|
+
export type RancherUsersCountResponses = {
|
|
35343
35521
|
/**
|
|
35344
35522
|
* No response body
|
|
35345
35523
|
*/
|
|
@@ -35389,7 +35567,7 @@ export type RancherWorkloadsListResponses = {
|
|
|
35389
35567
|
200: Array<RancherWorkload>;
|
|
35390
35568
|
};
|
|
35391
35569
|
export type RancherWorkloadsListResponse = RancherWorkloadsListResponses[keyof RancherWorkloadsListResponses];
|
|
35392
|
-
export type
|
|
35570
|
+
export type RancherWorkloadsCountData = {
|
|
35393
35571
|
body?: never;
|
|
35394
35572
|
path?: never;
|
|
35395
35573
|
query?: {
|
|
@@ -35417,7 +35595,7 @@ export type RancherWorkloadsHeadData = {
|
|
|
35417
35595
|
};
|
|
35418
35596
|
url: '/api/rancher-workloads/';
|
|
35419
35597
|
};
|
|
35420
|
-
export type
|
|
35598
|
+
export type RancherWorkloadsCountResponses = {
|
|
35421
35599
|
/**
|
|
35422
35600
|
* No response body
|
|
35423
35601
|
*/
|
|
@@ -35791,7 +35969,7 @@ export type RolesListResponses = {
|
|
|
35791
35969
|
200: Array<RoleDetails>;
|
|
35792
35970
|
};
|
|
35793
35971
|
export type RolesListResponse = RolesListResponses[keyof RolesListResponses];
|
|
35794
|
-
export type
|
|
35972
|
+
export type RolesCountData = {
|
|
35795
35973
|
body?: never;
|
|
35796
35974
|
path?: never;
|
|
35797
35975
|
query?: {
|
|
@@ -35809,7 +35987,7 @@ export type RolesHeadData = {
|
|
|
35809
35987
|
};
|
|
35810
35988
|
url: '/api/roles/';
|
|
35811
35989
|
};
|
|
35812
|
-
export type
|
|
35990
|
+
export type RolesCountResponses = {
|
|
35813
35991
|
/**
|
|
35814
35992
|
* No response body
|
|
35815
35993
|
*/
|
|
@@ -35953,7 +36131,7 @@ export type ServiceSettingsListResponses = {
|
|
|
35953
36131
|
200: Array<ServiceSettings>;
|
|
35954
36132
|
};
|
|
35955
36133
|
export type ServiceSettingsListResponse = ServiceSettingsListResponses[keyof ServiceSettingsListResponses];
|
|
35956
|
-
export type
|
|
36134
|
+
export type ServiceSettingsCountData = {
|
|
35957
36135
|
body?: never;
|
|
35958
36136
|
path?: never;
|
|
35959
36137
|
query?: {
|
|
@@ -35983,7 +36161,7 @@ export type ServiceSettingsHeadData = {
|
|
|
35983
36161
|
};
|
|
35984
36162
|
url: '/api/service-settings/';
|
|
35985
36163
|
};
|
|
35986
|
-
export type
|
|
36164
|
+
export type ServiceSettingsCountResponses = {
|
|
35987
36165
|
/**
|
|
35988
36166
|
* No response body
|
|
35989
36167
|
*/
|
|
@@ -36028,7 +36206,7 @@ export type SlurmAllocationUserUsageListResponses = {
|
|
|
36028
36206
|
200: Array<SlurmAllocationUserUsage>;
|
|
36029
36207
|
};
|
|
36030
36208
|
export type SlurmAllocationUserUsageListResponse = SlurmAllocationUserUsageListResponses[keyof SlurmAllocationUserUsageListResponses];
|
|
36031
|
-
export type
|
|
36209
|
+
export type SlurmAllocationUserUsageCountData = {
|
|
36032
36210
|
body?: never;
|
|
36033
36211
|
path?: never;
|
|
36034
36212
|
query?: {
|
|
@@ -36049,7 +36227,7 @@ export type SlurmAllocationUserUsageHeadData = {
|
|
|
36049
36227
|
};
|
|
36050
36228
|
url: '/api/slurm-allocation-user-usage/';
|
|
36051
36229
|
};
|
|
36052
|
-
export type
|
|
36230
|
+
export type SlurmAllocationUserUsageCountResponses = {
|
|
36053
36231
|
/**
|
|
36054
36232
|
* No response body
|
|
36055
36233
|
*/
|
|
@@ -36112,7 +36290,7 @@ export type SlurmAllocationsListResponses = {
|
|
|
36112
36290
|
200: Array<SlurmAllocation>;
|
|
36113
36291
|
};
|
|
36114
36292
|
export type SlurmAllocationsListResponse = SlurmAllocationsListResponses[keyof SlurmAllocationsListResponses];
|
|
36115
|
-
export type
|
|
36293
|
+
export type SlurmAllocationsCountData = {
|
|
36116
36294
|
body?: never;
|
|
36117
36295
|
path?: never;
|
|
36118
36296
|
query?: {
|
|
@@ -36149,7 +36327,7 @@ export type SlurmAllocationsHeadData = {
|
|
|
36149
36327
|
};
|
|
36150
36328
|
url: '/api/slurm-allocations/';
|
|
36151
36329
|
};
|
|
36152
|
-
export type
|
|
36330
|
+
export type SlurmAllocationsCountResponses = {
|
|
36153
36331
|
/**
|
|
36154
36332
|
* No response body
|
|
36155
36333
|
*/
|
|
@@ -36279,7 +36457,7 @@ export type SlurmAssociationsListResponses = {
|
|
|
36279
36457
|
200: Array<SlurmAssociation>;
|
|
36280
36458
|
};
|
|
36281
36459
|
export type SlurmAssociationsListResponse = SlurmAssociationsListResponses[keyof SlurmAssociationsListResponses];
|
|
36282
|
-
export type
|
|
36460
|
+
export type SlurmAssociationsCountData = {
|
|
36283
36461
|
body?: never;
|
|
36284
36462
|
path?: never;
|
|
36285
36463
|
query?: {
|
|
@@ -36296,7 +36474,7 @@ export type SlurmAssociationsHeadData = {
|
|
|
36296
36474
|
};
|
|
36297
36475
|
url: '/api/slurm-associations/';
|
|
36298
36476
|
};
|
|
36299
|
-
export type
|
|
36477
|
+
export type SlurmAssociationsCountResponses = {
|
|
36300
36478
|
/**
|
|
36301
36479
|
* No response body
|
|
36302
36480
|
*/
|
|
@@ -36334,7 +36512,7 @@ export type SlurmJobsListResponses = {
|
|
|
36334
36512
|
200: Array<FirecrestJob>;
|
|
36335
36513
|
};
|
|
36336
36514
|
export type SlurmJobsListResponse = SlurmJobsListResponses[keyof SlurmJobsListResponses];
|
|
36337
|
-
export type
|
|
36515
|
+
export type SlurmJobsCountData = {
|
|
36338
36516
|
body?: never;
|
|
36339
36517
|
path?: never;
|
|
36340
36518
|
query?: {
|
|
@@ -36349,7 +36527,7 @@ export type SlurmJobsHeadData = {
|
|
|
36349
36527
|
};
|
|
36350
36528
|
url: '/api/slurm-jobs/';
|
|
36351
36529
|
};
|
|
36352
|
-
export type
|
|
36530
|
+
export type SlurmJobsCountResponses = {
|
|
36353
36531
|
/**
|
|
36354
36532
|
* No response body
|
|
36355
36533
|
*/
|
|
@@ -36468,7 +36646,7 @@ export type SupportAttachmentsListResponses = {
|
|
|
36468
36646
|
200: Array<Attachment>;
|
|
36469
36647
|
};
|
|
36470
36648
|
export type SupportAttachmentsListResponse = SupportAttachmentsListResponses[keyof SupportAttachmentsListResponses];
|
|
36471
|
-
export type
|
|
36649
|
+
export type SupportAttachmentsCountData = {
|
|
36472
36650
|
body?: never;
|
|
36473
36651
|
path?: never;
|
|
36474
36652
|
query?: {
|
|
@@ -36485,7 +36663,7 @@ export type SupportAttachmentsHeadData = {
|
|
|
36485
36663
|
};
|
|
36486
36664
|
url: '/api/support-attachments/';
|
|
36487
36665
|
};
|
|
36488
|
-
export type
|
|
36666
|
+
export type SupportAttachmentsCountResponses = {
|
|
36489
36667
|
/**
|
|
36490
36668
|
* No response body
|
|
36491
36669
|
*/
|
|
@@ -36565,7 +36743,7 @@ export type SupportCommentsListResponses = {
|
|
|
36565
36743
|
200: Array<Comment>;
|
|
36566
36744
|
};
|
|
36567
36745
|
export type SupportCommentsListResponse = SupportCommentsListResponses[keyof SupportCommentsListResponses];
|
|
36568
|
-
export type
|
|
36746
|
+
export type SupportCommentsCountData = {
|
|
36569
36747
|
body?: never;
|
|
36570
36748
|
path?: never;
|
|
36571
36749
|
query?: {
|
|
@@ -36596,7 +36774,7 @@ export type SupportCommentsHeadData = {
|
|
|
36596
36774
|
};
|
|
36597
36775
|
url: '/api/support-comments/';
|
|
36598
36776
|
};
|
|
36599
|
-
export type
|
|
36777
|
+
export type SupportCommentsCountResponses = {
|
|
36600
36778
|
/**
|
|
36601
36779
|
* No response body
|
|
36602
36780
|
*/
|
|
@@ -36708,7 +36886,7 @@ export type SupportFeedbacksListResponses = {
|
|
|
36708
36886
|
200: Array<Feedback>;
|
|
36709
36887
|
};
|
|
36710
36888
|
export type SupportFeedbacksListResponse = SupportFeedbacksListResponses[keyof SupportFeedbacksListResponses];
|
|
36711
|
-
export type
|
|
36889
|
+
export type SupportFeedbacksCountData = {
|
|
36712
36890
|
body?: never;
|
|
36713
36891
|
path?: never;
|
|
36714
36892
|
query?: {
|
|
@@ -36735,7 +36913,7 @@ export type SupportFeedbacksHeadData = {
|
|
|
36735
36913
|
};
|
|
36736
36914
|
url: '/api/support-feedbacks/';
|
|
36737
36915
|
};
|
|
36738
|
-
export type
|
|
36916
|
+
export type SupportFeedbacksCountResponses = {
|
|
36739
36917
|
/**
|
|
36740
36918
|
* No response body
|
|
36741
36919
|
*/
|
|
@@ -36823,7 +37001,7 @@ export type SupportIssuesListResponses = {
|
|
|
36823
37001
|
200: Array<Issue>;
|
|
36824
37002
|
};
|
|
36825
37003
|
export type SupportIssuesListResponse = SupportIssuesListResponses[keyof SupportIssuesListResponses];
|
|
36826
|
-
export type
|
|
37004
|
+
export type SupportIssuesCountData = {
|
|
36827
37005
|
body?: never;
|
|
36828
37006
|
path?: never;
|
|
36829
37007
|
query?: {
|
|
@@ -36879,7 +37057,7 @@ export type SupportIssuesHeadData = {
|
|
|
36879
37057
|
};
|
|
36880
37058
|
url: '/api/support-issues/';
|
|
36881
37059
|
};
|
|
36882
|
-
export type
|
|
37060
|
+
export type SupportIssuesCountResponses = {
|
|
36883
37061
|
/**
|
|
36884
37062
|
* No response body
|
|
36885
37063
|
*/
|
|
@@ -37001,7 +37179,7 @@ export type SupportPrioritiesListResponses = {
|
|
|
37001
37179
|
200: Array<Priority>;
|
|
37002
37180
|
};
|
|
37003
37181
|
export type SupportPrioritiesListResponse = SupportPrioritiesListResponses[keyof SupportPrioritiesListResponses];
|
|
37004
|
-
export type
|
|
37182
|
+
export type SupportPrioritiesCountData = {
|
|
37005
37183
|
body?: never;
|
|
37006
37184
|
path?: never;
|
|
37007
37185
|
query?: {
|
|
@@ -37018,7 +37196,7 @@ export type SupportPrioritiesHeadData = {
|
|
|
37018
37196
|
};
|
|
37019
37197
|
url: '/api/support-priorities/';
|
|
37020
37198
|
};
|
|
37021
|
-
export type
|
|
37199
|
+
export type SupportPrioritiesCountResponses = {
|
|
37022
37200
|
/**
|
|
37023
37201
|
* No response body
|
|
37024
37202
|
*/
|
|
@@ -37075,7 +37253,7 @@ export type SupportTemplatesListResponses = {
|
|
|
37075
37253
|
200: Array<Template>;
|
|
37076
37254
|
};
|
|
37077
37255
|
export type SupportTemplatesListResponse = SupportTemplatesListResponses[keyof SupportTemplatesListResponses];
|
|
37078
|
-
export type
|
|
37256
|
+
export type SupportTemplatesCountData = {
|
|
37079
37257
|
body?: never;
|
|
37080
37258
|
path?: never;
|
|
37081
37259
|
query?: {
|
|
@@ -37090,7 +37268,7 @@ export type SupportTemplatesHeadData = {
|
|
|
37090
37268
|
};
|
|
37091
37269
|
url: '/api/support-templates/';
|
|
37092
37270
|
};
|
|
37093
|
-
export type
|
|
37271
|
+
export type SupportTemplatesCountResponses = {
|
|
37094
37272
|
/**
|
|
37095
37273
|
* No response body
|
|
37096
37274
|
*/
|
|
@@ -37213,7 +37391,7 @@ export type SupportUsersListResponses = {
|
|
|
37213
37391
|
200: Array<SupportUser>;
|
|
37214
37392
|
};
|
|
37215
37393
|
export type SupportUsersListResponse = SupportUsersListResponses[keyof SupportUsersListResponses];
|
|
37216
|
-
export type
|
|
37394
|
+
export type SupportUsersCountData = {
|
|
37217
37395
|
body?: never;
|
|
37218
37396
|
path?: never;
|
|
37219
37397
|
query?: {
|
|
@@ -37231,7 +37409,7 @@ export type SupportUsersHeadData = {
|
|
|
37231
37409
|
};
|
|
37232
37410
|
url: '/api/support-users/';
|
|
37233
37411
|
};
|
|
37234
|
-
export type
|
|
37412
|
+
export type SupportUsersCountResponses = {
|
|
37235
37413
|
/**
|
|
37236
37414
|
* No response body
|
|
37237
37415
|
*/
|
|
@@ -37317,7 +37495,7 @@ export type UserAgreementsListResponses = {
|
|
|
37317
37495
|
200: Array<UserAgreement>;
|
|
37318
37496
|
};
|
|
37319
37497
|
export type UserAgreementsListResponse = UserAgreementsListResponses[keyof UserAgreementsListResponses];
|
|
37320
|
-
export type
|
|
37498
|
+
export type UserAgreementsCountData = {
|
|
37321
37499
|
body?: never;
|
|
37322
37500
|
path?: never;
|
|
37323
37501
|
query?: {
|
|
@@ -37333,7 +37511,7 @@ export type UserAgreementsHeadData = {
|
|
|
37333
37511
|
};
|
|
37334
37512
|
url: '/api/user-agreements/';
|
|
37335
37513
|
};
|
|
37336
|
-
export type
|
|
37514
|
+
export type UserAgreementsCountResponses = {
|
|
37337
37515
|
/**
|
|
37338
37516
|
* No response body
|
|
37339
37517
|
*/
|
|
@@ -37430,7 +37608,7 @@ export type UserGroupInvitationsListResponses = {
|
|
|
37430
37608
|
200: Array<GroupInvitation>;
|
|
37431
37609
|
};
|
|
37432
37610
|
export type UserGroupInvitationsListResponse = UserGroupInvitationsListResponses[keyof UserGroupInvitationsListResponses];
|
|
37433
|
-
export type
|
|
37611
|
+
export type UserGroupInvitationsCountData = {
|
|
37434
37612
|
body?: never;
|
|
37435
37613
|
path?: never;
|
|
37436
37614
|
query?: {
|
|
@@ -37456,7 +37634,7 @@ export type UserGroupInvitationsHeadData = {
|
|
|
37456
37634
|
};
|
|
37457
37635
|
url: '/api/user-group-invitations/';
|
|
37458
37636
|
};
|
|
37459
|
-
export type
|
|
37637
|
+
export type UserGroupInvitationsCountResponses = {
|
|
37460
37638
|
/**
|
|
37461
37639
|
* No response body
|
|
37462
37640
|
*/
|
|
@@ -37563,7 +37741,7 @@ export type UserInvitationsListResponses = {
|
|
|
37563
37741
|
200: Array<Invitation>;
|
|
37564
37742
|
};
|
|
37565
37743
|
export type UserInvitationsListResponse = UserInvitationsListResponses[keyof UserInvitationsListResponses];
|
|
37566
|
-
export type
|
|
37744
|
+
export type UserInvitationsCountData = {
|
|
37567
37745
|
body?: never;
|
|
37568
37746
|
path?: never;
|
|
37569
37747
|
query?: {
|
|
@@ -37591,7 +37769,7 @@ export type UserInvitationsHeadData = {
|
|
|
37591
37769
|
};
|
|
37592
37770
|
url: '/api/user-invitations/';
|
|
37593
37771
|
};
|
|
37594
|
-
export type
|
|
37772
|
+
export type UserInvitationsCountResponses = {
|
|
37595
37773
|
/**
|
|
37596
37774
|
* No response body
|
|
37597
37775
|
*/
|
|
@@ -37752,7 +37930,7 @@ export type UserPermissionRequestsListResponses = {
|
|
|
37752
37930
|
200: Array<PermissionRequest>;
|
|
37753
37931
|
};
|
|
37754
37932
|
export type UserPermissionRequestsListResponse = UserPermissionRequestsListResponses[keyof UserPermissionRequestsListResponses];
|
|
37755
|
-
export type
|
|
37933
|
+
export type UserPermissionRequestsCountData = {
|
|
37756
37934
|
body?: never;
|
|
37757
37935
|
path?: never;
|
|
37758
37936
|
query?: {
|
|
@@ -37777,7 +37955,7 @@ export type UserPermissionRequestsHeadData = {
|
|
|
37777
37955
|
};
|
|
37778
37956
|
url: '/api/user-permission-requests/';
|
|
37779
37957
|
};
|
|
37780
|
-
export type
|
|
37958
|
+
export type UserPermissionRequestsCountResponses = {
|
|
37781
37959
|
/**
|
|
37782
37960
|
* No response body
|
|
37783
37961
|
*/
|
|
@@ -37885,7 +38063,7 @@ export type UserPermissionsListResponses = {
|
|
|
37885
38063
|
200: Array<Permission>;
|
|
37886
38064
|
};
|
|
37887
38065
|
export type UserPermissionsListResponse = UserPermissionsListResponses[keyof UserPermissionsListResponses];
|
|
37888
|
-
export type
|
|
38066
|
+
export type UserPermissionsCountData = {
|
|
37889
38067
|
body?: never;
|
|
37890
38068
|
path?: never;
|
|
37891
38069
|
query?: {
|
|
@@ -37947,7 +38125,7 @@ export type UserPermissionsHeadData = {
|
|
|
37947
38125
|
};
|
|
37948
38126
|
url: '/api/user-permissions/';
|
|
37949
38127
|
};
|
|
37950
|
-
export type
|
|
38128
|
+
export type UserPermissionsCountResponses = {
|
|
37951
38129
|
/**
|
|
37952
38130
|
* No response body
|
|
37953
38131
|
*/
|
|
@@ -38038,7 +38216,7 @@ export type UsersListResponses = {
|
|
|
38038
38216
|
200: Array<User>;
|
|
38039
38217
|
};
|
|
38040
38218
|
export type UsersListResponse = UsersListResponses[keyof UsersListResponses];
|
|
38041
|
-
export type
|
|
38219
|
+
export type UsersCountData = {
|
|
38042
38220
|
body?: never;
|
|
38043
38221
|
path?: never;
|
|
38044
38222
|
query?: {
|
|
@@ -38106,7 +38284,7 @@ export type UsersHeadData = {
|
|
|
38106
38284
|
};
|
|
38107
38285
|
url: '/api/users/';
|
|
38108
38286
|
};
|
|
38109
|
-
export type
|
|
38287
|
+
export type UsersCountResponses = {
|
|
38110
38288
|
/**
|
|
38111
38289
|
* No response body
|
|
38112
38290
|
*/
|
|
@@ -38279,13 +38457,13 @@ export type UsersMeRetrieveResponses = {
|
|
|
38279
38457
|
200: User;
|
|
38280
38458
|
};
|
|
38281
38459
|
export type UsersMeRetrieveResponse = UsersMeRetrieveResponses[keyof UsersMeRetrieveResponses];
|
|
38282
|
-
export type
|
|
38460
|
+
export type UsersMeCountData = {
|
|
38283
38461
|
body?: never;
|
|
38284
38462
|
path?: never;
|
|
38285
38463
|
query?: never;
|
|
38286
38464
|
url: '/api/users/me/';
|
|
38287
38465
|
};
|
|
38288
|
-
export type
|
|
38466
|
+
export type UsersMeCountResponses = {
|
|
38289
38467
|
/**
|
|
38290
38468
|
* No response body
|
|
38291
38469
|
*/
|
|
@@ -38328,7 +38506,7 @@ export type VmwareClustersListResponses = {
|
|
|
38328
38506
|
200: Array<VmwareCluster>;
|
|
38329
38507
|
};
|
|
38330
38508
|
export type VmwareClustersListResponse = VmwareClustersListResponses[keyof VmwareClustersListResponses];
|
|
38331
|
-
export type
|
|
38509
|
+
export type VmwareClustersCountData = {
|
|
38332
38510
|
body?: never;
|
|
38333
38511
|
path?: never;
|
|
38334
38512
|
query?: {
|
|
@@ -38351,7 +38529,7 @@ export type VmwareClustersHeadData = {
|
|
|
38351
38529
|
};
|
|
38352
38530
|
url: '/api/vmware-clusters/';
|
|
38353
38531
|
};
|
|
38354
|
-
export type
|
|
38532
|
+
export type VmwareClustersCountResponses = {
|
|
38355
38533
|
/**
|
|
38356
38534
|
* No response body
|
|
38357
38535
|
*/
|
|
@@ -38396,7 +38574,7 @@ export type VmwareDatastoresListResponses = {
|
|
|
38396
38574
|
200: Array<VmwareDatastore>;
|
|
38397
38575
|
};
|
|
38398
38576
|
export type VmwareDatastoresListResponse = VmwareDatastoresListResponses[keyof VmwareDatastoresListResponses];
|
|
38399
|
-
export type
|
|
38577
|
+
export type VmwareDatastoresCountData = {
|
|
38400
38578
|
body?: never;
|
|
38401
38579
|
path?: never;
|
|
38402
38580
|
query?: {
|
|
@@ -38419,7 +38597,7 @@ export type VmwareDatastoresHeadData = {
|
|
|
38419
38597
|
};
|
|
38420
38598
|
url: '/api/vmware-datastores/';
|
|
38421
38599
|
};
|
|
38422
|
-
export type
|
|
38600
|
+
export type VmwareDatastoresCountResponses = {
|
|
38423
38601
|
/**
|
|
38424
38602
|
* No response body
|
|
38425
38603
|
*/
|
|
@@ -38480,7 +38658,7 @@ export type VmwareDisksListResponses = {
|
|
|
38480
38658
|
200: Array<VmwareDisk>;
|
|
38481
38659
|
};
|
|
38482
38660
|
export type VmwareDisksListResponse = VmwareDisksListResponses[keyof VmwareDisksListResponses];
|
|
38483
|
-
export type
|
|
38661
|
+
export type VmwareDisksCountData = {
|
|
38484
38662
|
body?: never;
|
|
38485
38663
|
path?: never;
|
|
38486
38664
|
query?: {
|
|
@@ -38518,7 +38696,7 @@ export type VmwareDisksHeadData = {
|
|
|
38518
38696
|
};
|
|
38519
38697
|
url: '/api/vmware-disks/';
|
|
38520
38698
|
};
|
|
38521
|
-
export type
|
|
38699
|
+
export type VmwareDisksCountResponses = {
|
|
38522
38700
|
/**
|
|
38523
38701
|
* No response body
|
|
38524
38702
|
*/
|
|
@@ -38620,7 +38798,7 @@ export type VmwareFoldersListResponses = {
|
|
|
38620
38798
|
200: Array<VmwareFolder>;
|
|
38621
38799
|
};
|
|
38622
38800
|
export type VmwareFoldersListResponse = VmwareFoldersListResponses[keyof VmwareFoldersListResponses];
|
|
38623
|
-
export type
|
|
38801
|
+
export type VmwareFoldersCountData = {
|
|
38624
38802
|
body?: never;
|
|
38625
38803
|
path?: never;
|
|
38626
38804
|
query?: {
|
|
@@ -38643,7 +38821,7 @@ export type VmwareFoldersHeadData = {
|
|
|
38643
38821
|
};
|
|
38644
38822
|
url: '/api/vmware-folders/';
|
|
38645
38823
|
};
|
|
38646
|
-
export type
|
|
38824
|
+
export type VmwareFoldersCountResponses = {
|
|
38647
38825
|
/**
|
|
38648
38826
|
* No response body
|
|
38649
38827
|
*/
|
|
@@ -38704,7 +38882,7 @@ export type VmwareNetworksListResponses = {
|
|
|
38704
38882
|
200: Array<VmwareNetwork>;
|
|
38705
38883
|
};
|
|
38706
38884
|
export type VmwareNetworksListResponse = VmwareNetworksListResponses[keyof VmwareNetworksListResponses];
|
|
38707
|
-
export type
|
|
38885
|
+
export type VmwareNetworksCountData = {
|
|
38708
38886
|
body?: never;
|
|
38709
38887
|
path?: never;
|
|
38710
38888
|
query?: {
|
|
@@ -38731,7 +38909,7 @@ export type VmwareNetworksHeadData = {
|
|
|
38731
38909
|
};
|
|
38732
38910
|
url: '/api/vmware-networks/';
|
|
38733
38911
|
};
|
|
38734
|
-
export type
|
|
38912
|
+
export type VmwareNetworksCountResponses = {
|
|
38735
38913
|
/**
|
|
38736
38914
|
* No response body
|
|
38737
38915
|
*/
|
|
@@ -38794,7 +38972,7 @@ export type VmwarePortsListResponses = {
|
|
|
38794
38972
|
200: Array<VmwarePort>;
|
|
38795
38973
|
};
|
|
38796
38974
|
export type VmwarePortsListResponse = VmwarePortsListResponses[keyof VmwarePortsListResponses];
|
|
38797
|
-
export type
|
|
38975
|
+
export type VmwarePortsCountData = {
|
|
38798
38976
|
body?: never;
|
|
38799
38977
|
path?: never;
|
|
38800
38978
|
query?: {
|
|
@@ -38834,7 +39012,7 @@ export type VmwarePortsHeadData = {
|
|
|
38834
39012
|
};
|
|
38835
39013
|
url: '/api/vmware-ports/';
|
|
38836
39014
|
};
|
|
38837
|
-
export type
|
|
39015
|
+
export type VmwarePortsCountResponses = {
|
|
38838
39016
|
/**
|
|
38839
39017
|
* No response body
|
|
38840
39018
|
*/
|
|
@@ -38920,7 +39098,7 @@ export type VmwareTemplatesListResponses = {
|
|
|
38920
39098
|
200: Array<VmwareTemplate>;
|
|
38921
39099
|
};
|
|
38922
39100
|
export type VmwareTemplatesListResponse = VmwareTemplatesListResponses[keyof VmwareTemplatesListResponses];
|
|
38923
|
-
export type
|
|
39101
|
+
export type VmwareTemplatesCountData = {
|
|
38924
39102
|
body?: never;
|
|
38925
39103
|
path?: never;
|
|
38926
39104
|
query?: {
|
|
@@ -38939,7 +39117,7 @@ export type VmwareTemplatesHeadData = {
|
|
|
38939
39117
|
};
|
|
38940
39118
|
url: '/api/vmware-templates/';
|
|
38941
39119
|
};
|
|
38942
|
-
export type
|
|
39120
|
+
export type VmwareTemplatesCountResponses = {
|
|
38943
39121
|
/**
|
|
38944
39122
|
* No response body
|
|
38945
39123
|
*/
|
|
@@ -38999,7 +39177,7 @@ export type VmwareVirtualMachineListResponses = {
|
|
|
38999
39177
|
200: Array<VmwareVirtualMachine>;
|
|
39000
39178
|
};
|
|
39001
39179
|
export type VmwareVirtualMachineListResponse = VmwareVirtualMachineListResponses[keyof VmwareVirtualMachineListResponses];
|
|
39002
|
-
export type
|
|
39180
|
+
export type VmwareVirtualMachineCountData = {
|
|
39003
39181
|
body?: never;
|
|
39004
39182
|
path?: never;
|
|
39005
39183
|
query?: {
|
|
@@ -39036,7 +39214,7 @@ export type VmwareVirtualMachineHeadData = {
|
|
|
39036
39214
|
};
|
|
39037
39215
|
url: '/api/vmware-virtual-machine/';
|
|
39038
39216
|
};
|
|
39039
|
-
export type
|
|
39217
|
+
export type VmwareVirtualMachineCountResponses = {
|
|
39040
39218
|
/**
|
|
39041
39219
|
* No response body
|
|
39042
39220
|
*/
|