@scaleway/sdk-edge-services 1.0.1
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/LICENSE +191 -0
- package/dist/index.gen.cjs +4 -0
- package/dist/index.gen.d.ts +5 -0
- package/dist/index.gen.js +4 -0
- package/dist/v1beta1/api.gen.cjs +872 -0
- package/dist/v1beta1/api.gen.d.ts +369 -0
- package/dist/v1beta1/api.gen.js +872 -0
- package/dist/v1beta1/content.gen.cjs +8 -0
- package/dist/v1beta1/content.gen.d.ts +5 -0
- package/dist/v1beta1/content.gen.js +8 -0
- package/dist/v1beta1/index.gen.cjs +62 -0
- package/dist/v1beta1/index.gen.d.ts +5 -0
- package/dist/v1beta1/index.gen.js +62 -0
- package/dist/v1beta1/marshalling.gen.cjs +807 -0
- package/dist/v1beta1/marshalling.gen.d.ts +54 -0
- package/dist/v1beta1/marshalling.gen.js +807 -0
- package/dist/v1beta1/types.gen.d.ts +1429 -0
- package/dist/v1beta1/validation-rules.gen.cjs +23 -0
- package/dist/v1beta1/validation-rules.gen.d.ts +18 -0
- package/dist/v1beta1/validation-rules.gen.js +23 -0
- package/package.json +51 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const PIPELINE_TRANSIENT_STATUSES = ["pending"];
|
|
4
|
+
const PURGE_REQUEST_TRANSIENT_STATUSES = [
|
|
5
|
+
"pending"
|
|
6
|
+
];
|
|
7
|
+
exports.PIPELINE_TRANSIENT_STATUSES = PIPELINE_TRANSIENT_STATUSES;
|
|
8
|
+
exports.PURGE_REQUEST_TRANSIENT_STATUSES = PURGE_REQUEST_TRANSIENT_STATUSES;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { PipelineStatus, PurgeRequestStatus } from './types.gen';
|
|
2
|
+
/** Lists transient statutes of the enum {@link PipelineStatus}. */
|
|
3
|
+
export declare const PIPELINE_TRANSIENT_STATUSES: PipelineStatus[];
|
|
4
|
+
/** Lists transient statutes of the enum {@link PurgeRequestStatus}. */
|
|
5
|
+
export declare const PURGE_REQUEST_TRANSIENT_STATUSES: PurgeRequestStatus[];
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const api_gen = require("./api.gen.cjs");
|
|
4
|
+
const content_gen = require("./content.gen.cjs");
|
|
5
|
+
const marshalling_gen = require("./marshalling.gen.cjs");
|
|
6
|
+
const validationRules_gen = require("./validation-rules.gen.cjs");
|
|
7
|
+
exports.API = api_gen.API;
|
|
8
|
+
exports.PIPELINE_TRANSIENT_STATUSES = content_gen.PIPELINE_TRANSIENT_STATUSES;
|
|
9
|
+
exports.PURGE_REQUEST_TRANSIENT_STATUSES = content_gen.PURGE_REQUEST_TRANSIENT_STATUSES;
|
|
10
|
+
exports.marshalAddRouteRulesRequest = marshalling_gen.marshalAddRouteRulesRequest;
|
|
11
|
+
exports.marshalCheckDomainRequest = marshalling_gen.marshalCheckDomainRequest;
|
|
12
|
+
exports.marshalCheckLbOriginRequest = marshalling_gen.marshalCheckLbOriginRequest;
|
|
13
|
+
exports.marshalCheckPEMChainRequest = marshalling_gen.marshalCheckPEMChainRequest;
|
|
14
|
+
exports.marshalCreateBackendStageRequest = marshalling_gen.marshalCreateBackendStageRequest;
|
|
15
|
+
exports.marshalCreateCacheStageRequest = marshalling_gen.marshalCreateCacheStageRequest;
|
|
16
|
+
exports.marshalCreateDNSStageRequest = marshalling_gen.marshalCreateDNSStageRequest;
|
|
17
|
+
exports.marshalCreatePipelineRequest = marshalling_gen.marshalCreatePipelineRequest;
|
|
18
|
+
exports.marshalCreatePurgeRequestRequest = marshalling_gen.marshalCreatePurgeRequestRequest;
|
|
19
|
+
exports.marshalCreateRouteStageRequest = marshalling_gen.marshalCreateRouteStageRequest;
|
|
20
|
+
exports.marshalCreateTLSStageRequest = marshalling_gen.marshalCreateTLSStageRequest;
|
|
21
|
+
exports.marshalCreateWafStageRequest = marshalling_gen.marshalCreateWafStageRequest;
|
|
22
|
+
exports.marshalSelectPlanRequest = marshalling_gen.marshalSelectPlanRequest;
|
|
23
|
+
exports.marshalSetHeadStageRequest = marshalling_gen.marshalSetHeadStageRequest;
|
|
24
|
+
exports.marshalSetRouteRulesRequest = marshalling_gen.marshalSetRouteRulesRequest;
|
|
25
|
+
exports.marshalSetRouteRulesRequestRouteRule = marshalling_gen.marshalSetRouteRulesRequestRouteRule;
|
|
26
|
+
exports.marshalUpdateBackendStageRequest = marshalling_gen.marshalUpdateBackendStageRequest;
|
|
27
|
+
exports.marshalUpdateCacheStageRequest = marshalling_gen.marshalUpdateCacheStageRequest;
|
|
28
|
+
exports.marshalUpdateDNSStageRequest = marshalling_gen.marshalUpdateDNSStageRequest;
|
|
29
|
+
exports.marshalUpdatePipelineRequest = marshalling_gen.marshalUpdatePipelineRequest;
|
|
30
|
+
exports.marshalUpdateRouteStageRequest = marshalling_gen.marshalUpdateRouteStageRequest;
|
|
31
|
+
exports.marshalUpdateTLSStageRequest = marshalling_gen.marshalUpdateTLSStageRequest;
|
|
32
|
+
exports.marshalUpdateWafStageRequest = marshalling_gen.marshalUpdateWafStageRequest;
|
|
33
|
+
exports.unmarshalAddRouteRulesResponse = marshalling_gen.unmarshalAddRouteRulesResponse;
|
|
34
|
+
exports.unmarshalBackendStage = marshalling_gen.unmarshalBackendStage;
|
|
35
|
+
exports.unmarshalCacheStage = marshalling_gen.unmarshalCacheStage;
|
|
36
|
+
exports.unmarshalCheckDomainResponse = marshalling_gen.unmarshalCheckDomainResponse;
|
|
37
|
+
exports.unmarshalCheckLbOriginResponse = marshalling_gen.unmarshalCheckLbOriginResponse;
|
|
38
|
+
exports.unmarshalCheckPEMChainResponse = marshalling_gen.unmarshalCheckPEMChainResponse;
|
|
39
|
+
exports.unmarshalDNSStage = marshalling_gen.unmarshalDNSStage;
|
|
40
|
+
exports.unmarshalGetBillingResponse = marshalling_gen.unmarshalGetBillingResponse;
|
|
41
|
+
exports.unmarshalHeadStageResponse = marshalling_gen.unmarshalHeadStageResponse;
|
|
42
|
+
exports.unmarshalListBackendStagesResponse = marshalling_gen.unmarshalListBackendStagesResponse;
|
|
43
|
+
exports.unmarshalListCacheStagesResponse = marshalling_gen.unmarshalListCacheStagesResponse;
|
|
44
|
+
exports.unmarshalListDNSStagesResponse = marshalling_gen.unmarshalListDNSStagesResponse;
|
|
45
|
+
exports.unmarshalListHeadStagesResponse = marshalling_gen.unmarshalListHeadStagesResponse;
|
|
46
|
+
exports.unmarshalListPipelinesResponse = marshalling_gen.unmarshalListPipelinesResponse;
|
|
47
|
+
exports.unmarshalListPipelinesWithStagesResponse = marshalling_gen.unmarshalListPipelinesWithStagesResponse;
|
|
48
|
+
exports.unmarshalListPlansResponse = marshalling_gen.unmarshalListPlansResponse;
|
|
49
|
+
exports.unmarshalListPurgeRequestsResponse = marshalling_gen.unmarshalListPurgeRequestsResponse;
|
|
50
|
+
exports.unmarshalListRouteRulesResponse = marshalling_gen.unmarshalListRouteRulesResponse;
|
|
51
|
+
exports.unmarshalListRouteStagesResponse = marshalling_gen.unmarshalListRouteStagesResponse;
|
|
52
|
+
exports.unmarshalListTLSStagesResponse = marshalling_gen.unmarshalListTLSStagesResponse;
|
|
53
|
+
exports.unmarshalListWafStagesResponse = marshalling_gen.unmarshalListWafStagesResponse;
|
|
54
|
+
exports.unmarshalPipeline = marshalling_gen.unmarshalPipeline;
|
|
55
|
+
exports.unmarshalPipelineStages = marshalling_gen.unmarshalPipelineStages;
|
|
56
|
+
exports.unmarshalPlan = marshalling_gen.unmarshalPlan;
|
|
57
|
+
exports.unmarshalPurgeRequest = marshalling_gen.unmarshalPurgeRequest;
|
|
58
|
+
exports.unmarshalRouteStage = marshalling_gen.unmarshalRouteStage;
|
|
59
|
+
exports.unmarshalSetRouteRulesResponse = marshalling_gen.unmarshalSetRouteRulesResponse;
|
|
60
|
+
exports.unmarshalTLSStage = marshalling_gen.unmarshalTLSStage;
|
|
61
|
+
exports.unmarshalWafStage = marshalling_gen.unmarshalWafStage;
|
|
62
|
+
exports.ValidationRules = validationRules_gen;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { API } from './api.gen';
|
|
2
|
+
export * from './content.gen';
|
|
3
|
+
export * from './marshalling.gen';
|
|
4
|
+
export type { AddRouteRulesRequest, AddRouteRulesResponse, BackendStage, CacheStage, CheckDomainRequest, CheckDomainResponse, CheckLbOriginRequest, CheckLbOriginResponse, CheckPEMChainRequest, CheckPEMChainRequestSecretChain, CheckPEMChainResponse, CreateBackendStageRequest, CreateCacheStageRequest, CreateDNSStageRequest, CreatePipelineRequest, CreatePurgeRequestRequest, CreateRouteStageRequest, CreateTLSStageRequest, CreateWafStageRequest, DNSStage, DNSStageType, DeleteBackendStageRequest, DeleteCacheStageRequest, DeleteCurrentPlanRequest, DeleteDNSStageRequest, DeletePipelineRequest, DeleteRouteStageRequest, DeleteTLSStageRequest, DeleteWafStageRequest, GetBackendStageRequest, GetBillingRequest, GetBillingResponse, GetCacheStageRequest, GetCurrentPlanRequest, GetDNSStageRequest, GetPipelineRequest, GetPurgeRequestRequest, GetRouteStageRequest, GetTLSStageRequest, GetWafStageRequest, HeadStageResponse, HeadStageResponseHeadStage, LbOriginError, ListBackendStagesRequest, ListBackendStagesRequestOrderBy, ListBackendStagesResponse, ListCacheStagesRequest, ListCacheStagesRequestOrderBy, ListCacheStagesResponse, ListDNSStagesRequest, ListDNSStagesRequestOrderBy, ListDNSStagesResponse, ListHeadStagesRequest, ListHeadStagesResponse, ListHeadStagesResponseHeadStage, ListPipelinesRequest, ListPipelinesRequestOrderBy, ListPipelinesResponse, ListPipelinesWithStagesRequest, ListPipelinesWithStagesRequestOrderBy, ListPipelinesWithStagesResponse, ListPlansResponse, ListPurgeRequestsRequest, ListPurgeRequestsRequestOrderBy, ListPurgeRequestsResponse, ListRouteRulesRequest, ListRouteRulesResponse, ListRouteStagesRequest, ListRouteStagesRequestOrderBy, ListRouteStagesResponse, ListTLSStagesRequest, ListTLSStagesRequestOrderBy, ListTLSStagesResponse, ListWafStagesRequest, ListWafStagesRequestOrderBy, ListWafStagesResponse, Pipeline, PipelineError, PipelineErrorCode, PipelineErrorSeverity, PipelineErrorStage, PipelineErrorType, PipelineStages, PipelineStatus, Plan, PlanDetails, PlanName, PlanUsageDetails, PurgeRequest, PurgeRequestStatus, RouteRule, RouteStage, RuleHttpMatch, RuleHttpMatchMethodFilter, RuleHttpMatchPathFilter, RuleHttpMatchPathFilterPathFilterType, ScalewayLb, ScalewayLbBackendConfig, ScalewayS3BackendConfig, SearchBackendStagesRequest, SearchBackendStagesRequestOrderBy, SearchWafStagesRequest, SearchWafStagesRequestOrderBy, SelectPlanRequest, SetHeadStageRequest, SetHeadStageRequestAddNewHeadStage, SetHeadStageRequestRemoveHeadStage, SetHeadStageRequestSwapHeadStage, SetRouteRulesRequest, SetRouteRulesRequestRouteRule, SetRouteRulesResponse, TLSSecret, TLSSecretsConfig, TLSStage, UpdateBackendStageRequest, UpdateCacheStageRequest, UpdateDNSStageRequest, UpdatePipelineRequest, UpdateRouteStageRequest, UpdateTLSStageRequest, UpdateWafStageRequest, WafStage, WafStageMode, } from './types.gen';
|
|
5
|
+
export * as ValidationRules from './validation-rules.gen';
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { API } from "./api.gen.js";
|
|
2
|
+
import { PIPELINE_TRANSIENT_STATUSES, PURGE_REQUEST_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
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 * as validationRules_gen from "./validation-rules.gen.js";
|
|
5
|
+
export {
|
|
6
|
+
API,
|
|
7
|
+
PIPELINE_TRANSIENT_STATUSES,
|
|
8
|
+
PURGE_REQUEST_TRANSIENT_STATUSES,
|
|
9
|
+
validationRules_gen as ValidationRules,
|
|
10
|
+
marshalAddRouteRulesRequest,
|
|
11
|
+
marshalCheckDomainRequest,
|
|
12
|
+
marshalCheckLbOriginRequest,
|
|
13
|
+
marshalCheckPEMChainRequest,
|
|
14
|
+
marshalCreateBackendStageRequest,
|
|
15
|
+
marshalCreateCacheStageRequest,
|
|
16
|
+
marshalCreateDNSStageRequest,
|
|
17
|
+
marshalCreatePipelineRequest,
|
|
18
|
+
marshalCreatePurgeRequestRequest,
|
|
19
|
+
marshalCreateRouteStageRequest,
|
|
20
|
+
marshalCreateTLSStageRequest,
|
|
21
|
+
marshalCreateWafStageRequest,
|
|
22
|
+
marshalSelectPlanRequest,
|
|
23
|
+
marshalSetHeadStageRequest,
|
|
24
|
+
marshalSetRouteRulesRequest,
|
|
25
|
+
marshalSetRouteRulesRequestRouteRule,
|
|
26
|
+
marshalUpdateBackendStageRequest,
|
|
27
|
+
marshalUpdateCacheStageRequest,
|
|
28
|
+
marshalUpdateDNSStageRequest,
|
|
29
|
+
marshalUpdatePipelineRequest,
|
|
30
|
+
marshalUpdateRouteStageRequest,
|
|
31
|
+
marshalUpdateTLSStageRequest,
|
|
32
|
+
marshalUpdateWafStageRequest,
|
|
33
|
+
unmarshalAddRouteRulesResponse,
|
|
34
|
+
unmarshalBackendStage,
|
|
35
|
+
unmarshalCacheStage,
|
|
36
|
+
unmarshalCheckDomainResponse,
|
|
37
|
+
unmarshalCheckLbOriginResponse,
|
|
38
|
+
unmarshalCheckPEMChainResponse,
|
|
39
|
+
unmarshalDNSStage,
|
|
40
|
+
unmarshalGetBillingResponse,
|
|
41
|
+
unmarshalHeadStageResponse,
|
|
42
|
+
unmarshalListBackendStagesResponse,
|
|
43
|
+
unmarshalListCacheStagesResponse,
|
|
44
|
+
unmarshalListDNSStagesResponse,
|
|
45
|
+
unmarshalListHeadStagesResponse,
|
|
46
|
+
unmarshalListPipelinesResponse,
|
|
47
|
+
unmarshalListPipelinesWithStagesResponse,
|
|
48
|
+
unmarshalListPlansResponse,
|
|
49
|
+
unmarshalListPurgeRequestsResponse,
|
|
50
|
+
unmarshalListRouteRulesResponse,
|
|
51
|
+
unmarshalListRouteStagesResponse,
|
|
52
|
+
unmarshalListTLSStagesResponse,
|
|
53
|
+
unmarshalListWafStagesResponse,
|
|
54
|
+
unmarshalPipeline,
|
|
55
|
+
unmarshalPipelineStages,
|
|
56
|
+
unmarshalPlan,
|
|
57
|
+
unmarshalPurgeRequest,
|
|
58
|
+
unmarshalRouteStage,
|
|
59
|
+
unmarshalSetRouteRulesResponse,
|
|
60
|
+
unmarshalTLSStage,
|
|
61
|
+
unmarshalWafStage
|
|
62
|
+
};
|