@scaleway/sdk-edge-services 2.4.1 → 2.6.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/README.md +1 -1
- package/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/index.gen.js +2 -4
- package/dist/v1beta1/api.gen.js +574 -860
- package/dist/v1beta1/content.gen.js +5 -10
- package/dist/v1beta1/index.gen.js +62 -60
- package/dist/v1beta1/marshalling.gen.js +563 -845
- package/dist/v1beta1/types.gen.d.ts +13 -3
- package/dist/v1beta1/validation-rules.gen.js +19 -23
- package/package.json +4 -4
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const PURGE_REQUEST_TRANSIENT_STATUSES = [
|
|
5
|
-
|
|
6
|
-
];
|
|
7
|
-
export {
|
|
8
|
-
PIPELINE_TRANSIENT_STATUSES,
|
|
9
|
-
PURGE_REQUEST_TRANSIENT_STATUSES
|
|
10
|
-
};
|
|
1
|
+
/** Lists transient statutes of the enum {@link PipelineStatus}. */
|
|
2
|
+
const PIPELINE_TRANSIENT_STATUSES = ["pending"];
|
|
3
|
+
/** Lists transient statutes of the enum {@link PurgeRequestStatus}. */
|
|
4
|
+
const PURGE_REQUEST_TRANSIENT_STATUSES = ["pending"];
|
|
5
|
+
export { PIPELINE_TRANSIENT_STATUSES, PURGE_REQUEST_TRANSIENT_STATUSES };
|
|
@@ -1,62 +1,64 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { __exportAll } from "../_virtual/_rolldown/runtime.js";
|
|
2
2
|
import { PIPELINE_TRANSIENT_STATUSES, PURGE_REQUEST_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
3
|
import { marshalAddRouteRulesRequest, marshalCheckDomainRequest, marshalCheckLbOriginRequest, marshalCheckPEMChainRequest, marshalCreateBackendStageRequest, marshalCreateCacheStageRequest, marshalCreateDNSStageRequest, marshalCreatePipelineRequest, marshalCreatePurgeRequestRequest, marshalCreateRouteStageRequest, marshalCreateTLSStageRequest, marshalCreateWafStageRequest, marshalSelectPlanRequest, marshalSetHeadStageRequest, marshalSetRouteRulesRequest, marshalSetRouteRulesRequestRouteRule, marshalUpdateBackendStageRequest, marshalUpdateCacheStageRequest, marshalUpdateDNSStageRequest, marshalUpdatePipelineRequest, marshalUpdateRouteStageRequest, marshalUpdateTLSStageRequest, marshalUpdateWafStageRequest, unmarshalAddRouteRulesResponse, unmarshalBackendStage, unmarshalCacheStage, unmarshalCheckDomainResponse, unmarshalCheckLbOriginResponse, unmarshalCheckPEMChainResponse, unmarshalDNSStage, unmarshalGetBillingResponse, unmarshalHeadStageResponse, unmarshalListBackendStagesResponse, unmarshalListCacheStagesResponse, unmarshalListDNSStagesResponse, unmarshalListHeadStagesResponse, unmarshalListPipelinesResponse, unmarshalListPipelinesWithStagesResponse, unmarshalListPlansResponse, unmarshalListPurgeRequestsResponse, unmarshalListRouteRulesResponse, unmarshalListRouteStagesResponse, unmarshalListTLSStagesResponse, unmarshalListWafStagesResponse, unmarshalPipeline, unmarshalPipelineStages, unmarshalPlan, unmarshalPurgeRequest, unmarshalRouteStage, unmarshalSetRouteRulesResponse, unmarshalTLSStage, unmarshalWafStage } from "./marshalling.gen.js";
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
4
|
+
import { API } from "./api.gen.js";
|
|
5
|
+
import { validation_rules_gen_exports } from "./validation-rules.gen.js";
|
|
6
|
+
var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
7
|
+
API: () => API,
|
|
8
|
+
PIPELINE_TRANSIENT_STATUSES: () => PIPELINE_TRANSIENT_STATUSES,
|
|
9
|
+
PURGE_REQUEST_TRANSIENT_STATUSES: () => PURGE_REQUEST_TRANSIENT_STATUSES,
|
|
10
|
+
ValidationRules: () => validation_rules_gen_exports,
|
|
11
|
+
marshalAddRouteRulesRequest: () => marshalAddRouteRulesRequest,
|
|
12
|
+
marshalCheckDomainRequest: () => marshalCheckDomainRequest,
|
|
13
|
+
marshalCheckLbOriginRequest: () => marshalCheckLbOriginRequest,
|
|
14
|
+
marshalCheckPEMChainRequest: () => marshalCheckPEMChainRequest,
|
|
15
|
+
marshalCreateBackendStageRequest: () => marshalCreateBackendStageRequest,
|
|
16
|
+
marshalCreateCacheStageRequest: () => marshalCreateCacheStageRequest,
|
|
17
|
+
marshalCreateDNSStageRequest: () => marshalCreateDNSStageRequest,
|
|
18
|
+
marshalCreatePipelineRequest: () => marshalCreatePipelineRequest,
|
|
19
|
+
marshalCreatePurgeRequestRequest: () => marshalCreatePurgeRequestRequest,
|
|
20
|
+
marshalCreateRouteStageRequest: () => marshalCreateRouteStageRequest,
|
|
21
|
+
marshalCreateTLSStageRequest: () => marshalCreateTLSStageRequest,
|
|
22
|
+
marshalCreateWafStageRequest: () => marshalCreateWafStageRequest,
|
|
23
|
+
marshalSelectPlanRequest: () => marshalSelectPlanRequest,
|
|
24
|
+
marshalSetHeadStageRequest: () => marshalSetHeadStageRequest,
|
|
25
|
+
marshalSetRouteRulesRequest: () => marshalSetRouteRulesRequest,
|
|
26
|
+
marshalSetRouteRulesRequestRouteRule: () => marshalSetRouteRulesRequestRouteRule,
|
|
27
|
+
marshalUpdateBackendStageRequest: () => marshalUpdateBackendStageRequest,
|
|
28
|
+
marshalUpdateCacheStageRequest: () => marshalUpdateCacheStageRequest,
|
|
29
|
+
marshalUpdateDNSStageRequest: () => marshalUpdateDNSStageRequest,
|
|
30
|
+
marshalUpdatePipelineRequest: () => marshalUpdatePipelineRequest,
|
|
31
|
+
marshalUpdateRouteStageRequest: () => marshalUpdateRouteStageRequest,
|
|
32
|
+
marshalUpdateTLSStageRequest: () => marshalUpdateTLSStageRequest,
|
|
33
|
+
marshalUpdateWafStageRequest: () => marshalUpdateWafStageRequest,
|
|
34
|
+
unmarshalAddRouteRulesResponse: () => unmarshalAddRouteRulesResponse,
|
|
35
|
+
unmarshalBackendStage: () => unmarshalBackendStage,
|
|
36
|
+
unmarshalCacheStage: () => unmarshalCacheStage,
|
|
37
|
+
unmarshalCheckDomainResponse: () => unmarshalCheckDomainResponse,
|
|
38
|
+
unmarshalCheckLbOriginResponse: () => unmarshalCheckLbOriginResponse,
|
|
39
|
+
unmarshalCheckPEMChainResponse: () => unmarshalCheckPEMChainResponse,
|
|
40
|
+
unmarshalDNSStage: () => unmarshalDNSStage,
|
|
41
|
+
unmarshalGetBillingResponse: () => unmarshalGetBillingResponse,
|
|
42
|
+
unmarshalHeadStageResponse: () => unmarshalHeadStageResponse,
|
|
43
|
+
unmarshalListBackendStagesResponse: () => unmarshalListBackendStagesResponse,
|
|
44
|
+
unmarshalListCacheStagesResponse: () => unmarshalListCacheStagesResponse,
|
|
45
|
+
unmarshalListDNSStagesResponse: () => unmarshalListDNSStagesResponse,
|
|
46
|
+
unmarshalListHeadStagesResponse: () => unmarshalListHeadStagesResponse,
|
|
47
|
+
unmarshalListPipelinesResponse: () => unmarshalListPipelinesResponse,
|
|
48
|
+
unmarshalListPipelinesWithStagesResponse: () => unmarshalListPipelinesWithStagesResponse,
|
|
49
|
+
unmarshalListPlansResponse: () => unmarshalListPlansResponse,
|
|
50
|
+
unmarshalListPurgeRequestsResponse: () => unmarshalListPurgeRequestsResponse,
|
|
51
|
+
unmarshalListRouteRulesResponse: () => unmarshalListRouteRulesResponse,
|
|
52
|
+
unmarshalListRouteStagesResponse: () => unmarshalListRouteStagesResponse,
|
|
53
|
+
unmarshalListTLSStagesResponse: () => unmarshalListTLSStagesResponse,
|
|
54
|
+
unmarshalListWafStagesResponse: () => unmarshalListWafStagesResponse,
|
|
55
|
+
unmarshalPipeline: () => unmarshalPipeline,
|
|
56
|
+
unmarshalPipelineStages: () => unmarshalPipelineStages,
|
|
57
|
+
unmarshalPlan: () => unmarshalPlan,
|
|
58
|
+
unmarshalPurgeRequest: () => unmarshalPurgeRequest,
|
|
59
|
+
unmarshalRouteStage: () => unmarshalRouteStage,
|
|
60
|
+
unmarshalSetRouteRulesResponse: () => unmarshalSetRouteRulesResponse,
|
|
61
|
+
unmarshalTLSStage: () => unmarshalTLSStage,
|
|
62
|
+
unmarshalWafStage: () => unmarshalWafStage
|
|
63
|
+
});
|
|
64
|
+
export { index_gen_exports };
|