@quantcdn/quant-client 4.3.0 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +522 -20
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +373 -20
- package/dist/api.js +558 -288
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +373 -20
- package/dist/esm/api.js +555 -285
- package/dist/esm/common.d.ts +2 -2
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.json +1 -3
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* QuantCDN API
|
|
3
3
|
* Unified API for QuantCDN Admin and QuantCloud Platform services
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 4.
|
|
5
|
+
* The version of the OpenAPI document: 4.4.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1652,25 +1652,6 @@ export interface CreateCommandRequest {
|
|
|
1652
1652
|
*/
|
|
1653
1653
|
'command'?: string;
|
|
1654
1654
|
}
|
|
1655
|
-
/**
|
|
1656
|
-
*
|
|
1657
|
-
* @export
|
|
1658
|
-
* @interface CreateCronJob422Response
|
|
1659
|
-
*/
|
|
1660
|
-
export interface CreateCronJob422Response {
|
|
1661
|
-
/**
|
|
1662
|
-
*
|
|
1663
|
-
* @type {string}
|
|
1664
|
-
* @memberof CreateCronJob422Response
|
|
1665
|
-
*/
|
|
1666
|
-
'message'?: string;
|
|
1667
|
-
/**
|
|
1668
|
-
*
|
|
1669
|
-
* @type {object}
|
|
1670
|
-
* @memberof CreateCronJob422Response
|
|
1671
|
-
*/
|
|
1672
|
-
'errors'?: object;
|
|
1673
|
-
}
|
|
1674
1655
|
/**
|
|
1675
1656
|
*
|
|
1676
1657
|
* @export
|
|
@@ -3538,6 +3519,186 @@ export interface OrganizationsList200ResponseInner {
|
|
|
3538
3519
|
*/
|
|
3539
3520
|
'machine_name'?: string;
|
|
3540
3521
|
}
|
|
3522
|
+
/**
|
|
3523
|
+
*
|
|
3524
|
+
* @export
|
|
3525
|
+
* @interface PatchEnvironmentCompose202Response
|
|
3526
|
+
*/
|
|
3527
|
+
export interface PatchEnvironmentCompose202Response {
|
|
3528
|
+
/**
|
|
3529
|
+
*
|
|
3530
|
+
* @type {string}
|
|
3531
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3532
|
+
*/
|
|
3533
|
+
'architecture'?: string;
|
|
3534
|
+
/**
|
|
3535
|
+
*
|
|
3536
|
+
* @type {string}
|
|
3537
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3538
|
+
*/
|
|
3539
|
+
'taskCpu'?: string;
|
|
3540
|
+
/**
|
|
3541
|
+
*
|
|
3542
|
+
* @type {string}
|
|
3543
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3544
|
+
*/
|
|
3545
|
+
'taskMemory'?: string;
|
|
3546
|
+
/**
|
|
3547
|
+
*
|
|
3548
|
+
* @type {number}
|
|
3549
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3550
|
+
*/
|
|
3551
|
+
'minCapacity'?: number;
|
|
3552
|
+
/**
|
|
3553
|
+
*
|
|
3554
|
+
* @type {number}
|
|
3555
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3556
|
+
*/
|
|
3557
|
+
'maxCapacity'?: number;
|
|
3558
|
+
/**
|
|
3559
|
+
*
|
|
3560
|
+
* @type {Array<object>}
|
|
3561
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3562
|
+
*/
|
|
3563
|
+
'containers'?: Array<object>;
|
|
3564
|
+
/**
|
|
3565
|
+
*
|
|
3566
|
+
* @type {PatchEnvironmentCompose202ResponseSpotConfiguration}
|
|
3567
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3568
|
+
*/
|
|
3569
|
+
'spotConfiguration'?: PatchEnvironmentCompose202ResponseSpotConfiguration;
|
|
3570
|
+
/**
|
|
3571
|
+
*
|
|
3572
|
+
* @type {boolean}
|
|
3573
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3574
|
+
*/
|
|
3575
|
+
'enableCrossEnvNetworking'?: boolean;
|
|
3576
|
+
/**
|
|
3577
|
+
*
|
|
3578
|
+
* @type {boolean}
|
|
3579
|
+
* @memberof PatchEnvironmentCompose202Response
|
|
3580
|
+
*/
|
|
3581
|
+
'enableCrossAppNetworking'?: boolean;
|
|
3582
|
+
}
|
|
3583
|
+
/**
|
|
3584
|
+
*
|
|
3585
|
+
* @export
|
|
3586
|
+
* @interface PatchEnvironmentCompose202ResponseSpotConfiguration
|
|
3587
|
+
*/
|
|
3588
|
+
export interface PatchEnvironmentCompose202ResponseSpotConfiguration {
|
|
3589
|
+
/**
|
|
3590
|
+
*
|
|
3591
|
+
* @type {string}
|
|
3592
|
+
* @memberof PatchEnvironmentCompose202ResponseSpotConfiguration
|
|
3593
|
+
*/
|
|
3594
|
+
'strategy'?: string;
|
|
3595
|
+
/**
|
|
3596
|
+
*
|
|
3597
|
+
* @type {boolean}
|
|
3598
|
+
* @memberof PatchEnvironmentCompose202ResponseSpotConfiguration
|
|
3599
|
+
*/
|
|
3600
|
+
'tolerateDowntime'?: boolean;
|
|
3601
|
+
}
|
|
3602
|
+
/**
|
|
3603
|
+
*
|
|
3604
|
+
* @export
|
|
3605
|
+
* @interface PatchEnvironmentCompose400Response
|
|
3606
|
+
*/
|
|
3607
|
+
export interface PatchEnvironmentCompose400Response {
|
|
3608
|
+
/**
|
|
3609
|
+
*
|
|
3610
|
+
* @type {string}
|
|
3611
|
+
* @memberof PatchEnvironmentCompose400Response
|
|
3612
|
+
*/
|
|
3613
|
+
'message'?: string;
|
|
3614
|
+
/**
|
|
3615
|
+
*
|
|
3616
|
+
* @type {object}
|
|
3617
|
+
* @memberof PatchEnvironmentCompose400Response
|
|
3618
|
+
*/
|
|
3619
|
+
'errors'?: object;
|
|
3620
|
+
}
|
|
3621
|
+
/**
|
|
3622
|
+
*
|
|
3623
|
+
* @export
|
|
3624
|
+
* @interface PatchEnvironmentComposeRequest
|
|
3625
|
+
*/
|
|
3626
|
+
export interface PatchEnvironmentComposeRequest {
|
|
3627
|
+
/**
|
|
3628
|
+
*
|
|
3629
|
+
* @type {string}
|
|
3630
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3631
|
+
*/
|
|
3632
|
+
'architecture'?: string | null;
|
|
3633
|
+
/**
|
|
3634
|
+
*
|
|
3635
|
+
* @type {string}
|
|
3636
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3637
|
+
*/
|
|
3638
|
+
'taskCpu'?: string | null;
|
|
3639
|
+
/**
|
|
3640
|
+
*
|
|
3641
|
+
* @type {string}
|
|
3642
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3643
|
+
*/
|
|
3644
|
+
'taskMemory'?: string | null;
|
|
3645
|
+
/**
|
|
3646
|
+
*
|
|
3647
|
+
* @type {number}
|
|
3648
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3649
|
+
*/
|
|
3650
|
+
'minCapacity'?: number | null;
|
|
3651
|
+
/**
|
|
3652
|
+
*
|
|
3653
|
+
* @type {number}
|
|
3654
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3655
|
+
*/
|
|
3656
|
+
'maxCapacity'?: number | null;
|
|
3657
|
+
/**
|
|
3658
|
+
*
|
|
3659
|
+
* @type {Array<object>}
|
|
3660
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3661
|
+
*/
|
|
3662
|
+
'containers'?: Array<object> | null;
|
|
3663
|
+
/**
|
|
3664
|
+
*
|
|
3665
|
+
* @type {PatchEnvironmentComposeRequestSpotConfiguration}
|
|
3666
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3667
|
+
*/
|
|
3668
|
+
'spotConfiguration'?: PatchEnvironmentComposeRequestSpotConfiguration | null;
|
|
3669
|
+
/**
|
|
3670
|
+
*
|
|
3671
|
+
* @type {boolean}
|
|
3672
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3673
|
+
*/
|
|
3674
|
+
'enableCrossEnvNetworking'?: boolean | null;
|
|
3675
|
+
/**
|
|
3676
|
+
*
|
|
3677
|
+
* @type {boolean}
|
|
3678
|
+
* @memberof PatchEnvironmentComposeRequest
|
|
3679
|
+
*/
|
|
3680
|
+
'enableCrossAppNetworking'?: boolean | null;
|
|
3681
|
+
}
|
|
3682
|
+
/**
|
|
3683
|
+
*
|
|
3684
|
+
* @export
|
|
3685
|
+
* @interface PatchEnvironmentComposeRequestSpotConfiguration
|
|
3686
|
+
*/
|
|
3687
|
+
export interface PatchEnvironmentComposeRequestSpotConfiguration {
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @type {string}
|
|
3691
|
+
* @memberof PatchEnvironmentComposeRequestSpotConfiguration
|
|
3692
|
+
*/
|
|
3693
|
+
'strategy'?: PatchEnvironmentComposeRequestSpotConfigurationStrategyEnum;
|
|
3694
|
+
}
|
|
3695
|
+
export declare const PatchEnvironmentComposeRequestSpotConfigurationStrategyEnum: {
|
|
3696
|
+
readonly Off: "off";
|
|
3697
|
+
readonly SpotOnly: "spot-only";
|
|
3698
|
+
readonly MixedSafe: "mixed-safe";
|
|
3699
|
+
readonly MixedAggressive: "mixed-aggressive";
|
|
3700
|
+
};
|
|
3701
|
+
export type PatchEnvironmentComposeRequestSpotConfigurationStrategyEnum = typeof PatchEnvironmentComposeRequestSpotConfigurationStrategyEnum[keyof typeof PatchEnvironmentComposeRequestSpotConfigurationStrategyEnum];
|
|
3541
3702
|
/**
|
|
3542
3703
|
*
|
|
3543
3704
|
* @export
|
|
@@ -5539,6 +5700,67 @@ export interface V2CrawlerRequest {
|
|
|
5539
5700
|
*/
|
|
5540
5701
|
'max_errors'?: number;
|
|
5541
5702
|
}
|
|
5703
|
+
/**
|
|
5704
|
+
*
|
|
5705
|
+
* @export
|
|
5706
|
+
* @interface V2CrawlerRun
|
|
5707
|
+
*/
|
|
5708
|
+
export interface V2CrawlerRun {
|
|
5709
|
+
/**
|
|
5710
|
+
* Run ID
|
|
5711
|
+
* @type {number}
|
|
5712
|
+
* @memberof V2CrawlerRun
|
|
5713
|
+
*/
|
|
5714
|
+
'id': number;
|
|
5715
|
+
/**
|
|
5716
|
+
* Crawler config ID
|
|
5717
|
+
* @type {number}
|
|
5718
|
+
* @memberof V2CrawlerRun
|
|
5719
|
+
*/
|
|
5720
|
+
'crawler_config_id': number;
|
|
5721
|
+
/**
|
|
5722
|
+
* Project ID
|
|
5723
|
+
* @type {number}
|
|
5724
|
+
* @memberof V2CrawlerRun
|
|
5725
|
+
*/
|
|
5726
|
+
'project_id': number;
|
|
5727
|
+
/**
|
|
5728
|
+
* Run status
|
|
5729
|
+
* @type {string}
|
|
5730
|
+
* @memberof V2CrawlerRun
|
|
5731
|
+
*/
|
|
5732
|
+
'last_status': string;
|
|
5733
|
+
/**
|
|
5734
|
+
* Task ID
|
|
5735
|
+
* @type {string}
|
|
5736
|
+
* @memberof V2CrawlerRun
|
|
5737
|
+
*/
|
|
5738
|
+
'task_id': string;
|
|
5739
|
+
/**
|
|
5740
|
+
* Start time (Unix timestamp)
|
|
5741
|
+
* @type {number}
|
|
5742
|
+
* @memberof V2CrawlerRun
|
|
5743
|
+
*/
|
|
5744
|
+
'started_at'?: number | null;
|
|
5745
|
+
/**
|
|
5746
|
+
* Completion time (Unix timestamp)
|
|
5747
|
+
* @type {number}
|
|
5748
|
+
* @memberof V2CrawlerRun
|
|
5749
|
+
*/
|
|
5750
|
+
'completed_at'?: number | null;
|
|
5751
|
+
/**
|
|
5752
|
+
* Creation timestamp
|
|
5753
|
+
* @type {string}
|
|
5754
|
+
* @memberof V2CrawlerRun
|
|
5755
|
+
*/
|
|
5756
|
+
'created_at'?: string;
|
|
5757
|
+
/**
|
|
5758
|
+
* Last update timestamp
|
|
5759
|
+
* @type {string}
|
|
5760
|
+
* @memberof V2CrawlerRun
|
|
5761
|
+
*/
|
|
5762
|
+
'updated_at'?: string;
|
|
5763
|
+
}
|
|
5542
5764
|
/**
|
|
5543
5765
|
*
|
|
5544
5766
|
* @export
|
|
@@ -10477,6 +10699,17 @@ export declare const ComposeApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10477
10699
|
* @throws {RequiredError}
|
|
10478
10700
|
*/
|
|
10479
10701
|
getEnvironmentCompose: (organisation: string, application: string, environment: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10702
|
+
/**
|
|
10703
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
10704
|
+
* @summary Partially Update Environment Compose Definition
|
|
10705
|
+
* @param {string} organisation The organisation ID
|
|
10706
|
+
* @param {string} application The application ID
|
|
10707
|
+
* @param {string} environment The environment ID
|
|
10708
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
10709
|
+
* @param {*} [options] Override http request option.
|
|
10710
|
+
* @throws {RequiredError}
|
|
10711
|
+
*/
|
|
10712
|
+
patchEnvironmentCompose: (organisation: string, application: string, environment: string, patchEnvironmentComposeRequest: PatchEnvironmentComposeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10480
10713
|
/**
|
|
10481
10714
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
10482
10715
|
* @summary Validate a compose file
|
|
@@ -10503,6 +10736,17 @@ export declare const ComposeApiFp: (configuration?: Configuration) => {
|
|
|
10503
10736
|
* @throws {RequiredError}
|
|
10504
10737
|
*/
|
|
10505
10738
|
getEnvironmentCompose(organisation: string, application: string, environment: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Compose>>;
|
|
10739
|
+
/**
|
|
10740
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
10741
|
+
* @summary Partially Update Environment Compose Definition
|
|
10742
|
+
* @param {string} organisation The organisation ID
|
|
10743
|
+
* @param {string} application The application ID
|
|
10744
|
+
* @param {string} environment The environment ID
|
|
10745
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
10746
|
+
* @param {*} [options] Override http request option.
|
|
10747
|
+
* @throws {RequiredError}
|
|
10748
|
+
*/
|
|
10749
|
+
patchEnvironmentCompose(organisation: string, application: string, environment: string, patchEnvironmentComposeRequest: PatchEnvironmentComposeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchEnvironmentCompose202Response>>;
|
|
10506
10750
|
/**
|
|
10507
10751
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
10508
10752
|
* @summary Validate a compose file
|
|
@@ -10529,6 +10773,17 @@ export declare const ComposeApiFactory: (configuration?: Configuration, basePath
|
|
|
10529
10773
|
* @throws {RequiredError}
|
|
10530
10774
|
*/
|
|
10531
10775
|
getEnvironmentCompose(organisation: string, application: string, environment: string, options?: RawAxiosRequestConfig): AxiosPromise<Compose>;
|
|
10776
|
+
/**
|
|
10777
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
10778
|
+
* @summary Partially Update Environment Compose Definition
|
|
10779
|
+
* @param {string} organisation The organisation ID
|
|
10780
|
+
* @param {string} application The application ID
|
|
10781
|
+
* @param {string} environment The environment ID
|
|
10782
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
10783
|
+
* @param {*} [options] Override http request option.
|
|
10784
|
+
* @throws {RequiredError}
|
|
10785
|
+
*/
|
|
10786
|
+
patchEnvironmentCompose(organisation: string, application: string, environment: string, patchEnvironmentComposeRequest: PatchEnvironmentComposeRequest, options?: RawAxiosRequestConfig): AxiosPromise<PatchEnvironmentCompose202Response>;
|
|
10532
10787
|
/**
|
|
10533
10788
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
10534
10789
|
* @summary Validate a compose file
|
|
@@ -10558,6 +10813,18 @@ export declare class ComposeApi extends BaseAPI {
|
|
|
10558
10813
|
* @memberof ComposeApi
|
|
10559
10814
|
*/
|
|
10560
10815
|
getEnvironmentCompose(organisation: string, application: string, environment: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Compose, any, {}>>;
|
|
10816
|
+
/**
|
|
10817
|
+
* Partially updates top-level fields of the environment\'s compose definition, such as architecture, task-level CPU/Memory, or min/max scaling capacity. Only fields included in the request body are modified. The \'containers\' array, if provided, REPLACES the existing containers array; if omitted, the existing containers are NOT modified by this PATCH operation. (For modifying individual containers, use PATCH /containers/{containerName}). This triggers a validation, registers a new task definition, and updates the service.
|
|
10818
|
+
* @summary Partially Update Environment Compose Definition
|
|
10819
|
+
* @param {string} organisation The organisation ID
|
|
10820
|
+
* @param {string} application The application ID
|
|
10821
|
+
* @param {string} environment The environment ID
|
|
10822
|
+
* @param {PatchEnvironmentComposeRequest} patchEnvironmentComposeRequest Partial compose definition updates. All fields are optional.
|
|
10823
|
+
* @param {*} [options] Override http request option.
|
|
10824
|
+
* @throws {RequiredError}
|
|
10825
|
+
* @memberof ComposeApi
|
|
10826
|
+
*/
|
|
10827
|
+
patchEnvironmentCompose(organisation: string, application: string, environment: string, patchEnvironmentComposeRequest: PatchEnvironmentComposeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchEnvironmentCompose202Response, any, {}>>;
|
|
10561
10828
|
/**
|
|
10562
10829
|
* Accepts a docker-compose.yml file content, translates it into the internal compose definition format, and validates it. Quant Cloud provides comprehensive support for standard Docker Compose features including commands, entrypoints, health checks, dependencies, volume mounts, resource limits, and more. For detailed documentation on supported features and examples, see: https://docs.quantcdn.io/introduction-to-quant-cloud/importing-docker-compose/. Supports image tag suffixing via the imageSuffix query parameter or by sending a JSON wrapper with yamlContent and imageSuffix fields. When provided, internal image tags are transformed to {containerName}-{suffix} format (e.g., \'nginx-feature-xyz\').
|
|
10563
10830
|
* @summary Validate a compose file
|
|
@@ -10962,6 +11229,27 @@ export declare const CrawlersApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10962
11229
|
* @throws {RequiredError}
|
|
10963
11230
|
*/
|
|
10964
11231
|
crawlersDelete: (organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11232
|
+
/**
|
|
11233
|
+
*
|
|
11234
|
+
* @summary Get a run by ID
|
|
11235
|
+
* @param {string} organization Organization identifier
|
|
11236
|
+
* @param {string} project Project identifier
|
|
11237
|
+
* @param {string} crawler Crawler identifier
|
|
11238
|
+
* @param {number} runId Run identifier
|
|
11239
|
+
* @param {*} [options] Override http request option.
|
|
11240
|
+
* @throws {RequiredError}
|
|
11241
|
+
*/
|
|
11242
|
+
crawlersGetRunById: (organization: string, project: string, crawler: string, runId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11243
|
+
/**
|
|
11244
|
+
*
|
|
11245
|
+
* @summary Get all runs for a crawler
|
|
11246
|
+
* @param {string} organization Organization identifier
|
|
11247
|
+
* @param {string} project Project identifier
|
|
11248
|
+
* @param {string} crawler Crawler identifier
|
|
11249
|
+
* @param {*} [options] Override http request option.
|
|
11250
|
+
* @throws {RequiredError}
|
|
11251
|
+
*/
|
|
11252
|
+
crawlersGetRuns: (organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10965
11253
|
/**
|
|
10966
11254
|
*
|
|
10967
11255
|
* @summary List crawlers for the project
|
|
@@ -11029,6 +11317,27 @@ export declare const CrawlersApiFp: (configuration?: Configuration) => {
|
|
|
11029
11317
|
* @throws {RequiredError}
|
|
11030
11318
|
*/
|
|
11031
11319
|
crawlersDelete(organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11320
|
+
/**
|
|
11321
|
+
*
|
|
11322
|
+
* @summary Get a run by ID
|
|
11323
|
+
* @param {string} organization Organization identifier
|
|
11324
|
+
* @param {string} project Project identifier
|
|
11325
|
+
* @param {string} crawler Crawler identifier
|
|
11326
|
+
* @param {number} runId Run identifier
|
|
11327
|
+
* @param {*} [options] Override http request option.
|
|
11328
|
+
* @throws {RequiredError}
|
|
11329
|
+
*/
|
|
11330
|
+
crawlersGetRunById(organization: string, project: string, crawler: string, runId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<V2CrawlerRun>>;
|
|
11331
|
+
/**
|
|
11332
|
+
*
|
|
11333
|
+
* @summary Get all runs for a crawler
|
|
11334
|
+
* @param {string} organization Organization identifier
|
|
11335
|
+
* @param {string} project Project identifier
|
|
11336
|
+
* @param {string} crawler Crawler identifier
|
|
11337
|
+
* @param {*} [options] Override http request option.
|
|
11338
|
+
* @throws {RequiredError}
|
|
11339
|
+
*/
|
|
11340
|
+
crawlersGetRuns(organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<V2CrawlerRun>>>;
|
|
11032
11341
|
/**
|
|
11033
11342
|
*
|
|
11034
11343
|
* @summary List crawlers for the project
|
|
@@ -11096,6 +11405,27 @@ export declare const CrawlersApiFactory: (configuration?: Configuration, basePat
|
|
|
11096
11405
|
* @throws {RequiredError}
|
|
11097
11406
|
*/
|
|
11098
11407
|
crawlersDelete(organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11408
|
+
/**
|
|
11409
|
+
*
|
|
11410
|
+
* @summary Get a run by ID
|
|
11411
|
+
* @param {string} organization Organization identifier
|
|
11412
|
+
* @param {string} project Project identifier
|
|
11413
|
+
* @param {string} crawler Crawler identifier
|
|
11414
|
+
* @param {number} runId Run identifier
|
|
11415
|
+
* @param {*} [options] Override http request option.
|
|
11416
|
+
* @throws {RequiredError}
|
|
11417
|
+
*/
|
|
11418
|
+
crawlersGetRunById(organization: string, project: string, crawler: string, runId: number, options?: RawAxiosRequestConfig): AxiosPromise<V2CrawlerRun>;
|
|
11419
|
+
/**
|
|
11420
|
+
*
|
|
11421
|
+
* @summary Get all runs for a crawler
|
|
11422
|
+
* @param {string} organization Organization identifier
|
|
11423
|
+
* @param {string} project Project identifier
|
|
11424
|
+
* @param {string} crawler Crawler identifier
|
|
11425
|
+
* @param {*} [options] Override http request option.
|
|
11426
|
+
* @throws {RequiredError}
|
|
11427
|
+
*/
|
|
11428
|
+
crawlersGetRuns(organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<V2CrawlerRun>>;
|
|
11099
11429
|
/**
|
|
11100
11430
|
*
|
|
11101
11431
|
* @summary List crawlers for the project
|
|
@@ -11167,6 +11497,29 @@ export declare class CrawlersApi extends BaseAPI {
|
|
|
11167
11497
|
* @memberof CrawlersApi
|
|
11168
11498
|
*/
|
|
11169
11499
|
crawlersDelete(organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11500
|
+
/**
|
|
11501
|
+
*
|
|
11502
|
+
* @summary Get a run by ID
|
|
11503
|
+
* @param {string} organization Organization identifier
|
|
11504
|
+
* @param {string} project Project identifier
|
|
11505
|
+
* @param {string} crawler Crawler identifier
|
|
11506
|
+
* @param {number} runId Run identifier
|
|
11507
|
+
* @param {*} [options] Override http request option.
|
|
11508
|
+
* @throws {RequiredError}
|
|
11509
|
+
* @memberof CrawlersApi
|
|
11510
|
+
*/
|
|
11511
|
+
crawlersGetRunById(organization: string, project: string, crawler: string, runId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<V2CrawlerRun, any, {}>>;
|
|
11512
|
+
/**
|
|
11513
|
+
*
|
|
11514
|
+
* @summary Get all runs for a crawler
|
|
11515
|
+
* @param {string} organization Organization identifier
|
|
11516
|
+
* @param {string} project Project identifier
|
|
11517
|
+
* @param {string} crawler Crawler identifier
|
|
11518
|
+
* @param {*} [options] Override http request option.
|
|
11519
|
+
* @throws {RequiredError}
|
|
11520
|
+
* @memberof CrawlersApi
|
|
11521
|
+
*/
|
|
11522
|
+
crawlersGetRuns(organization: string, project: string, crawler: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<V2CrawlerRun[], any, {}>>;
|
|
11170
11523
|
/**
|
|
11171
11524
|
*
|
|
11172
11525
|
* @summary List crawlers for the project
|